diff --git a/js/ajax.js b/js/ajax.js index a3948fc0cd..6712c499a9 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -116,6 +116,15 @@ var AJAX = { "Fired event " + eventName + " for file " + file ); }, + /** + * Use this method when you want to submit a form programmatically + * and want the AJAX page loading system to handle the results. + * + * @param objecct form form to be submitted + */ + submitFormProgrammatically: function(form) { + this.requestHandler.call(form); + }, /** * Event handler for clicks on links and form submissions * @@ -138,8 +147,10 @@ var AJAX = { return true; } - event.preventDefault(); - event.stopImmediatePropagation(); + if (typeof event != 'undefined') { + event.preventDefault(); + event.stopImmediatePropagation(); + } if (AJAX.active == true) { // Silently bail out, there is already a request in progress. // TODO: save a reference to the request and cancel the old request diff --git a/js/jqplot/plugins/jqplot.byteFormatter.js b/js/jqplot/plugins/jqplot.byteFormatter.js new file mode 100644 index 0000000000..7a18370a75 --- /dev/null +++ b/js/jqplot/plugins/jqplot.byteFormatter.js @@ -0,0 +1,46 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * jqplot formatter for byte values + * + * @package phpMyAdmin + */ +(function($) { + "use strict"; + var formatByte = function (val, index) { + var units = [ + PMA_messages.strB, + PMA_messages.strKiB, + PMA_messages.strMiB, + PMA_messages.strGiB, + PMA_messages.strTiB, + PMA_messages.strPiB, + PMA_messages.strEiB + ]; + while (val >= 1024 && index <= 6) { + val /= 1024; + index++; + } + var format = '%.1f'; + if (Math.floor(val) === val) { + format = '%.0f'; + } + return $.jqplot.sprintf( + format + ' ' + units[index], val + ); + }; + /** + * The index indicates what unit the incoming data will be in. + * 0 for bytes, 1 for kilobytes and so on... + */ + $.jqplot.byteFormatter = function (index) { + index = index || 0; + return function (format, val) { + if (typeof val === 'number') { + val = parseFloat(val) || 0; + return formatByte(val, index); + } else { + return String(val); + } + }; + }; +})(jQuery); diff --git a/js/messages.php b/js/messages.php index 8c4f2fbb70..3124edf715 100644 --- a/js/messages.php +++ b/js/messages.php @@ -73,18 +73,7 @@ $js_messages['strThousandsSeparator'] = __(','); /* l10n: Decimal separator */ $js_messages['strDecimalSeparator'] = __('.'); -$js_messages['strChartKBSent'] = __('KiB sent since last refresh'); -$js_messages['strChartKBReceived'] = __('KiB received since last refresh'); -$js_messages['strChartServerTraffic'] = __('Server traffic (in KiB)'); -$js_messages['strChartConnections'] = __('Connections since last refresh'); -$js_messages['strChartProcesses'] = __('Processes'); $js_messages['strChartConnectionsTitle'] = __('Connections / Processes'); -/* l10n: Questions is the name of a MySQL Status variable */ -$js_messages['strChartIssuedQueries'] = __('Questions since last refresh'); -/* l10n: Questions is the name of a MySQL Status variable */ -$js_messages['strChartIssuedQueriesTitle'] = __('Questions (executed statements by the server)'); - -$js_messages['strChartQueryPie'] = __('Query statistics'); /* server status monitor */ $js_messages['strIncompatibleMonitorConfig'] = __('Local monitor configuration incompatible'); @@ -97,8 +86,6 @@ $js_messages['strQueryCacheUsed'] = __('Query cache used'); $js_messages['strSystemCPUUsage'] = __('System CPU Usage'); $js_messages['strSystemMemory'] = __('System memory'); $js_messages['strSystemSwap'] = __('System swap'); -$js_messages['strMiB'] = __('MiB'); -$js_messages['strKiB'] = __('KiB'); $js_messages['strAverageLoad'] = __('Average load'); $js_messages['strTotalMemory'] = __('Total memory'); @@ -344,6 +331,7 @@ $js_messages['strLeavingDesigner'] = __('You haven\'t saved the changes in the l /* Visual query builder (js/pmd/move.js) */ $js_messages['strAddOption'] = __('Add an option for column '); +$js_messages['strObjectsCreated'] = __('%d object(s) created'); /* For makegrid.js (column reordering, show/hide column, grid editing) */ $js_messages['strCellEditHint'] = __('Press escape to cancel editing'); diff --git a/js/pmd/move.js b/js/pmd/move.js index b76c76ee31..9df52eb266 100644 --- a/js/pmd/move.js +++ b/js/pmd/move.js @@ -19,6 +19,7 @@ AJAX.registerTeardown('pmd/move.js', function() { }); AJAX.registerOnload('pmd/move.js', function() { + $('#page_content').css({'margin-left': '3px'}); $('#exitFullscreen').hide(); if ($.FullScreen.supported) { $(document).fullScreenChange(function() { @@ -514,7 +515,9 @@ function Save(url) // (del?) no for pdf document.getElementById('t_h_' + key + '_').value = document.getElementById('check_vis_' + key).checked ? 1 : 0; } document.form1.action = url; - document.form1.submit(); + // Submitting the form with form.submit() will not trigger the AJAX page loading mechanism. + // Hence we are using AJAX.submitFormProgrammatically() here. + AJAX.submitFormProgrammatically(document.form1); } function Get_url_pos() @@ -603,7 +606,7 @@ function Click_field(T, f, PK) // table field } var left = Glob_X - (document.getElementById('layer_new_relation').offsetWidth>>1); document.getElementById('layer_new_relation').style.left = left + 'px'; - var top = Glob_Y - document.getElementById('layer_new_relation').offsetHeight + 40; + var top = Glob_Y - document.getElementById('layer_new_relation').offsetHeight; document.getElementById('layer_new_relation').style.top = top + 'px'; document.getElementById('layer_new_relation').style.display = 'block'; link_relation += '&T2=' + T + '&F2=' + f; @@ -1247,8 +1250,7 @@ function add_object() document.getElementById('orderby').checked = false; //make orderby } - document.getElementById('pmd_hint').innerHTML = sum + "object created" ; - document.getElementById('pmd_hint').style.display = 'block'; + PMA_ajaxShowMessage($.sprintf(PMA_messages['strObjectsCreated'], sum)); //output sum new objects created var existingDiv = document.getElementById('ab'); existingDiv.innerHTML = display(init,history_array.length); diff --git a/js/server_status.js b/js/server_status.js index b803c2c553..e9fb3263c7 100644 --- a/js/server_status.js +++ b/js/server_status.js @@ -2,15 +2,6 @@ /** * @fileoverview functions used in server status pages * @name Server Status - * - * @requires jQuery - * @requires jQueryUI - * @requires jQueryCookie - * @requires jQueryTablesorter - * @requires jqPlot - * @requires canvg - * @requires js/functions.js - * */ var pma_token, @@ -20,26 +11,6 @@ var pma_token, is_superuser, server_db_isLocal; -/** - * Unbind all event handlers before tearing down a page - */ -AJAX.registerTeardown('server_status.js', function() { - $('a.popupLink').unbind('click'); - $(document).unbind('click'); // Am I sure about this? I guess not... - $('div.buttonlinks select').unbind('click'); - $('div.buttonlinks a.tabRefresh').unbind('click'); - $('div.buttonlinks a.livetrafficLink').unbind('click'); - $('div.buttonlinks a.liveconnectionsLink').unbind('click'); - $('div.buttonlinks a.livequeriesLink').unbind('click'); - - $('#filterAlert').unbind('change'); - $('#filterText').unbind('keyup'); - $('#filterCategory').unbind('change'); - $('input#dontFormat').unbind('change'); - $('a[href="#openAdvisorInstructions"]').unbind('click'); - $('a[href="#startAnalyzer"]').unbind('click'); -}); - // Add a tablesorter parser to properly handle thousands seperated numbers and SI prefixes AJAX.registerOnload('server_status.js', function() { @@ -51,787 +22,4 @@ AJAX.registerOnload('server_status.js', function() { is_superuser = $js_data_form.find("input[name=is_superuser]").val(); server_db_isLocal = $js_data_form.find("input[name=server_db_isLocal]").val(); - // Show all javascript related parts of the page - $('#serverstatus .jsfeature').show(); - - jQuery.tablesorter.addParser({ - id: "fancyNumber", - is: function(s) { - return /^[0-9]?[0-9,\.]*\s?(k|M|G|T|%)?$/.test(s); - }, - format: function(s) { - var num = jQuery.tablesorter.formatFloat( - s.replace(PMA_messages['strThousandsSeparator'], '') - .replace(PMA_messages['strDecimalSeparator'], '.') - ); - - var factor = 1; - switch (s.charAt(s.length - 1)) { - case '%': factor = -2; break; - // Todo: Complete this list (as well as in the regexp a few lines up) - case 'k': factor = 3; break; - case 'M': factor = 6; break; - case 'G': factor = 9; break; - case 'T': factor = 12; break; - } - - return num * Math.pow(10, factor); - }, - type: "numeric" - }); - - jQuery.tablesorter.addParser({ - id: "withinSpanNumber", - is: function(s) { - return /(.*)?<\/span>/); - return (res && res.length >= 3) ? res[2] : 0; - }, - type: "numeric" - }); - - // faster zebra widget: no row visibility check, faster css class switching, no cssChildRow check - jQuery.tablesorter.addWidget({ - id: "fast-zebra", - format: function (table) { - if (table.config.debug) { - var time = new Date(); - } - $("tr:even", table.tBodies[0]) - .removeClass(table.config.widgetZebra.css[0]) - .addClass(table.config.widgetZebra.css[1]); - $("tr:odd", table.tBodies[0]) - .removeClass(table.config.widgetZebra.css[1]) - .addClass(table.config.widgetZebra.css[0]); - if (table.config.debug) { - $.tablesorter.benchmark("Applying Fast-Zebra widget", time); - } - } - }); - - // Popup behaviour - $('a.popupLink').click( function() { - var $link = $(this); - - $('div.' + $link.attr('href').substr(1)) - .show() - .offset({ top: $link.offset().top + $link.height() + 5, left: $link.offset().left }) - .addClass('openedPopup'); - - return false; - }); - - $(document).click( function(event) { - $('div.openedPopup').each(function() { - var $cnt = $(this); - var pos = $cnt.offset(); - - // Hide if the mouseclick is outside the popupcontent - if (event.pageX < pos.left - || event.pageY < pos.top - || event.pageX > pos.left + $cnt.outerWidth() - || event.pageY > pos.top + $cnt.outerHeight() - ) { - $cnt.hide().removeClass('openedPopup'); - } - }); - }); }); - -AJAX.registerOnload('server_status.js', function() { - // Filters for status variables - var textFilter = null; - var alertFilter = false; - var categoryFilter = ''; - var odd_row = false; - var text = ''; // Holds filter text - var queryPieChart = null; - var monitorLoaded = false; - - /* Chart configuration */ - // Defines what the tabs are currently displaying (realtime or data) - var tabStatus = new Object(); - // Holds the current chart instances for each tab - var tabChart = new Object(); - // Holds current live charts' timeouts - var chart_replot_timers = new Object(); - - /*** Table sort tooltip ***/ - PMA_createqTip($('table.sortable thead th'), PMA_messages['strSortHint']); - - $.ajaxSetup({ - cache: false - }); - - // Add tabs - $('#serverStatusTabs').tabs({ - // Tab persistence - cookie: { name: 'pma_serverStatusTabs', expires: 1 }, - show: function(event, ui) { - // Fixes line break in the menu bar when the page overflows and scrollbar appears - $('#topmenu').menuResizer('resize'); - - // Initialize selected tab - if (!$(ui.tab.hash).data('init-done')) { - initTab($(ui.tab.hash), null); - } - // Replot on tab switching - if (ui.tab.hash == '#statustabs_traffic' && tabChart['statustabs_traffic'] != null) { - recursiveTimer($('#statustabs_traffic'), "traffic"); - } - else if (ui.tab.hash == '#statustabs_queries' && tabChart['statustabs_queries'] != null) { - recursiveTimer($('#statustabs_queries'), "queries"); - } - // Load Server status monitor - if (ui.tab.hash == '#statustabs_charting' && ! monitorLoaded) { - $('div#statustabs_charting').append( //PMA_messages['strLoadingMonitor'] + ' ' + - '' - ); - // Delay loading a bit so the tab loads and the user gets to see a ajax loading icon - setTimeout(function() { - var scripts = [ - {name:'jquery/timepicker.js',fire:0}, - {name:'jquery/jquery.json-2.2.js',fire:0}, - {name:'jquery/jquery.sortableTable.js',fire:0}, - {name:'server_status_monitor.js',fire:1} - ]; - AJAX.scriptHandler.load(scripts); - }, 50); - - monitorLoaded = true; - } - - // Run the advisor immediately when the user clicks the tab, but only when this is the first time - if (ui.tab.hash == '#statustabs_advisor' && $('table#rulesFired').length == 0) { - // Start with a small delay because the click event hasn't been setup yet - setTimeout(function() { - $('a[href="#startAnalyzer"]').trigger('click'); - }, 25); - } - } - }); - - // Fixes wrong tab height with floated elements. See also http://bugs.jqueryui.com/ticket/5601 - $(".ui-widget-content:not(.ui-tabs):not(.ui-helper-clearfix)").addClass("ui-helper-clearfix"); - - // Initialize each tab - $('div.ui-tabs-panel').each(function() { - var $tab = $(this); - tabStatus[$tab.attr('id')] = 'static'; - // Initialize tabs after browser catches up with previous changes and displays tabs - setTimeout(function() { - initTab($tab, null); - }, 0.5); - }); - - // Handles refresh rate changing - $('.buttonlinks .refreshRate').change(function() { - - var $tab = $(this).parents('div.ui-tabs-panel'); - clearTimeout(chart_replot_timers[$tab.attr('id')]); - var tabstat = tabStatus[$tab.attr('id')]; - - if(tabstat == 'livequeries') { - recursiveTimer($tab, 'queries'); - } else if(tabstat == 'livetraffic') { - recursiveTimer($tab, 'traffic'); - } else if(tabstat == 'liveconnections') { - recursiveTimer($tab, 'proc'); - } - - var chart = tabChart[$(this).parents('div.ui-tabs-panel').attr('id')]; - // Clear current timeout and set timeout with the new refresh rate - clearTimeout(chart_activeTimeouts[chart.options.chart.renderTo]); - if (chart.options.realtime.postRequest) { - chart.options.realtime.postRequest.abort(); - } - - chart.options.realtime.refreshRate = 1000*parseInt(this.value); - - chart.xAxis[0].setExtremes( - new Date().getTime() - server_time_diff - chart.options.realtime.numMaxPoints * chart.options.realtime.refreshRate, - new Date().getTime() - server_time_diff, - true - ); - - chart_activeTimeouts[chart.options.chart.renderTo] = setTimeout( - chart.options.realtime.timeoutCallBack, - chart.options.realtime.refreshRate - ); - }); - - // Ajax refresh of variables (always the first element in each tab) - $('div.buttonlinks a.tabRefresh').click(function() { - // ui-tabs-panel class is added by the jquery tabs feature - var tab = $(this).parents('div.ui-tabs-panel'); - var that = this; - - // Show ajax load icon - $(this).find('img').show(); - - $.get($(this).attr('href'), { ajax_request: 1 }, function(data) { - $(that).find('img').hide(); - initTab(tab, data); - }); - - tabStatus[tab.attr('id')] = 'data'; - - return false; - }); - - - /** Realtime charting of variables **/ - - // variables to hold previous y data value to calculate difference - var previous_y_line1 = new Object(); - var previous_y_line2 = new Object(); - var series = new Object(); - - // Live traffic charting - $('div.buttonlinks a.livetrafficLink').click(function() { - // ui-tabs-panel class is added by the jquery tabs feature - var $tab = $(this).parents('div.ui-tabs-panel'); - var tabstat = tabStatus[$tab.attr('id')]; - - if (tabstat == 'static' || tabstat == 'liveconnections') { - - setupLiveChart($tab, this, getSettings('traffic')); - var set_previous = getCurrentDataSet($tab, 'traffic'); - tabChart[$tab.attr('id')] = $.jqplot($tab.attr('id') + '_chart_cnt', [[[0,0]],[[0,0]]], getSettings('traffic')); - recursiveTimer($tab, 'traffic'); - - if (tabstat == 'liveconnections') { - $tab.find('.buttonlinks a.liveconnectionsLink').html(PMA_messages['strLiveConnChart']); - } - tabStatus[$tab.attr('id')] = 'livetraffic'; - } else { - $(this).html(PMA_messages['strLiveTrafficChart']); - setupLiveChart($tab, this, null); - } - - return false; - }); - - // Live connection/process charting - $('div.buttonlinks a.liveconnectionsLink').click(function() { - var $tab = $(this).parents('div.ui-tabs-panel'); - var tabstat = tabStatus[$tab.attr('id')]; - - if (tabstat == 'static' || tabstat == 'livetraffic') { - - setupLiveChart($tab, this, getSettings('proc')); - var set_previous = getCurrentDataSet($tab, 'proc'); - tabChart[$tab.attr('id')] = $.jqplot($tab.attr('id') + '_chart_cnt', [[[0,0]],[[0,0]]], getSettings('proc')); - recursiveTimer($tab, 'proc'); - if (tabstat == 'livetraffic') { - $tab.find('.buttonlinks a.livetrafficLink').html(PMA_messages['strLiveTrafficChart']); - } - tabStatus[$tab.attr('id')] = 'liveconnections'; - } else { - $(this).html(PMA_messages['strLiveConnChart']); - setupLiveChart($tab, this, null); - } - - return false; - }); - - // Live query statistics - $('div.buttonlinks a.livequeriesLink').click(function() { - var $tab = $(this).parents('div.ui-tabs-panel'); - if (tabStatus[$tab.attr('id')] == 'static') { - - setupLiveChart($tab, this, getSettings('queries')); - var set_previous = getCurrentDataSet($tab, 'queries'); - tabChart[$tab.attr('id')] = $.jqplot($tab.attr('id') + '_chart_cnt', [[0,0]], getSettings('queries')); - recursiveTimer($tab, 'queries'); - tabStatus[$tab.attr('id')] = 'livequeries'; - - } else { - $(this).html(PMA_messages['strLiveQueryChart']); - setupLiveChart($tab, this, null); - } - return false; - }); - - function recursiveTimer($tab, type) { - replotLiveChart($tab, type); - chart_replot_timers[$tab.attr('id')] = setTimeout(function() { - recursiveTimer($tab, type) }, ($('.refreshRate :selected', $tab).val() * 1000)); - } - - function getCurrentDataSet($tab, type) { - var ret = null; - var line1 = null; - var line2 = null; - var retval = null; - - $.ajax({ - async: false, - url: 'server_status.php', - type: 'post', - data: { - 'token' : PMA_commonParams.get('token'), - 'server' : PMA_commonParams.get('server'), - 'ajax_request' : true, - 'chart_data' : true, - 'type' : type - }, - dataType: 'json', - success: function(data) { - ret = $.parseJSON(data.message); - } - }); - // get data based on chart type - if(type == 'proc') { - line1 = [ret.x, ret.y_conn - previous_y_line1[$tab.attr('id')]]; - line2 = [ret.x, ret.y_proc]; - previous_y_line1[$tab.attr('id')] = ret.y_conn; - } - else if(type == 'queries') { - line1 = [ret.x, ret.y-previous_y_line1[$tab.attr('id')]]; - previous_y_line1[$tab.attr('id')] = ret.y; - } - else if(type == 'traffic') { - ret.y_sent = ret.y_sent/1024; - ret.y_received = ret.y_received/1024; - line1 = [ret.x, ret.y_sent - previous_y_line1[$tab.attr('id')]]; - line2 = [ret.x, ret.y_received - previous_y_line2[$tab.attr('id')]]; - previous_y_line1[$tab.attr('id')] = ret.y_sent; - previous_y_line2[$tab.attr('id')] = ret.y_received; - } - - retval = [line1, line2]; - return retval; - } - - function getSettings(type) { - - var settings = { - grid: { - drawBorder: false, - shadow: false, - background: 'rgba(0,0,0,0)' - }, - axes: { - xaxis: { - renderer: $.jqplot.DateAxisRenderer, - tickOptions: { - formatString: '%H:%M:%S', - showGridline: false - } - }, - yaxis: { - autoscale:true, - label: PMA_messages['strTotalCount'], - labelRenderer: $.jqplot.CanvasAxisLabelRenderer - } - }, - seriesDefaults: { - rendererOptions: { - smooth: true - } - }, - legend: { - show: true, - location: 's', // compass direction, nw, n, ne, e, se, s, sw, w. - xoffset: 12, // pixel offset of the legend box from the x (or x2) axis. - yoffset: 12 // pixel offset of the legend box from the y (or y2) axis. - } - }; - - var title_message; - var x_legend = new Array(); - if(type == 'proc') { - title_message = PMA_messages['strChartConnectionsTitle']; - x_legend[0] = PMA_messages['strChartConnections']; - x_legend[1] = PMA_messages['strChartProcesses']; - settings.series = [ {label: x_legend[0]}, {label: x_legend[1]} ]; - } - else if(type == 'queries') { - title_message = PMA_messages['strChartIssuedQueriesTitle']; - x_legend[0] = PMA_messages['strChartIssuedQueries']; - settings.series = [ {label: x_legend[0]} ]; - } - else if(type == 'traffic') { - title_message = PMA_messages['strChartServerTraffic']; - x_legend[0] = PMA_messages['strChartKBSent']; - x_legend[1] = PMA_messages['strChartKBReceived']; - settings.series = [ {label: x_legend[0]}, {label: x_legend[1]} ]; - } - settings.title = title_message; - - return settings; - } - - function replotLiveChart($tab, type) { - var data_set = getCurrentDataSet($tab, type); - if(type == 'proc' || type == 'traffic') { - series[$tab.attr('id')][0].push(data_set[0]); - series[$tab.attr('id')][1].push(data_set[1]); - // update data set - tabChart[$tab.attr('id')].series[0].data = series[$tab.attr('id')][0]; - tabChart[$tab.attr('id')].series[1].data = series[$tab.attr('id')][1]; - } - else if(type == 'queries') { - // there is just one line to be plotted - series[$tab.attr('id')][0].push(data_set[0]); - // update data set - tabChart[$tab.attr('id')].series[0].data = series[$tab.attr('id')][0]; - } - tabChart[$tab.attr('id')].resetAxesScale(); - var current_time = new Date().getTime(); - var data_points = $('.dataPointsNumber :selected', $tab).val(); - var refresh_rate = $('.refreshRate :selected', $tab).val() * 1000; - // Min X would be decided based on refresh rate and number of data points - var minX = current_time - (refresh_rate * data_points); - var interval = (((current_time - minX)/data_points) / 1000); - interval = (data_points > 20) ? (((current_time - minX)/20) / 1000) : interval; - // update chart options - tabChart[$tab.attr('id')]['axes']['xaxis']['max'] = current_time; - tabChart[$tab.attr('id')]['axes']['xaxis']['min'] = minX; - tabChart[$tab.attr('id')]['axes']['xaxis']['tickInterval'] = interval + " seconds"; - // replot - tabChart[$tab.attr('id')].replot(); - } - - function setupLiveChart($tab, link, settings) { - if (settings != null) { - // Loading a chart with existing chart => remove old chart first - if (tabStatus[$tab.attr('id')] != 'static') { - clearTimeout(chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"]); - chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"] = null; - delete tabChart[$tab.attr('id')]; - // Also reset the select list - $tab.find('.buttonlinks select').get(0).selectedIndex = 2; - } - - if (! settings.chart) settings.chart = {}; - settings.chart.renderTo = $tab.attr('id') + "_chart_cnt"; - - if($('#' + $tab.attr('id') + '_chart_cnt').length == 0) { - $tab.find('.tabInnerContent') - .hide() - .after('
'); - } - $(link).html(PMA_messages['strStaticData']); - $tab.find('.buttonlinks a.tabRefresh').hide(); - $tab.find('.buttonlinks .refreshList').show(); - } else { - clearTimeout(chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"]); - chart_activeTimeouts[$tab.attr('id') + "_chart_cnt"] = null; - $tab.find('.tabInnerContent').show(); - $tab.find('div#' + $tab.attr('id') + '_chart_cnt').remove(); - tabStatus[$tab.attr('id')] = 'static'; - delete tabChart[$tab.attr('id')]; - $tab.find('.buttonlinks a.tabRefresh').show(); - $tab.find('.buttonlinks select').get(0).selectedIndex = 2; - $tab.find('.buttonlinks .refreshList').hide(); - } - clearTimeout(chart_replot_timers[$tab.attr('id')]); - previous_y_line1[$tab.attr('id')] = 0; - previous_y_line2[$tab.attr('id')] = 0; - series[$tab.attr('id')] = new Array(); - series[$tab.attr('id')][0] = new Array(); - series[$tab.attr('id')][1] = new Array(); - } - - /* 3 Filtering functions */ - $('#filterAlert').change(function() { - alertFilter = this.checked; - filterVariables(); - }); - - $('#filterText').keyup(function(e) { - var word = $(this).val().replace(/_/g, ' '); - - if (word.length == 0) { - textFilter = null; - } else { - textFilter = new RegExp("(^| )" + word, 'i'); - } - - text = word; - - filterVariables(); - }); - - $('#filterCategory').change(function() { - categoryFilter = $(this).val(); - filterVariables(); - }); - - $('input#dontFormat').change(function() { - // Hiding the table while changing values speeds up the process a lot - $('#serverstatusvariables').hide(); - $('#serverstatusvariables td.value span.original').toggle(this.checked); - $('#serverstatusvariables td.value span.formatted').toggle(! this.checked); - $('#serverstatusvariables').show(); - }); - - /* Adjust DOM / Add handlers to the tabs */ - function initTab(tab, data) { - if ($(tab).data('init-done') && !data) { - return; - } - $(tab).data('init-done', true); - switch(tab.attr('id')) { - case 'statustabs_traffic': - if (data != null) { - tab.find('.tabInnerContent').html(data.message); - } - PMA_showHints(); - break; - case 'statustabs_queries': - if (data != null) { - queryPieChart.destroy(); - tab.find('.tabInnerContent').html(data.message); - } - - // Build query statistics chart - var cdata = new Array(); - $.each(jQuery.parseJSON($('#serverstatusquerieschart span').html()), function(key, value) { - cdata.push([key, parseInt(value)]); - }); - - queryPieChart = PMA_createProfilingChartJqplot( - 'serverstatusquerieschart', - cdata - ); - - initTableSorter(tab.attr('id')); - break; - - case 'statustabs_allvars': - if (data != null) { - tab.find('.tabInnerContent').html(data.message); - filterVariables(); - } - initTableSorter(tab.attr('id')); - break; - } - } - - // TODO: tablesorter shouldn't sort already sorted columns - function initTableSorter(tabid) { - var $table, opts; - switch(tabid) { - case 'statustabs_queries': - $table = $('#serverstatusqueriesdetails'); - opts = { - sortList: [[3, 1]], - widgets: ['fast-zebra'], - headers: { - 1: { sorter: 'fancyNumber' }, - 2: { sorter: 'fancyNumber' } - } - }; - break; - case 'statustabs_allvars': - $table = $('#serverstatusvariables'); - opts = { - sortList: [[0, 0]], - widgets: ['fast-zebra'], - headers: { - 1: { sorter: 'withinSpanNumber' } - } - }; - break; - } - $table.tablesorter(opts); - $table.find('tr:first th') - .append(''); - } - - /* Filters the status variables by name/category/alert in the variables tab */ - function filterVariables() { - var useful_links = 0; - var section = text; - - if (categoryFilter.length > 0) { - section = categoryFilter; - } - - if (section.length > 1) { - $('#linkSuggestions span').each(function() { - if ($(this).attr('class').indexOf('status_' + section) != -1) { - useful_links++; - $(this).css('display', ''); - } else { - $(this).css('display', 'none'); - } - - - }); - } - - if (useful_links > 0) { - $('#linkSuggestions').css('display', ''); - } else { - $('#linkSuggestions').css('display', 'none'); - } - - odd_row = false; - $('#serverstatusvariables th.name').each(function() { - if ((textFilter == null || textFilter.exec($(this).text())) - && (! alertFilter || $(this).next().find('span.attention').length>0) - && (categoryFilter.length == 0 || $(this).parent().hasClass('s_' + categoryFilter)) - ) { - odd_row = ! odd_row; - $(this).parent().css('display', ''); - if (odd_row) { - $(this).parent().addClass('odd'); - $(this).parent().removeClass('even'); - } else { - $(this).parent().addClass('even'); - $(this).parent().removeClass('odd'); - } - } else { - $(this).parent().css('display', 'none'); - } - }); - } - - // Provides a nicely formatted and sorted tooltip of each datapoint of the query statistics - function sortedQueriesPointInfo(queries, lastQueries){ - var max, maxIdx, num = 0; - var queryKeys = new Array(); - var queryValues = new Array(); - var sumOther = 0; - var sumTotal = 0; - - // Separate keys and values, then sort them - $.each(queries.pointInfo, function(key, value) { - if (value-lastQueries.pointInfo[key] > 0) { - queryKeys.push(key); - queryValues.push(value-lastQueries.pointInfo[key]); - sumTotal += value-lastQueries.pointInfo[key]; - } - }); - var numQueries = queryKeys.length; - var pointInfo = '' + PMA_messages['strTotal'] + ': ' + sumTotal + '
'; - - while(queryKeys.length > 0) { - max = 0; - for (var i = 0; i < queryKeys.length; i++) { - if (queryValues[i] > max) { - max = queryValues[i]; - maxIdx = i; - } - } - if (numQueries > 8 && num >= 6) { - sumOther += queryValues[maxIdx]; - } else { - pointInfo += queryKeys[maxIdx].substr(4).replace('_', ' ') + ': ' + queryValues[maxIdx] + '
'; - } - - queryKeys.splice(maxIdx, 1); - queryValues.splice(maxIdx, 1); - num++; - } - - if (sumOther>0) { - pointInfo += PMA_messages['strOther'] + ': ' + sumOther; - } - - return pointInfo; - } - - /**** Server config advisor ****/ - - $('a[href="#openAdvisorInstructions"]').click(function() { - var dlgBtns = {}; - - dlgBtns[PMA_messages['strClose']] = function() { - $(this).dialog('close'); - }; - - $('#advisorInstructionsDialog').attr('title', PMA_messages['strAdvisorSystem']); - $('#advisorInstructionsDialog').dialog({ - width: 700, - buttons: dlgBtns - }); - }); - - $('a[href="#startAnalyzer"]').click(function() { - var $cnt = $('#statustabs_advisor .tabInnerContent'); - $cnt.html(''); - - $.get('server_status.php?' + url_query, { ajax_request: true, advisor: true }, function(data) { - var $tbody, $tr, str, even = true; - - data = $.parseJSON(data.message); - - $cnt.html(''); - - if (data.parse.errors.length > 0) { - $cnt.append('Rules file not well formed, following errors were found:
- '); - $cnt.append(data.parse.errors.join('
- ')); - $cnt.append('

'); - } - - if (data.run.errors.length > 0) { - $cnt.append('Errors occured while executing rule expressions:
- '); - $cnt.append(data.run.errors.join('
- ')); - $cnt.append('

'); - } - - if (data.run.fired.length > 0) { - $cnt.append('

' + PMA_messages['strPerformanceIssues'] + '

'); - $cnt.append('' + - '
' + PMA_messages['strIssuse'] + '' + PMA_messages['strRecommendation'] + - '
'); - $tbody = $cnt.find('table#rulesFired'); - - var rc_stripped; - - $.each(data.run.fired, function(key, value) { - // recommendation may contain links, don't show those in overview table (clicking on them redirects the user) - rc_stripped = $.trim($('
').html(value.recommendation).text()); - $tbody.append($tr = $('' + - value.issue + '' + rc_stripped + ' ')); - even = !even; - $tr.data('rule', value); - - $tr.click(function() { - var rule = $(this).data('rule'); - $('div#emptyDialog').dialog({title: PMA_messages['strRuleDetails']}); - $('div#emptyDialog').html( - '

' + PMA_messages['strIssuse'] + ':
' + rule.issue + '

' + - '

' + PMA_messages['strRecommendation'] + ':
' + rule.recommendation + '

' + - '

' + PMA_messages['strJustification'] + ':
' + rule.justification + '

' + - '

' + PMA_messages['strFormula'] + ':
' + rule.formula + '

' + - '

' + PMA_messages['strTest'] + ':
' + rule.test + '

' - ); - - var dlgBtns = {}; - dlgBtns[PMA_messages['strClose']] = function() { - $(this).dialog('close'); - }; - - $('div#emptyDialog').dialog({ width: 600, buttons: dlgBtns }); - }); - }); - } - }); - - return false; - }); -}); - - -// Needs to be global as server_status_monitor.js uses it too -function serverResponseError() { - var btns = {}; - btns[PMA_messages['strReloadPage']] = function() { - window.location.reload(); - }; - $('#emptyDialog').dialog({title: PMA_messages['strRefreshFailed']}); - $('#emptyDialog').html( - PMA_getImage('s_attention.png') + - PMA_messages['strInvalidResponseExplanation'] - ); - $('#emptyDialog').dialog({ buttons: btns }); -} diff --git a/js/server_status_advisor.js b/js/server_status_advisor.js new file mode 100644 index 0000000000..5b1b467c48 --- /dev/null +++ b/js/server_status_advisor.js @@ -0,0 +1,86 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * Server Status Advisor + * + * @package PhpMyAdmin + */ + +/** + * Unbind all event handlers before tearing down a page + */ +AJAX.registerTeardown('server_status_advisor.js', function() { + $('a[href="#openAdvisorInstructions"]').unbind('click'); + $('#statustabs_advisor').html(''); +}); + +AJAX.registerOnload('server_status_advisor.js', function() { + /**** Server config advisor ****/ + + $('a[href="#openAdvisorInstructions"]').click(function() { + var dlgBtns = {}; + dlgBtns[PMA_messages['strClose']] = function() { + $(this).dialog('close'); + }; + $('#advisorInstructionsDialog').dialog({ + title: PMA_messages['strAdvisorSystem'], + width: 700, + buttons: dlgBtns + }); + }); + + var $cnt = $('#statustabs_advisor'); + var $tbody, $tr, str, even = true; + + data = $.parseJSON($('#advisorData').text()); + $cnt.html(''); + + if (data.parse.errors.length > 0) { + $cnt.append('Rules file not well formed, following errors were found:
- '); + $cnt.append(data.parse.errors.join('
- ')); + $cnt.append('

'); + } + + if (data.run.errors.length > 0) { + $cnt.append('Errors occured while executing rule expressions:
- '); + $cnt.append(data.run.errors.join('
- ')); + $cnt.append('

'); + } + + if (data.run.fired.length > 0) { + $cnt.append('

' + PMA_messages['strPerformanceIssues'] + '

'); + $cnt.append('' + + '
' + PMA_messages['strIssuse'] + '' + PMA_messages['strRecommendation'] + + '
'); + $tbody = $cnt.find('table#rulesFired'); + + var rc_stripped; + + $.each(data.run.fired, function(key, value) { + // recommendation may contain links, don't show those in overview table (clicking on them redirects the user) + rc_stripped = $.trim($('
').html(value.recommendation).text()); + $tbody.append($tr = $('' + + value.issue + '' + rc_stripped + ' ')); + even = !even; + $tr.data('rule', value); + + $tr.click(function() { + var rule = $(this).data('rule'); + $('div#emptyDialog').dialog({title: PMA_messages['strRuleDetails']}); + $('div#emptyDialog').html( + '

' + PMA_messages['strIssuse'] + ':
' + rule.issue + '

' + + '

' + PMA_messages['strRecommendation'] + ':
' + rule.recommendation + '

' + + '

' + PMA_messages['strJustification'] + ':
' + rule.justification + '

' + + '

' + PMA_messages['strFormula'] + ':
' + rule.formula + '

' + + '

' + PMA_messages['strTest'] + ':
' + rule.test + '

' + ); + + var dlgBtns = {}; + dlgBtns[PMA_messages['strClose']] = function() { + $(this).dialog('close'); + }; + + $('div#emptyDialog').dialog({ width: 600, buttons: dlgBtns }); + }); + }); + } +}); diff --git a/js/server_status_monitor.js b/js/server_status_monitor.js index 044a96835e..5b75444e11 100644 --- a/js/server_status_monitor.js +++ b/js/server_status_monitor.js @@ -1,12 +1,57 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ -var runtime = {}; +var runtime = {}, + server_time_diff, + server_os, + is_superuser, + server_db_isLocal; +AJAX.registerOnload('server_status_monitor.js', function() { + var $js_data_form = $('#js_data'); + server_time_diff = new Date().getTime() - $js_data_form.find("input[name=server_time]").val(); + server_os = $js_data_form.find("input[name=server_os]").val(); + is_superuser = $js_data_form.find("input[name=is_superuser]").val(); + server_db_isLocal = $js_data_form.find("input[name=server_db_isLocal]").val(); +}); + /** * Unbind all event handlers before tearing down a page */ +AJAX.registerTeardown('server_status_monitor.js', function() { + $('a.popupLink').unbind('click'); + $('body').unbind('click'); +}); +/** + * Popup behaviour + */ +AJAX.registerOnload('server_status_monitor.js', function() { + $('a.popupLink').click( function() { + var $link = $(this); + $('div.' + $link.attr('href').substr(1)) + .show() + .offset({ top: $link.offset().top + $link.height() + 5, left: $link.offset().left }) + .addClass('openedPopup'); + + return false; + }); + $('body').click( function(event) { + $('div.openedPopup').each(function() { + var $cnt = $(this); + var pos = $cnt.offset(); + // Hide if the mouseclick is outside the popupcontent + if (event.pageX < pos.left + || event.pageY < pos.top + || event.pageX > pos.left + $cnt.outerWidth() + || event.pageY > pos.top + $cnt.outerHeight() + ) { + $cnt.hide().removeClass('openedPopup'); + } + }); + }); +}); + AJAX.registerTeardown('server_status_monitor.js', function() { $('a[href="#rearrangeCharts"], a[href="#endChartEditMode"]').unbind('click'); - $('div#statustabs_charting div.popupContent select[name="chartColumns"]').unbind('change'); - $('div#statustabs_charting div.popupContent select[name="gridChartRefresh"]').unbind('change'); + $('div.popupContent select[name="chartColumns"]').unbind('change'); + $('div.popupContent select[name="gridChartRefresh"]').unbind('change'); $('a[href="#addNewChart"]').unbind('click'); $('a[href="#exportMonitorConfig"]').unbind('click'); $('a[href="#importMonitorConfig"]').unbind('click'); @@ -22,15 +67,15 @@ AJAX.registerTeardown('server_status_monitor.js', function() { $('a[href="#submitClearSeries"]').unbind('click'); $('a[href="#submitAddSeries"]').unbind('click'); // $("input#variableInput").destroy(); - clearTimeout(runtime.refreshTimeout); - runtime.refreshTimeout = null; - $.cookie('pma_serverStatusTabs', null); + $('#chartPreset').unbind('click'); + $('#chartStatusVar').unbind('click'); + destroyGrid(); }); AJAX.registerOnload('server_status_monitor.js', function() { // Show tab links - $('div#statustabs_charting div.tabLinks').show(); - $('div#statustabs_charting img#loadingMonitorIcon').remove(); + $('div.tabLinks').show(); + $('img#loadingMonitorIcon').remove(); // Codemirror is loaded on demand so we might need to initialize it if (! codemirror_editor) { var $elm = $('#sqlquery'); @@ -46,7 +91,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { ); } } - // Timepicker is loaded on demand so we need to initialize datetime fields from the 'load log' dialog + // Timepicker is loaded on demand so we need to initialize + // datetime fields from the 'load log' dialog $('div#logAnalyseDialog .datetimefield').each(function() { PMA_addDatepicker($(this)); }); @@ -54,13 +100,14 @@ AJAX.registerOnload('server_status_monitor.js', function() { /**** Monitor charting implementation ****/ /* Saves the previous ajax response for differential values */ var oldChartData = null; - // Holds about to created chart + // Holds about to be created chart var newChart = null; var chartSpacing; - // Whenever the monitor object (runtime.charts) or the settings object (monitorSettings) - // changes in a way incompatible to the previous version, increase this number - // It will reset the users monitor and settings object in his localStorage to the default configuration + // Whenever the monitor object (runtime.charts) or the settings object + // (monitorSettings) changes in a way incompatible to the previous version, + // increase this number. It will reset the users monitor and settings object + // in his localStorage to the default configuration var monitorProtocolVersion = '1.0'; // Runtime parameter of the monitor, is being fully set in initGrid() @@ -75,7 +122,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { chartAI: 0, // To play/pause the monitor redrawCharts: false, - // Object that contains a list of nodes that need to be retrieved from the server for chart updates + // Object that contains a list of nodes that need to be retrieved + // from the server for chart updates dataList: [], // Current max points per chart (needed for auto calculation) gridMaxPoints: 20, @@ -88,7 +136,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { var defaultMonitorSettings = { columns: 3, chartSize: { width: 295, height: 250 }, - // Max points in each chart. Settings it to 'auto' sets gridMaxPoints to (chartwidth - 40) / 12 + // Max points in each chart. Settings it to 'auto' sets + // gridMaxPoints to (chartwidth - 40) / 12 gridMaxPoints: 'auto', /* Refresh rate of all grid charts in ms */ gridRefresh: 5000 @@ -145,20 +194,18 @@ AJAX.registerOnload('server_status_monitor.js', function() { nodes: [ { dataPoints: [{ type: 'cpu', name: 'loadavg'}] } ], - maxYLabel: 0 + maxYLabel: 100 }, 'memory': { title: PMA_messages['strSystemMemory'], series: [ { label: PMA_messages['strTotalMemory'], - fill:true, - stackSeries: true + fill:true }, { dataType: 'memory', label: PMA_messages['strUsedMemory'], - fill:true, - stackSeries: true + fill:true } ], nodes: [{ dataPoints: [{ type: 'memory', name: 'MemTotal' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 } @@ -170,12 +217,10 @@ AJAX.registerOnload('server_status_monitor.js', function() { title: PMA_messages['strSystemSwap'], series: [ { label: PMA_messages['strTotalSwap'], - fill:true, - stackSeries: true + fill:true }, { label: PMA_messages['strUsedSwap'], - fill:true, - stackSeries: true + fill:true } ], nodes: [{ dataPoints: [{ type: 'memory', name: 'SwapTotal' }]}, { dataPoints: [{ type: 'memory', name: 'SwapUsed' }]} @@ -198,15 +243,15 @@ AJAX.registerOnload('server_status_monitor.js', function() { 'memory': { title: PMA_messages['strSystemMemory'], series: [ - { label: PMA_messages['strUsedMemory'], fill:true, stackSeries: true}, - { label: PMA_messages['strCachedMemory'], fill:true, stackSeries: true}, - { label: PMA_messages['strBufferedMemory'], fill:true, stackSeries: true}, - { label: PMA_messages['strFreeMemory'], fill:true, stackSeries: true} + { label: PMA_messages['strBufferedMemory'], fill:true}, + { label: PMA_messages['strUsedMemory'], fill:true}, + { label: PMA_messages['strCachedMemory'], fill:true}, + { label: PMA_messages['strFreeMemory'], fill:true} ], nodes: [ + { dataPoints: [{ type: 'memory', name: 'Buffers' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'Cached' }], valueDivisor: 1024 }, - { dataPoints: [{ type: 'memory', name: 'Buffers' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'MemFree' }], valueDivisor: 1024 } ], maxYLabel: 0 @@ -214,13 +259,13 @@ AJAX.registerOnload('server_status_monitor.js', function() { 'swap': { title: PMA_messages['strSystemSwap'], series: [ - { label: PMA_messages['strUsedSwap'], fill:true, stackSeries: true}, - { label: PMA_messages['strCachedSwap'], fill:true, stackSeries: true}, - { label: PMA_messages['strFreeSwap'], fill:true, stackSeries: true} + { label: PMA_messages['strCachedSwap'], fill:true}, + { label: PMA_messages['strUsedSwap'], fill:true}, + { label: PMA_messages['strFreeSwap'], fill:true} ], nodes: [ - { dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'SwapCached' }], valueDivisor: 1024 }, + { dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 }, { dataPoints: [{ type: 'memory', name: 'SwapFree' }], valueDivisor: 1024 } ], maxYLabel: 0 @@ -243,8 +288,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { 'memory': { title: PMA_messages['strSystemMemory'], series: [ - { label: PMA_messages['strUsedMemory'], fill:true, stackSeries: true}, - { label: PMA_messages['strFreeMemory'], fill:true, stackSeries: true} + { label: PMA_messages['strUsedMemory'], fill:true }, + { label: PMA_messages['strFreeMemory'], fill:true } ], nodes: [ { dataPoints: [{ type: 'memory', name: 'MemUsed' }], valueDivisor: 1024 }, @@ -255,8 +300,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { 'swap': { title: PMA_messages['strSystemSwap'], series: [ - { label: PMA_messages['strUsedSwap'], fill:true, stackSeries: true}, - { label: PMA_messages['strFreeSwap'], fill:true, stackSeries: true} + { label: PMA_messages['strUsedSwap'], fill:true }, + { label: PMA_messages['strFreeSwap'], fill:true } ], nodes: [ { dataPoints: [{ type: 'memory', name: 'SwapUsed' }], valueDivisor: 1024 }, @@ -335,14 +380,15 @@ AJAX.registerOnload('server_status_monitor.js', function() { editMode = false; } - // Icon graphics have zIndex 19, 20 and 21. Let's just hope nothing else has the same zIndex + // Icon graphics have zIndex 19, 20 and 21. + // Let's just hope nothing else has the same zIndex $('table#chartGrid div svg').find('*[zIndex=20], *[zIndex=21], *[zIndex=19]').toggle(editMode); $('a[href="#endChartEditMode"]').toggle(editMode); if (editMode) { // Close the settings popup - $('#statustabs_charting .popupContent').hide().removeClass('openedPopup'); + $('div.popupContent').hide().removeClass('openedPopup'); $("#chartGrid").sortableTable({ ignoreRect: { @@ -427,7 +473,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { }); // global settings - $('div#statustabs_charting div.popupContent select[name="chartColumns"]').change(function() { + $('div.popupContent select[name="chartColumns"]').change(function() { monitorSettings.columns = parseInt(this.value); var newSize = chartSize(); @@ -452,7 +498,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { numColumns++; }); - // To little cells in one row => for each cell to little, move all cells backwards by 1 + // To little cells in one row => for each cell to little, + // move all cells backwards by 1 if ($tr.next().length > 0) { var cnt = monitorSettings.columns - $tr.find('td').length; for (var i = 0; i < cnt; i++) { @@ -492,7 +539,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { saveMonitor(); // Save settings }); - $('div#statustabs_charting div.popupContent select[name="gridChartRefresh"]').change(function() { + $('div.popupContent select[name="gridChartRefresh"]').change(function() { monitorSettings.gridRefresh = parseInt(this.value) * 1000; clearTimeout(runtime.refreshTimeout); @@ -522,7 +569,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { if (type == 'preset') { newChart = presetCharts[$('div#addChartDialog select[name="presetCharts"]').prop('value')]; } else { - // If user builds his own chart, it's being set/updated each time he adds a series + // If user builds his own chart, it's being set/updated + // each time he adds a series // So here we only warn if he didn't add a series yet if (! newChart || ! newChart.nodes || newChart.nodes.length == 0) { alert(PMA_messages['strAddOneSeriesWarning']); @@ -554,8 +602,25 @@ AJAX.registerOnload('server_status_monitor.js', function() { $presetList.append(''); }); $presetList.change(function() { - $('input#chartPreset').trigger('click'); - $('input[name="chartTitle"]').val(presetCharts[$(this).val()].title); + $('input[name="chartTitle"]').val( + $presetList.find(':selected').text() + ); + $('#chartPreset').prop('checked', true); + }) + $('#chartPreset').click(function () { + $('input[name="chartTitle"]').val( + $presetList.find(':selected').text() + ); + }); + $('#chartStatusVar').click(function () { + $('input[name="chartTitle"]').val( + $('#chartSeries').find(':selected').text().replace(/_/, " ") + ); + }); + $('#chartSeries').change(function () { + $('input[name="chartTitle"]').val( + $('#chartSeries').find(':selected').text().replace(/_/, " ") + ); }); } @@ -585,7 +650,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { $('
', { "class": "disableAjax", method: "post", - action: "file_echo.php?" + url_query + "&filename=1", + action: "file_echo.php?" + PMA_commonParams.get('common_query') + "&filename=1", style: "display:none;" }) .append( @@ -602,7 +667,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { $('a[href="#importMonitorConfig"]').click(function() { $('div#emptyDialog').dialog({title: PMA_messages['strImportDialogTitle']}); - $('div#emptyDialog').html(PMA_messages['strImportDialogMessage'] + ':
' + + $('div#emptyDialog').html(PMA_messages['strImportDialogMessage'] + ':
' + '
'); var dlgBtns = {}; @@ -704,10 +769,15 @@ AJAX.registerOnload('server_status_monitor.js', function() { $.extend(vars, getvars); } - $.get('server_status.php?' + url_query, vars, + $.get('server_status_monitor.php?' + PMA_commonParams.get('common_query'), vars, function(data) { - var logVars = $.parseJSON(data.message), - icon = PMA_getImage('s_success.png'), msg='', str=''; + var logVars; + if (data.success == true) { + logVars = data.message; + } else { + return serverResponseError(); + } + var icon = PMA_getImage('s_success.png'), msg='', str=''; if (logVars['general_log'] == 'ON') { if (logVars['slow_query_log'] == 'ON') { @@ -1008,30 +1078,6 @@ AJAX.registerOnload('server_status_monitor.js', function() { refreshChartGrid(); } - /* Destroys all monitor related resources */ - function destroyGrid() { - if (runtime.charts) { - $.each(runtime.charts, function(key, value) { - try { - value.chart.destroy(); - } catch(err) {} - }); - } - - try { - runtime.refreshRequest.abort(); - } catch(err) {} - try { - clearTimeout(runtime.refreshTimeout); - } catch(err) {} - - $('table#chartGrid').html(''); - - runtime.charts = null; - runtime.chartAI = 0; - monitorSettings = null; - } - /* Calls destroyGrid() and initGrid(), but before doing so it saves the chart * data from each chart and restores it after the monitor is initialized again */ function rebuildGrid() { @@ -1103,11 +1149,31 @@ AJAX.registerOnload('server_status_monitor.js', function() { } }, highlighter: { - show: true, - showTooltip: false + show: true, + showTooltip: true, + tooltipAxes: 'y', + useAxesFormatters: true } }; + if (settings.title === PMA_messages['strSystemCPUUsage'] + || settings.title === PMA_messages['strQueryCacheEfficiency']) { + settings.axes.yaxis.tickOptions = { + formatString: "%d %%" + }; + } else if (settings.title === PMA_messages['strSystemMemory'] + || settings.title === PMA_messages['strSystemSwap'] + ) { + settings.stackSeries = true; + settings.axes.yaxis.tickOptions = { + formatter: $.jqplot.byteFormatter(2) // MiB + }; + } else if (settings.title === PMA_messages['strTraffic']) { + settings.axes.yaxis.tickOptions = { + formatter: $.jqplot.byteFormatter(1) // KiB + }; + } + settings.series = chartObj.series; if ($('#' + 'gridchart' + runtime.chartAI).length == 0) { @@ -1127,6 +1193,28 @@ AJAX.registerOnload('server_status_monitor.js', function() { } chartObj.chart = $.jqplot('gridchart' + runtime.chartAI, series, settings); + var $legend = $('
').css('padding', '0.5em'); + for (var i in chartObj.chart.series) { + $legend.append( + $('
').append( + $('
').css({ + width: '1em', + height: '1em', + background: chartObj.chart.seriesColors[i] + }).addClass('floatleft') + ).append( + $('
').text( + chartObj.chart.series[i].label + ).addClass('floatleft') + ).append( + $('
') + ).addClass('floatleft') + ); + } + $('#gridchart' + runtime.chartAI) + .css('overflow', 'hidden') + .parent() + .append($legend); if (initialize != true) { runtime.charts['c' + runtime.chartAI] = chartObj; @@ -1173,37 +1261,9 @@ AJAX.registerOnload('server_status_monitor.js', function() { }); $('#gridchart' + runtime.chartAI).bind('jqplotMouseMove', function(ev, gridpos, datapos, neighbor, plot) { - - if (neighbor != null) { - if ($('#tooltip_box').length) { - $('#tooltip_box') - .css({ - left: ev.pageX + 15, - top: ev.pageY + 15, - padding:'5px' - }) - .fadeIn(); - } - var xVal = new Date(Math.ceil(neighbor.data[0])); - var xValHours = xVal.getHours(); - (xValHours < 10) ? (xValHours = "0" + xValHours) : ""; - - var xValMinutes = xVal.getMinutes(); - (xValMinutes < 10) ? (xValMinutes = "0" + xValMinutes) : ""; - - var xValSeconds = xVal.getSeconds(); - (xValSeconds < 10) ? (xValSeconds = "0" + xValSeconds) : ""; - - xVal = xValHours + ":" + xValMinutes + ":" + xValSeconds; - var s = '' + xVal + '
' + neighbor.data[1] + '
'; - - $('#tooltip_box').html(s); - } - if (! drawTimeSpan) { return; } - if (selectionStartX != undefined) { $('#selection_box') .css({ @@ -1213,26 +1273,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { } }); - - $('#gridchart' + runtime.chartAI).bind('jqplotMouseEnter', function(ev, gridpos, datapos, neighbor, plot) { - if ($('#tooltip_box').length) { - tooltipBox.remove(); - } - tooltipBox = $('
'); - $(document.body).append(tooltipBox); - tooltipBox - .attr({id: 'tooltip_box'}) - .css({ - top: ev.pageY + 15, - left: ev.pageX + 15 - }) - .fadeIn(); - }); - $('#gridchart' + runtime.chartAI).bind('jqplotMouseLeave', function(ev, gridpos, datapos, neighbor, plot) { - if ($('#tooltip_box').length) { - tooltipBox.remove(); - } drawTimeSpan = false; }); @@ -1370,20 +1411,21 @@ AJAX.registerOnload('server_status_monitor.js', function() { /* Called in regular intervalls, this function updates the values of each chart in the grid */ function refreshChartGrid() { /* Send to server */ - runtime.refreshRequest = $.post('server_status.php?' + url_query, { + runtime.refreshRequest = $.post('server_status_monitor.php?' + PMA_commonParams.get('common_query'), { ajax_request: true, chart_data: 1, type: 'chartgrid', requiredData: $.toJSON(runtime.dataList) }, function(data) { var chartData; - try { - chartData = $.parseJSON(data.message); - } catch(err) { + if (data.success == true) { + chartData = data.message; + } else { return serverResponseError(); } var value, i = 0; var diff; + var total; /* Update values in each graph */ $.each(runtime.charts, function(orderKey, elem) { @@ -1393,6 +1435,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { return; } // Draw all series + total = 0; for (var j = 0; j < elem.nodes.length; j++) { // Update x-axis if (i == 0 && j == 0) { @@ -1437,7 +1480,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { // Set y value, if defined if (value != undefined) { - elem.chart.series[j].data.push([chartData.x, value]); + elem.chart.series[j].data.push([chartData.x, value]); if(value > elem.maxYLabel) { elem.maxYLabel = value; } @@ -1451,14 +1494,30 @@ AJAX.registerOnload('server_status_monitor.js', function() { elem.chart.series[j].data.shift(); } } + if (elem.title === PMA_messages['strSystemMemory'] + || elem.title === PMA_messages['strSystemSwap'] + ) { + total += value; + } } } // update chart options elem.chart['axes']['xaxis']['max'] = runtime.xmax; elem.chart['axes']['xaxis']['min'] = runtime.xmin; - elem.chart['axes']['yaxis']['max'] = Math.ceil(elem.maxYLabel*1.2); - elem.chart['axes']['yaxis']['tickInterval'] = Math.ceil(elem.maxYLabel*1.2)/5; + if (elem.title !== PMA_messages['strSystemCPUUsage'] + && elem.title !== PMA_messages['strQueryCacheEfficiency'] + && elem.title !== PMA_messages['strSystemMemory'] + && elem.title !== PMA_messages['strSystemSwap'] + ) { + elem.chart['axes']['yaxis']['max'] = Math.ceil(elem.maxYLabel*1.1); + elem.chart['axes']['yaxis']['tickInterval'] = Math.ceil(elem.maxYLabel*1.1/5); + } else if (elem.title === PMA_messages['strSystemMemory'] + || elem.title === PMA_messages['strSystemSwap'] + ) { + elem.chart['axes']['yaxis']['max'] = Math.ceil(total * 1.1 / 100) * 100; + elem.chart['axes']['yaxis']['tickInterval'] = Math.ceil(total * 1.1 / 5); + } i++; if (runtime.redrawCharts) { @@ -1472,7 +1531,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { }); } - /* Function to get highest plotted point's y label, to scale the chart, + /* Function to get highest plotted point's y label, to scale the chart, * TODO: make jqplot's autoscale:true work here */ function getMaxYLabel(dataValues) { @@ -1488,7 +1547,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { if (prev == null) { return undefined; } - // cur and prev are datapoint arrays, but containing only 1 element for cpu-linux + // cur and prev are datapoint arrays, but containing + // only 1 element for cpu-linux cur = cur[0]; prev = prev[0]; @@ -1573,7 +1633,7 @@ AJAX.registerOnload('server_status_monitor.js', function() { }); - logRequest = $.get('server_status.php?' + url_query, + logRequest = $.get('server_status_monitor.php?' + PMA_commonParams.get('common_query'), { ajax_request: true, log_data: 1, type: opts.src, @@ -1584,9 +1644,9 @@ AJAX.registerOnload('server_status_monitor.js', function() { }, function(data) { var logData; - try { - logData = $.parseJSON(data.message); - } catch(err) { + if (data.success == true) { + logData = data.message; + } else { return serverResponseError(); } @@ -1655,10 +1715,12 @@ AJAX.registerOnload('server_status_monitor.js', function() { } ); - /* Handles the actions performed when the user uses any of the log table filters - * which are the filter by name and grouping with ignoring data in WHERE clauses + /* Handles the actions performed when the user uses any of the + * log table filters which are the filter by name and grouping + * with ignoring data in WHERE clauses * - * @param boolean Should be true when the users enabled or disabled to group queries ignoring data in WHERE clauses + * @param boolean Should be true when the users enabled or disabled + * to group queries ignoring data in WHERE clauses */ function filterQueries(varFilterChange) { var odd_row = false, cell, textFilter; @@ -1699,7 +1761,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { // We just assume the sql text is always in the second last column, and that the total count is right of it $('div#logTable table tbody tr td:nth-child(' + (runtime.logDataCols.length - 1) + ')').each(function() { var $t = $(this); - // If query is a SELECT and user enabled or disabled to group queries ignoring data in where statements, we + // If query is a SELECT and user enabled or disabled to group + // queries ignoring data in where statements, we // need to re-calculate the sums of each row if (varFilterChange && $t.html().match(/^SELECT/i)) { if (noVars) { @@ -1708,7 +1771,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { q = $t.text().replace(equalsFilter, '$1=...$6').trim(); q = q.replace(functionFilter, ' $1(...)'); - // Js does not specify a limit on property name length, so we can abuse it as index :-) + // Js does not specify a limit on property name length, + // so we can abuse it as index :-) if (filteredQueries[q]) { filteredQueries[q] += parseInt($t.next().text()); totalSum += parseInt($t.next().text()); @@ -1740,7 +1804,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { } } - // If not required to be hidden, do we need to hide because of a not matching text filter? + // If not required to be hidden, do we need + // to hide because of a not matching text filter? if (! hide && (textFilter != null && ! textFilter.exec($t.text()))) { hide = true; } @@ -1919,7 +1984,8 @@ AJAX.registerOnload('server_status_monitor.js', function() { if (codemirror_editor) { query = PMA_SQLPrettyPrint(query); codemirror_editor.setValue(query); - // Codemirror is bugged, it doesn't refresh properly sometimes. Following lines seem to fix that + // Codemirror is bugged, it doesn't refresh properly sometimes. + // Following lines seem to fix that setTimeout(function() { codemirror_editor.refresh(); },50); @@ -1965,20 +2031,19 @@ AJAX.registerOnload('server_status_monitor.js', function() { PMA_messages['strAnalyzing'] + ' '); - $.post('server_status.php?' + url_query, { + $.post('server_status_monitor.php?' + PMA_commonParams.get('common_query'), { ajax_request: true, query_analyzer: true, query: codemirror_editor ? codemirror_editor.getValue() : $('#sqlquery').val(), database: db }, function(data) { - data = $.parseJSON(data.message); - var totalTime = 0; - - if (data.error) { + if (data.success == true) { + data = data.message; + } else { $('div#queryAnalyzerDialog div.placeHolder').html('
' + data.error + '
'); return; } - + var totalTime = 0; // Float sux, I'll use table :( $('div#queryAnalyzerDialog div.placeHolder') .html('
'); @@ -2034,22 +2099,22 @@ AJAX.registerOnload('server_status_monitor.js', function() { numberTable += '' + data.profiling[i].state + ' ' + PMA_prettyProfilingNum(duration, 2) + ''; } - + // Only put those values in the pie which are > 2% for (var i = 0, l = data.profiling.length; i < l; i++) { duration = parseFloat(data.profiling[i].duration); - + if (duration / totalTime > 0.02) { chartData.push([PMA_prettyProfilingNum(duration, 2) + ' ' + data.profiling[i].state, duration]); } else { otherTime += duration; } } - + if (otherTime > 0) { chartData.push([PMA_prettyProfilingNum(otherTime, 2) + ' ' + PMA_messages['strOther'], otherTime]); } - + numberTable += '' + PMA_messages['strTotalTime'] + '' + PMA_prettyProfilingNum(totalTime, 2) + ''; numberTable += ''; @@ -2105,3 +2170,39 @@ AJAX.registerOnload('server_status_monitor.js', function() { AJAX.registerOnload('server_status_monitor.js', function() { $('a[href="#pauseCharts"]').trigger('click'); }); + +// Needs to be global as server_status_monitor.js uses it too +function serverResponseError() { + var btns = {}; + btns[PMA_messages['strReloadPage']] = function() { + window.location.reload(); + }; + $('#emptyDialog').dialog({title: PMA_messages['strRefreshFailed']}); + $('#emptyDialog').html( + PMA_getImage('s_attention.png') + + PMA_messages['strInvalidResponseExplanation'] + ); + $('#emptyDialog').dialog({ buttons: btns }); +} + +/* Destroys all monitor related resources */ +function destroyGrid() { + if (runtime.charts) { + $.each(runtime.charts, function(key, value) { + try { + value.chart.destroy(); + } catch(err) {} + }); + } + + try { + runtime.refreshRequest.abort(); + } catch(err) {} + try { + clearTimeout(runtime.refreshTimeout); + } catch(err) {} + $('table#chartGrid').html(''); + runtime.charts = null; + runtime.chartAI = 0; + monitorSettings = null; +} diff --git a/js/server_status_queries.js b/js/server_status_queries.js new file mode 100644 index 0000000000..b1b632165a --- /dev/null +++ b/js/server_status_queries.js @@ -0,0 +1,39 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + */ + +/** + * Unbind all event handlers before tearing down a page + */ +AJAX.registerTeardown('server_status_queries.js', function() { + var queryPieChart = $('#serverstatusquerieschart').data('queryPieChart'); + if (queryPieChart) { + queryPieChart.destroy(); + } +}); + +AJAX.registerOnload('server_status_queries.js', function() { + // Build query statistics chart + var cdata = []; + try { + $.each(jQuery.parseJSON($('#serverstatusquerieschart_data').text()), function(key, value) { + cdata.push([key, parseInt(value)]); + }); + $('#serverstatusquerieschart').data( + 'queryPieChart', + PMA_createProfilingChartJqplot( + 'serverstatusquerieschart', + cdata + ) + ); + } catch (exception) { + // Could not load chart, no big deal... + } + + /*** Table sort tooltip ***/ + PMA_createqTip( + $('table.sortable').children('thead').children('tr').has('th'), + PMA_messages['strSortHint'] + ); + initTableSorter('statustabs_queries'); +}); diff --git a/js/server_status_sorter.js b/js/server_status_sorter.js new file mode 100644 index 0000000000..383cb8ac7f --- /dev/null +++ b/js/server_status_sorter.js @@ -0,0 +1,89 @@ +// TODO: tablesorter shouldn't sort already sorted columns +function initTableSorter(tabid) { + var $table, opts; + switch(tabid) { + case 'statustabs_queries': + $table = $('#serverstatusqueriesdetails'); + opts = { + sortList: [[3, 1]], + widgets: ['fast-zebra'], + headers: { + 1: { sorter: 'fancyNumber' }, + 2: { sorter: 'fancyNumber' } + } + }; + break; + case 'statustabs_allvars': + $table = $('#serverstatusvariables'); + opts = { + sortList: [[0, 0]], + widgets: ['fast-zebra'], + headers: { + 1: { sorter: 'withinSpanNumber' } + } + }; + break; + } + $table.tablesorter(opts); + $table.find('tr:first th') + .append(''); +} + +$(function () { + $.tablesorter.addParser({ + id: "fancyNumber", + is: function(s) { + return /^[0-9]?[0-9,\.]*\s?(k|M|G|T|%)?$/.test(s); + }, + format: function(s) { + var num = jQuery.tablesorter.formatFloat( + s.replace(PMA_messages['strThousandsSeparator'], '') + .replace(PMA_messages['strDecimalSeparator'], '.') + ); + + var factor = 1; + switch (s.charAt(s.length - 1)) { + case '%': factor = -2; break; + // Todo: Complete this list (as well as in the regexp a few lines up) + case 'k': factor = 3; break; + case 'M': factor = 6; break; + case 'G': factor = 9; break; + case 'T': factor = 12; break; + } + + return num * Math.pow(10, factor); + }, + type: "numeric" + }); + + $.tablesorter.addParser({ + id: "withinSpanNumber", + is: function(s) { + return /(.*)?<\/span>/); + return (res && res.length >= 3) ? res[2] : 0; + }, + type: "numeric" + }); + + // faster zebra widget: no row visibility check, faster css class switching, no cssChildRow check + $.tablesorter.addWidget({ + id: "fast-zebra", + format: function (table) { + if (table.config.debug) { + var time = new Date(); + } + $("tr:even", table.tBodies[0]) + .removeClass(table.config.widgetZebra.css[0]) + .addClass(table.config.widgetZebra.css[1]); + $("tr:odd", table.tBodies[0]) + .removeClass(table.config.widgetZebra.css[1]) + .addClass(table.config.widgetZebra.css[0]); + if (table.config.debug) { + $.tablesorter.benchmark("Applying Fast-Zebra widget", time); + } + } + }); +}); diff --git a/js/server_status_variables.js b/js/server_status_variables.js new file mode 100644 index 0000000000..a8c2e652a7 --- /dev/null +++ b/js/server_status_variables.js @@ -0,0 +1,109 @@ +/* vim: set expandtab sw=4 ts=4 sts=4: */ +/** + * + * + * @package PhpMyAdmin + */ + +/** + * Unbind all event handlers before tearing down a page + */ +AJAX.registerTeardown('server_status_variables.js', function() { + $('#filterAlert').unbind('change'); + $('#filterText').unbind('keyup'); + $('#filterCategory').unbind('change'); + $('#dontFormat').unbind('change'); +}); + +AJAX.registerOnload('server_status_variables.js', function() { + /*** Table sort tooltip ***/ + PMA_createqTip( + $('table.sortable').children('thead').children('tr').has('th'), + PMA_messages['strSortHint'] + ); + initTableSorter('statustabs_allvars'); + + // Filters for status variables + var textFilter = null; + var alertFilter = $('#filterAlert').prop('checked'); + var categoryFilter = $('#filterCategory').find(':selected').val(); + var odd_row = false; + var text = ''; // Holds filter text + + /* 3 Filtering functions */ + $('#filterAlert').change(function() { + alertFilter = this.checked; + filterVariables(); + }); + + $('#filterCategory').change(function() { + categoryFilter = $(this).val(); + filterVariables(); + }); + + $('#dontFormat').change(function() { + // Hiding the table while changing values speeds up the process a lot + $('#serverstatusvariables').hide(); + $('#serverstatusvariables td.value span.original').toggle(this.checked); + $('#serverstatusvariables td.value span.formatted').toggle(! this.checked); + $('#serverstatusvariables').show(); + }).trigger('change'); + + $('#filterText').keyup(function(e) { + var word = $(this).val().replace(/_/g, ' '); + if (word.length == 0) { + textFilter = null; + } else { + textFilter = new RegExp("(^| )" + word, 'i'); + } + text = word; + filterVariables(); + }).trigger('keyup'); + + /* Filters the status variables by name/category/alert in the variables tab */ + function filterVariables() { + var useful_links = 0; + var section = text; + + if (categoryFilter.length > 0) { + section = categoryFilter; + } + + if (section.length > 1) { + $('#linkSuggestions span').each(function() { + if ($(this).attr('class').indexOf('status_' + section) != -1) { + useful_links++; + $(this).css('display', ''); + } else { + $(this).css('display', 'none'); + } + }); + } + + if (useful_links > 0) { + $('#linkSuggestions').css('display', ''); + } else { + $('#linkSuggestions').css('display', 'none'); + } + + odd_row = false; + $('#serverstatusvariables th.name').each(function() { + if ((textFilter == null || textFilter.exec($(this).text())) + && (! alertFilter || $(this).next().find('span.attention').length>0) + && (categoryFilter.length == 0 || $(this).parent().hasClass('s_' + categoryFilter)) + ) { + odd_row = ! odd_row; + $(this).parent().css('display', ''); + if (odd_row) { + $(this).parent().addClass('odd'); + $(this).parent().removeClass('even'); + } else { + $(this).parent().addClass('even'); + $(this).parent().removeClass('odd'); + } + } else { + $(this).parent().css('display', 'none'); + } + }); + } +}); diff --git a/libraries/Header.class.php b/libraries/Header.class.php index 637c75666f..d1592fd6fd 100644 --- a/libraries/Header.class.php +++ b/libraries/Header.class.php @@ -13,6 +13,8 @@ require_once 'libraries/Scripts.class.php'; require_once 'libraries/RecentTable.class.php'; require_once 'libraries/Menu.class.php'; require_once 'libraries/navigation/Navigation.class.php'; +require_once 'libraries/url_generating.lib.php'; + /** * Class used to output the HTTP and HTML headers diff --git a/libraries/Menu.class.php b/libraries/Menu.class.php index 201c0028cd..d954616f44 100644 --- a/libraries/Menu.class.php +++ b/libraries/Menu.class.php @@ -456,6 +456,16 @@ class PMA_Menu $tabs['status']['icon'] = 's_status.png'; $tabs['status']['link'] = 'server_status.php'; $tabs['status']['text'] = __('Status'); + $tabs['status']['active'] = in_array( + basename($GLOBALS['PMA_PHP_SELF']), + array( + 'server_status.php', + 'server_status_advisor.php', + 'server_status_monitor.php', + 'server_status_queries.php', + 'server_status_variables.php' + ) + ); if ($is_superuser && ! PMA_DRIZZLE) { $tabs['rights']['icon'] = 's_rights.png'; diff --git a/libraries/ServerStatusData.class.php b/libraries/ServerStatusData.class.php new file mode 100644 index 0000000000..ddcc9d54dd --- /dev/null +++ b/libraries/ServerStatusData.class.php @@ -0,0 +1,382 @@ +selfUrl = basename($GLOBALS['PMA_PHP_SELF']); + /** + * get status from server + */ + $server_status = PMA_DBI_fetch_result('SHOW GLOBAL STATUS', 0, 1); + if (PMA_DRIZZLE) { + // Drizzle doesn't put query statistics into variables, add it + $sql = "SELECT concat('Com_', variable_name), variable_value + FROM data_dictionary.GLOBAL_STATEMENTS"; + $statements = PMA_DBI_fetch_result($sql, 0, 1); + $server_status = array_merge($server_status, $statements); + } + + /** + * for some calculations we require also some server settings + */ + $server_variables = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES', 0, 1); + + /** + * cleanup of some deprecated values + */ + $server_status = self::cleanDeprecated($server_status); + + /** + * calculate some values + */ + // Key_buffer_fraction + if (isset($server_status['Key_blocks_unused']) + && isset($server_variables['key_cache_block_size']) + && isset($server_variables['key_buffer_size']) + ) { + $server_status['Key_buffer_fraction_%'] + = 100 + - $server_status['Key_blocks_unused'] + * $server_variables['key_cache_block_size'] + / $server_variables['key_buffer_size'] + * 100; + } elseif (isset($server_status['Key_blocks_used']) + && isset($server_variables['key_buffer_size'])) { + $server_status['Key_buffer_fraction_%'] + = $server_status['Key_blocks_used'] + * 1024 + / $server_variables['key_buffer_size']; + } + + // Ratio for key read/write + if (isset($server_status['Key_writes']) + && isset($server_status['Key_write_requests']) + && $server_status['Key_write_requests'] > 0 + ) { + $server_status['Key_write_ratio_%'] + = 100 * $server_status['Key_writes'] / $server_status['Key_write_requests']; + } + + if (isset($server_status['Key_reads']) + && isset($server_status['Key_read_requests']) + && $server_status['Key_read_requests'] > 0 + ) { + $server_status['Key_read_ratio_%'] + = 100 * $server_status['Key_reads'] / $server_status['Key_read_requests']; + } + + // Threads_cache_hitrate + if (isset($server_status['Threads_created']) + && isset($server_status['Connections']) + && $server_status['Connections'] > 0 + ) { + + $server_status['Threads_cache_hitrate_%'] + = 100 - $server_status['Threads_created'] + / $server_status['Connections'] * 100; + } + + /** + * split variables in sections + */ + $allocations = array( + // variable name => section + // variable names match when they begin with the given string + + 'Com_' => 'com', + 'Innodb_' => 'innodb', + 'Ndb_' => 'ndb', + 'Handler_' => 'handler', + 'Qcache_' => 'qcache', + 'Threads_' => 'threads', + 'Slow_launch_threads' => 'threads', + + 'Binlog_cache_' => 'binlog_cache', + 'Created_tmp_' => 'created_tmp', + 'Key_' => 'key', + + 'Delayed_' => 'delayed', + 'Not_flushed_delayed_rows' => 'delayed', + + 'Flush_commands' => 'query', + 'Last_query_cost' => 'query', + 'Slow_queries' => 'query', + 'Queries' => 'query', + 'Prepared_stmt_count' => 'query', + + 'Select_' => 'select', + 'Sort_' => 'sort', + + 'Open_tables' => 'table', + 'Opened_tables' => 'table', + 'Open_table_definitions' => 'table', + 'Opened_table_definitions' => 'table', + 'Table_locks_' => 'table', + + 'Rpl_status' => 'repl', + 'Slave_' => 'repl', + + 'Tc_' => 'tc', + + 'Ssl_' => 'ssl', + + 'Open_files' => 'files', + 'Open_streams' => 'files', + 'Opened_files' => 'files', + ); + + $sections = array( + // section => section name (description) + 'com' => 'Com', + 'query' => __('SQL query'), + 'innodb' => 'InnoDB', + 'ndb' => 'NDB', + 'handler' => __('Handler'), + 'qcache' => __('Query cache'), + 'threads' => __('Threads'), + 'binlog_cache' => __('Binary log'), + 'created_tmp' => __('Temporary data'), + 'delayed' => __('Delayed inserts'), + 'key' => __('Key cache'), + 'select' => __('Joins'), + 'repl' => __('Replication'), + 'sort' => __('Sorting'), + 'table' => __('Tables'), + 'tc' => __('Transaction coordinator'), + 'files' => __('Files'), + 'ssl' => 'SSL', + 'other' => __('Other') + ); + + /** + * define some needfull links/commands + */ + // variable or section name => (name => url) + $links = array(); + + $links['table'][__('Flush (close) all tables')] + = $this->selfUrl . '?flush=TABLES&' . PMA_generate_common_url(); + $links['table'][__('Show open tables')] + = 'sql.php?sql_query=' . urlencode('SHOW OPEN TABLES') . + '&goto=' . $this->selfUrl . '&' . PMA_generate_common_url(); + + if ($GLOBALS['server_master_status']) { + $links['repl'][__('Show slave hosts')] + = 'sql.php?sql_query=' . urlencode('SHOW SLAVE HOSTS') + . '&goto=' . $this->selfUrl . '&' + . PMA_generate_common_url(); + $links['repl'][__('Show master status')] = '#replication_master'; + } + if ($GLOBALS['server_slave_status']) { + $links['repl'][__('Show slave status')] = '#replication_slave'; + } + + $links['repl']['doc'] = 'replication'; + + $links['qcache'][__('Flush query cache')] + = $this->selfUrl . '?flush=' . urlencode('QUERY CACHE') . '&' . + PMA_generate_common_url(); + $links['qcache']['doc'] = 'query_cache'; + + //$links['threads'][__('Show processes')] + // = 'server_processlist.php?' . PMA_generate_common_url(); + $links['threads']['doc'] = 'mysql_threads'; + + $links['key']['doc'] = 'myisam_key_cache'; + + $links['binlog_cache']['doc'] = 'binary_log'; + + $links['Slow_queries']['doc'] = 'slow_query_log'; + + $links['innodb'][__('Variables')] + = 'server_engines.php?engine=InnoDB&' . PMA_generate_common_url(); + $links['innodb'][__('InnoDB Status')] + = 'server_engines.php?engine=InnoDB&page=Status&' . + PMA_generate_common_url(); + $links['innodb']['doc'] = 'innodb'; + + + // Variable to contain all com_ variables (query statistics) + $used_queries = array(); + + // Variable to map variable names to their respective section name + // (used for js category filtering) + $allocationMap = array(); + + // Variable to mark used sections + $categoryUsed = array(); + + // sort vars into arrays + foreach ($server_status as $name => $value) { + $section_found = false; + foreach ($allocations as $filter => $section) { + if (strpos($name, $filter) !== false) { + $allocationMap[$name] = $section; + $categoryUsed[$section] = true; + $section_found = true; + if ($section == 'com' && $value > 0) { + $used_queries[$name] = $value; + } + break; // Only exits inner loop + } + } + if (!$section_found) { + $allocationMap[$name] = 'other'; + $categoryUsed['other'] = true; + } + } + + if (PMA_DRIZZLE) { + $used_queries = PMA_DBI_fetch_result( + 'SELECT * FROM data_dictionary.global_statements', + 0, + 1 + ); + unset($used_queries['admin_commands']); + } else { + // admin commands are not queries (e.g. they include COM_PING, + // which is excluded from $server_status['Questions']) + unset($used_queries['Com_admin_commands']); + } + + // Set all class properties + $this->db_isLocal = false; + if (strtolower($GLOBALS['cfg']['Server']['host']) === 'localhost' + || $GLOBALS['cfg']['Server']['host'] === '127.0.0.1' + || $GLOBALS['cfg']['Server']['host'] === '::1' + ) { + $this->db_isLocal = true; + } + $this->status = $server_status; + $this->sections = $sections; + $this->variables = $server_variables; + $this->used_queries = $used_queries; + $this->allocationMap = $allocationMap; + $this->links = $links; + $this->categoryUsed = $categoryUsed; + } + + /** + * cleanup of some deprecated values + * + * @param array $server_status status array to process + * + * @return array + */ + public static function cleanDeprecated($server_status) + { + $deprecated = array( + 'Com_prepare_sql' => 'Com_stmt_prepare', + 'Com_execute_sql' => 'Com_stmt_execute', + 'Com_dealloc_sql' => 'Com_stmt_close', + ); + foreach ($deprecated as $old => $new) { + if (isset($server_status[$old]) && isset($server_status[$new])) { + unset($server_status[$old]); + } + } + return $server_status; + } + + /** + * cleanup of some deprecated values + * + * @return array + */ + public function getMenuHtml() + { + $url_params = PMA_generate_common_url(); + $items = array( + array( + 'name' => __('Server'), + 'url' => 'server_status.php' + ), + array( + 'name' => __('Query statistics'), + 'url' => 'server_status_queries.php' + ), + array( + 'name' => __('All status variables'), + 'url' => 'server_status_variables.php' + ), + array( + 'name' => __('Monitor'), + 'url' => 'server_status_monitor.php' + ), + array( + 'name' => __('Advisor'), + 'url' => 'server_status_advisor.php' + ) + ); + + $retval = '
    '; + foreach ($items as $item) { + $class = ''; + if ($item['url'] === $this->selfUrl) { + $class = ' class="tabactive"'; + } + $retval .= '
  • '; + $retval .= ''; + $retval .= $item['name']; + $retval .= ''; + $retval .= '
  • '; + } + $retval .= '
'; + $retval .= '
'; + + return $retval; + } +} + +?> diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt index 7d365244ea..426c6968ad 100644 --- a/libraries/advisory_rules.txt +++ b/libraries/advisory_rules.txt @@ -81,13 +81,20 @@ rule 'Long query time' [!PMA_DRIZZLE] 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. long_query_time is currently set to %ds. | value -rule 'Slow query logging' [!PMA_DRIZZLE] +rule 'Slow query logging' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION < 50600] log_slow_queries value == 'OFF' The slow query log is disabled. Enable slow query logging by setting {log_slow_queries} to 'ON'. This will help troubleshooting badly performing queries. log_slow_queries is set to 'OFF' +rule 'Slow query logging' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION >= 50600] + slow_query_log + value == 'OFF' + The slow query log is disabled. + Enable slow query logging by setting {slow_query_log} to 'ON'. This will help troubleshooting badly performing queries. + slow_query_log is set to 'OFF' + # # versions rule 'Release Series' [!PMA_DRIZZLE] @@ -419,7 +426,7 @@ rule 'Rate of aborted clients' # # InnoDB -rule 'Is InnoDB disabled?' [!PMA_DRIZZLE] +rule 'Is InnoDB disabled?' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION < 50600] have_innodb value != "YES" You do not have InnoDB enabled. diff --git a/libraries/common.inc.php b/libraries/common.inc.php index 856de8871a..3c06ee66cb 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -391,6 +391,10 @@ $goto_whitelist = array( 'server_processlist.php', 'server_sql.php', 'server_status.php', + 'server_status_advisor.php', + 'server_status_monitor.php', + 'server_status_queries.php', + 'server_status_variables.php', 'server_variables.php', 'sql.php', 'tbl_addfield.php', diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index 27ed87d8b9..981089e4fc 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -1071,15 +1071,15 @@ class PMA_NavigationTree $retval = ''; if ($node === $this->_tree) { $retval .= PMA_Util::getListNavigator( - $this->_tree->getPresence('databases', $this->_searchClause), - $this->_pos, - array('server' => $GLOBALS['server']), - 'navigation.php', - 'frame_navigation', - $GLOBALS['cfg']['MaxNavigationItems'], - 'pos', - array('dbselector') - ); + $this->_tree->getPresence('databases', $this->_searchClause), + $this->_pos, + array('server' => $GLOBALS['server']), + 'navigation.php', + 'frame_navigation', + $GLOBALS['cfg']['MaxNavigationItems'], + 'pos', + array('dbselector') + ); } else if ($node->type == Node::CONTAINER && ! $node->is_group) { $paths = $node->getPaths(); diff --git a/pmd_general.php b/pmd_general.php index ae2046c702..2a8bf47e21 100644 --- a/pmd_general.php +++ b/pmd_general.php @@ -142,7 +142,7 @@ echo '
'; src="getImgPath('pmd/toggle_lines.png'); ?>" /> - + key @@ -240,7 +240,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) { left: px; top: px; + echo isset($tab_pos[$t_n]) ? $tab_pos[$t_n]["Y"] : rand(20, 550); ?>px; visibility: getFooter()->setMinimal(); -$header = $response->getHeader(); -$header->disableMenu(); ?>
diff --git a/po/af.po b/po/af.po index 11363096ef..01e1710675 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: afrikaans \n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -43,7 +43,7 @@ msgstr "" msgid "Search" msgstr "Soek" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -73,21 +73,21 @@ msgstr "Soek" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Gaan" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -109,18 +109,18 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -134,14 +134,14 @@ msgstr "Tabel kommentaar" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -159,11 +159,11 @@ msgstr "Kolom name" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipe" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -175,11 +175,11 @@ msgstr "Tipe" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -190,11 +190,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Verstekwaarde (default)" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -203,7 +203,7 @@ msgstr "Verstekwaarde (default)" msgid "Links to" msgstr "Skakels na" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -216,7 +216,7 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -234,12 +234,12 @@ msgstr "Kommentaar" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nee" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -262,8 +262,8 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ja" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabel" @@ -340,7 +340,7 @@ msgstr "Grootte" msgid "in use" msgstr "in gebruik" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "in gebruik" msgid "Creation" msgstr "Skep" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "Skep" msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -412,7 +412,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databasis" @@ -420,18 +420,18 @@ msgstr "Databasis" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Skep" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "" @@ -446,7 +446,7 @@ msgstr "Aksie" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Wys" @@ -462,11 +462,11 @@ msgstr "" msgid "Drop" msgstr "Verwyder" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -475,11 +475,11 @@ msgstr "" msgid "Versions" msgstr "Operasies" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" @@ -552,48 +552,48 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy msgid "Add a point" msgstr "Voeg 'n nuwe veld by" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -603,17 +603,17 @@ msgstr "" msgid "Add a linestring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy msgid "Add a polygon" msgstr "Voeg 'n nuwe veld by" @@ -742,8 +742,9 @@ msgstr "Algemene verwantskap funksies" msgid "Database server" msgstr "databasisse" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -764,7 +765,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Gebruiker" @@ -1002,12 +1003,12 @@ msgstr "Geen Regte" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1017,17 +1018,17 @@ msgstr "" msgid "Edit" msgstr "Verander" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Bediener Keuse" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL-stelling" @@ -1039,14 +1040,15 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1061,51 +1063,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Bediener Keuse" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Ry Statistiek" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1113,209 +1078,214 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Space usage" msgid "Query cache efficiency" msgstr "Spasie verbruik" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Space usage" msgid "Query cache usage" msgstr "Spasie verbruik" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Space usage" msgid "Query cache used" msgstr "Spasie verbruik" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy msgid "Total memory" msgstr "totaal" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy msgid "Total Swap" msgstr "totaal" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabel(le)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Operasies" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy msgid "Remove chart" msgstr "Hernoem tabel na" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Geen" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1323,511 +1293,513 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Stoor as leer (file)" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Beskikbaar" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onbeskikbaar" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy msgid "Chart Title" msgstr "Geen tabelle" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Geen databasisse" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Geen databasisse" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Verduidelik SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy msgid "Total time:" msgstr "totaal" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL resultaat" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "Geen tabelle" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy msgid "Edit chart" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL-stelling" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Databasis statistieke" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy msgid "Total:" msgstr "totaal" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy msgid "Reload page" msgstr "Hernoem tabel na" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Verander Navraag" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentasie" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentasie" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy msgid "Renaming Databases" msgstr "Hernoem tabel na" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy msgid "Reload Database" msgstr "Hernoem tabel na" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy msgid "Copying Database" msgstr "Geen databasisse" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Gebruik Tabelle" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Indekse" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Wys ruitgebied" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Beskikbaar" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Onbeskikbaar" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Soek" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL-stelling" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL-stelling" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Beloer Data" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Verwyder" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Voeg 'n nuwe gebruiker by" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL-stelling" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL-stelling" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Verander" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1836,216 +1808,221 @@ msgstr "" msgid "Save" msgstr "Stoor" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Soek" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQL resultaat" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy msgid "Add columns" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Kolom name" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Vertoon rye" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Wys alles" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Indekse" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2053,30 +2030,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Geen databasisse" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2084,95 +2061,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mei" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2180,78 +2157,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Des" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2259,113 +2236,113 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "Records" msgid "Second" @@ -2417,16 +2394,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2452,7 +2429,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Dalend" @@ -2461,7 +2438,7 @@ msgstr "Dalend" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Dalend" @@ -2582,7 +2559,7 @@ msgstr "Stort data vir tabel" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Verwyder" @@ -2782,7 +2759,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Vermoor" @@ -2837,12 +2814,13 @@ msgstr "Kies Alles" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" @@ -2850,7 +2828,7 @@ msgstr "Export" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2934,16 +2912,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2957,21 +2935,21 @@ msgstr "Geen indeks gedefinieer!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indekse" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -2981,13 +2959,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Kommentaar" @@ -3031,7 +3009,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktuur" @@ -3104,37 +3082,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Gebruiker" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Biner" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3183,6 +3162,109 @@ msgstr "Geen tabelle" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-stelling" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Uitgebreide toevoegings" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +#, fuzzy +msgid "Tables" +msgstr "Tabel" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Velde" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Wys tabelle" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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 +#, fuzzy +msgid "Query statistics" +msgstr "Ry Statistiek" + +#: 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." @@ -3276,7 +3358,7 @@ msgstr "Operasies" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Waarde" @@ -3676,11 +3758,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-stelling" - #: libraries/Util.class.php:710 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:292 @@ -3715,7 +3792,7 @@ msgid "Create PHP Code" msgstr "Skep PHP Kode" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3811,14 +3888,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -#, fuzzy -msgid "Tables" -msgstr "Tabel" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3861,22 +3930,22 @@ msgstr "" msgid "Check Privileges" msgstr "Geen Regte" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3888,38 +3957,38 @@ msgstr "" "Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou " "konfigurasie leer!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6047,8 +6116,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" @@ -6696,10 +6765,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7362,18 +7427,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Verander tabel sorteer volgens" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7477,17 +7542,17 @@ msgid "Drop the database (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Slegs struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktuur en data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Slegs Data" @@ -7902,8 +7967,7 @@ msgstr "Vertoon Funksies" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Gasheer (host)" @@ -8426,7 +8490,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8971,7 +9035,7 @@ msgstr "Kenmerke" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9666,7 +9730,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10029,7 +10093,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10110,37 +10174,37 @@ msgstr "Tabel %s is verwyder" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Gebruik" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Skep 'n nuwe indeks" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Gebruiker naam" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10260,16 +10324,11 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Velde" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10354,7 +10413,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "PHP Version" @@ -10414,10 +10473,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10549,876 +10604,171 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:122 +msgid "Replication status" +msgstr "" + +#: server_status.php:139 +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:149 +msgid "Received" +msgstr "" + +#: server_status.php:168 +msgid "Sent" +msgstr "" + +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:253 +msgid "Aborted" +msgstr "" + +#: server_status.php:313 +msgid "ID" +msgstr "" + +#: server_status.php:329 #, fuzzy -msgid "Delayed inserts" -msgstr "Uitgebreide toevoegings" +msgid "Command" +msgstr "Kommentaar" -#: server_status.php:663 -msgid "Key cache" -msgstr "" - -#: server_status.php:664 -msgid "Joins" -msgstr "" - -#: server_status.php:666 -msgid "Sorting" -msgstr "" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Wys tabelle" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Hoeveelheid rye per bladsy" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Voortgebring deur" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Moenie die wagwoord verander nie" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Wys tabelle" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Wys tabelle" - -#: server_status.php:930 -#, fuzzy -msgid "Related links:" -msgstr "Operasies" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query" -msgid "Run analyzer" -msgstr "Navraag dmv Voorbeeld" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funksie" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Stellings" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -#, fuzzy -msgid "Command" -msgstr "Kommentaar" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Karakterstel van die leer:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sa" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "Voeg 'n nuwe veld by" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11427,7 +10777,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11435,18 +10785,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11454,11 +10804,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11466,89 +10816,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy msgid "Preset chart" msgstr "Hernoem tabel na" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Kies Tabelle" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Voeg 'n nuwe gebruiker by" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL-stelling" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Ry Statistiek" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Kies Alles" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11556,7 +10906,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekords" msgstr[1] "Rekords" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11564,6 +10914,620 @@ msgid_plural "%d minutes" msgstr[0] "in gebruik" msgstr[1] "in gebruik" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Stellings" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Moenie die wagwoord verander nie" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Wys tabelle" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Wys tabelle" + +#: server_status_variables.php:133 +#, fuzzy +msgid "Related links:" +msgstr "Operasies" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Limits the number of new connections the user may open per hour." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Karakterstel van die leer:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12138,147 +12102,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Navraag dmv Voorbeeld" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Geen databasisse" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Bediener weergawe" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" @@ -12419,12 +12383,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL-stelling" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -12438,128 +12402,138 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Kies Tabelle" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Bediener weergawe" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "PHP Version" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy msgid "Distribution" msgstr "geen Beskrywing" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL Karakterstel" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Space usage" msgid "Query cache disabled" msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Space usage" msgid "The query cache is not enabled." msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12567,23 +12541,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Space usage" msgid "Query caching method" msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Space usage" msgid "Suboptimal caching method." msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tabel(le)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12959,284 +12933,284 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "SQL-stelling" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "SQL-stelling" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "SQL-stelling" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "SQL-stelling" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Skep 'n nuwe bladsy" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Karakterstel van die leer:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Karakterstel van die leer:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Karakterstel van die leer:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Karakterstel van die leer:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Space usage" msgid "The thread cache is set to 0" msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Space usage" msgid "Thread cache hit rate %%" msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Space usage" msgid "Thread cache is not efficient." msgstr "Spasie verbruik" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy msgid "Percentage of used connections" msgstr "Tabel kommentaar" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy msgid "Percentage of aborted connections" msgstr "Tabel kommentaar" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13360,20 +13334,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13388,7 +13362,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13397,25 +13371,44 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Bediener Keuse" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Hoeveelheid rye per bladsy" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Voortgebring deur" + +#, fuzzy +#~| msgid "Query" +#~ msgid "Run analyzer" +#~ msgstr "Navraag dmv Voorbeeld" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ar.po b/po/ar.po index e56d036c66..bb5e57e23b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Arabic =11 ? 4 : 5;\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "إبحث" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "إبحث" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "إنطلق" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "اسم المفتاح" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "الوصف" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "تعليقات الجدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "عمود" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "عمود" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "نوع" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "خالي" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "خالي" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "إفتراضي" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "إفتراضي" msgid "Links to" msgstr "مرتبط بـ" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "تعليقات" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "لا" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "لا" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "نعم" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "الجدول" @@ -338,7 +338,7 @@ msgstr "الحجم" msgid "in use" msgstr "قيد الإستعمال" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "قيد الإستعمال" msgid "Creation" msgstr "الإنشاء" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "الإنشاء" msgid "Last update" msgstr "آخر تحديث" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -410,7 +410,7 @@ msgstr "الجداول المتعقبة" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "قاعدة البيانات" @@ -418,17 +418,17 @@ msgstr "قاعدة البيانات" msgid "Last version" msgstr "آخر إصدار" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "أنشئ" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "محدث" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "الحالة" @@ -443,7 +443,7 @@ msgstr "العملية" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "عرض" @@ -459,11 +459,11 @@ msgstr "حذف بيانات التتبع لهذا الجدول" msgid "Drop" msgstr "سقّط" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "نشط" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "غير نشط" @@ -471,11 +471,11 @@ msgstr "غير نشط" msgid "Versions" msgstr "الإصدارات" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "تقرير التتبع" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" @@ -541,45 +541,45 @@ msgstr "إستعمل خريطة الشوارع الحرة كطبقة أساسي msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "هندسة" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "ص" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "نقطة %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "إضافة نقطة" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "منحنى" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "الحلقة الخارجية" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "الحلقة الداخلية" @@ -587,15 +587,15 @@ msgstr "الحلقة الداخلية" msgid "Add a linestring" msgstr "إضافة منحنى" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "إضافة حلقة الداخلية" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "مضلع" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "إضافة مضلع" @@ -728,8 +728,9 @@ msgstr "المزايا العامّة للرابط" msgid "Database server" msgstr "قاعدة بيانات" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "خادم" @@ -750,7 +751,7 @@ msgstr "نسخة البروتوكول" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "المستخدم" @@ -980,12 +981,12 @@ msgstr "إعادة تحميل الإمتيازات" msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "أغلاق" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -995,15 +996,15 @@ msgstr "أغلاق" msgid "Edit" msgstr "تعديل" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "خريطة التتبع المباشر" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "خريطة conn./process المباشر" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "خريطة الإستعلام المباشر" @@ -1014,13 +1015,14 @@ msgstr "بيانات ثابتة" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "آخر" @@ -1035,48 +1037,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "كيلوبايت أرسلت منذ آخر تحديث" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "كيلوبايت أستقبلت منذ آخر تحديث" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "ترافيك الخادم (بالكيلو بايت)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "الإتصالات منذ آخر تحديث" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "عمليات" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "اتصالات / عمليات" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "العمليات منذ آخر تحديث" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "العمليات (الجمل المنفذة بواسطة الخادم)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "إحصائيات الإستعلام" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "فشل قراءة ملف الإعدادات" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1084,196 +1052,201 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "فعالية خابية المسائلة" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "إستعمال خابية المسائلة" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "خابية المسائلة المستعملة" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "إستخدام النظام للمعالج (CPU)" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "ذاكرة النظام" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "المقايدة النظامية" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "ميجابايت" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "كيلوبايت" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "متوسط التحميل" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "إجمالي الذاكرة" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "الذاكرة المؤقتة" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "الذاكرة الوسيطة" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "الذاكرة الحرة" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "الذاكرة المستخدمة" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "مجموع المقايدة" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "المقايدة في الخابية" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "المقايدة المستخدمة" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "المقايدة الحرّة" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "بايتات أُرسلت" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "اتصالات" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "عمليات" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "بايت" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "كيلوبايت" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "ميجابايت" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "إكسابايت" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d جدول/جداول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "العمليات" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "الإعدادات" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "حذف الرسم البياني" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "تحرير العناوين" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "أضف تخطيط إلى المشبكة" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "لا شيء" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "إستئناف المراقبة" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "إيقاف المراقبة" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "(general_log و slow_query_log) مفعلة." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log مفعل." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log مفعل." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "(general_log و slow_query_log) معطلة." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1281,42 +1254,42 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time محددة بـ %d ثانية." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "الإعدادات التالية سوف تفعل عند إعادة تشغيل السيرفر:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "تعيين log_output بـ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "تفعيل %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "تعطيل %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "تعيين long_query_time بـ %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1324,409 +1297,411 @@ msgstr "" "لاتستطيع تغير هذه المتغيرات , فضلاً سجل دخولك كمدير أو أتصل بمدير قاعدة " "البيانات." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "تغيير الإعدادات" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "عنوان الرسم البياني" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "الفارق" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "مقسوم على %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "سعرة" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "من السجل البطيء" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "من السجل العام" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "تحليل السجلات" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "تحميل وتحليل السجل . قد يستغرق بعض الوقت." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "ألغ الطلب" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "تم تحميل بيانات سجلّ الوقائع. الإستعلامات المنفذة في الفترة الزمنية هذه:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "قفز لجدول التسجيل" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "لايوجد بيانات" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "تمّ تحليل سجل الوقائع، و لكن لم توجد أي بيانات في إمتداد الزمن هذا." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "جاري التحليل…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "إشرح الخرج" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "وقت" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "مجموع الوقت:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "الجدول" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "الرسم البياني" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "حرّر الرسم البياني" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "التسلسل" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "خيارات مرشح جدول السجل" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "مرشح" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "ترشيح الإستعلامات بواسطة word/regexp :" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "مجموعة إستعلامات , تجاهل المتغيرات في جملة WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "مجموع الصفوف المدخلة:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "المجموع:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "تحميل السجلات" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "فشل تحديث المراقب" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "إعادة تحميل الصفحة" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "استيراد" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "تشكيل مراقب الواردات" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "الرجاء تحديد الملف الذي تريد استيراده" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "تحليل الإستعلام" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "نظام المرشد" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "الأداء المتوقع" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "قضايا" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "توصية" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "تفاصيل القواعد" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "المصادقة" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "المتغيرات المستعملة" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "إختبار" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "ألغاء" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "تحميل" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "معالجة الطلب" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "خطأ في معالجة الطلب" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr ".لا قواعد بيانات محددة" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "إزالة العمود" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "موافق" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "إضغط لإغلاق هذا الإشعار" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "أعادة تسمية قاعدة البيانات" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "أعادة تحميل قاعدة البيانات" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "نسخ قاعدة البيانات " -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "تغيير مجموعة المحارف" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "إدخال الجدول" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "إخفاء الفهارس" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "أظهار الفهارس" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "التحقق من المفتاح الخارجي:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(ممكن)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(معطل)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "بحث" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "إخفاء نتائج البحث" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "إظهار نتائج البحث" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "استعراض" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "حذف" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "القيم للعمود %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "القيم لعمود جديد" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "أدخل كل قيمة بحقل منفصل" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , فإنها سوف تتجمع في واحد" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "إخفاء صندوق الإستعلام" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "تغيير" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "وقت التنفيذ الأقصى" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1735,103 +1710,108 @@ msgstr "%d ليس رقم عمود صالح." msgid "Save" msgstr "حفظ" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "بحث" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "كل نقطة تمثل صف بيانات." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "أنقر زر الإسعادة للمقربة للرجوع إلى الحالة الأصلية." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "أنقر على نقطة من البيانات لمشاهدة و ربما تحرير سطر البيانات." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "يمكن تغيير قياس الرسم البياني من خلال سحبه على طول القرنة في أسفل اليمين." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "إختر عمودين" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "إختر عمودين مختلفين" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "نتائج الاستعلام" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "نسخ" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "إضافة أعمدة" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "إضافة خيار للعمود" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "إضغط escape لإلغاء التعديل" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1839,33 +1819,33 @@ msgstr "" "لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون " "حفظ البيانات الجديدة؟" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "إسحب لإعادة الترتيب" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "إضغط للترتيب" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1874,62 +1854,62 @@ msgid "" "content." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "ذهاب للرابط" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "أنسخ اسم العمود" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "شاهد سطر/أسطر البيانات" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "توليد" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "تغيير كلمة المرور" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "أكثر" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "عرض الكل" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "إخفاء الفهارس" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1939,266 +1919,266 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "محدثة" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "إنتهى" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "اليوم" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "يناير" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "فبراير" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "مارس" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "أبريل" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "مايو" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "يونيو" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "يوليو" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "أغسطس" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "سبتمبر" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "أكتوبر" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "نوفمبر" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "الأسبوع" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "الساعة" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "الثانية" @@ -2249,16 +2229,16 @@ msgstr "أحرف غير متوقعة على السطر %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "لكل ثانية" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "لكل دقيقة" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "لكل ساعة" @@ -2284,7 +2264,7 @@ msgstr "حجم الخط" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "تصاعديا" @@ -2293,7 +2273,7 @@ msgstr "تصاعديا" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "تنازليا" @@ -2417,7 +2397,7 @@ msgstr "حذف التشابهات لجدول %s ؟" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "حذف" @@ -2587,7 +2567,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "إبطال" @@ -2644,12 +2624,13 @@ msgstr "تحديد الكل" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" @@ -2657,7 +2638,7 @@ msgstr "تصدير" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2740,16 +2721,16 @@ msgstr "لايمكن قراءة الملف المرفوع." msgid "Open new phpMyAdmin window" msgstr "إفتح نافذة phpMyAdmin جديدة" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "يجب تفعيل Javascript بعد هذه النقطة" @@ -2761,21 +2742,21 @@ msgstr "لم يتم تعريف الفهرس!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "فهارس" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "فريد" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "محزم" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2785,13 +2766,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "تعليق" @@ -2834,7 +2815,7 @@ msgstr "عرض" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "بناء" @@ -2907,34 +2888,35 @@ msgstr "أحداث" msgid "Designer" msgstr "المصمم" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "المستخدمون" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "سجل ثنائي" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "إستنساخ" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "القوابس" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "محركات" @@ -2994,6 +2976,104 @@ msgstr "الجداول الأخيرة" msgid "There are no recent tables" msgstr "لا يوجد جداول أخيرة" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "استعلام SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "جداول" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "الملفات" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "وضع InnoDB" + +#: 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." @@ -3085,7 +3165,7 @@ msgstr "عامل التشغيل" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "القيمة" @@ -3470,11 +3550,6 @@ msgstr "" msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "استعلام SQL" - #: libraries/Util.class.php:710 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:292 @@ -3509,7 +3584,7 @@ msgid "Create PHP Code" msgstr "أنشئ كود PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "تحديث" @@ -3605,13 +3680,6 @@ msgstr "طباعة" msgid "shared" msgstr "مشترك" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "جداول" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3652,59 +3720,59 @@ msgstr "تحقق من الصلاحيات لقاعدة بيانات "%s" msgid "Check Privileges" msgstr "تحقق من الصلاحيات" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "يبدو أن هناك خطأ في بناء الجملة." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "لا يمكن تحميل الإعدادات الإفتراضية من : %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "اسلوب مصادقة غير صحيح في الإعدادات:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "إستغلال محتمل" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "الكشف عن مفتاح رقمي" @@ -5775,8 +5843,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "اسم المستخدم" @@ -6405,10 +6473,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "وضع InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7074,18 +7138,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "اسم الجدول" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7185,17 +7249,17 @@ msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "البنية فقط" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "البنية والبيانات" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "بيانات فقط" @@ -7616,8 +7680,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "المزود" @@ -8190,7 +8253,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "متغير" @@ -8775,7 +8838,7 @@ msgstr "الخواص" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "إضافي" @@ -9479,7 +9542,7 @@ msgstr "إضافة بادئة للجدول" msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "لا شيء" @@ -9848,7 +9911,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "الصينية التقليدية" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9930,39 +9993,39 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "صفحات" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "استورد الملفات" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "تصميم فهرسه جديده" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "اسم المستخدم" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10082,15 +10145,11 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "الملفات" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -10179,7 +10238,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "نسخة" @@ -10239,10 +10298,6 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10372,887 +10427,175 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:139 +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:666 -msgid "Sorting" +#: server_status.php:149 +msgid "Received" +msgstr "استلم" + +#: server_status.php:168 +msgid "Sent" +msgstr "أرسل" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "محاولات أخفقت" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "ألغي" -#: server_status.php:682 -msgid "Show open tables" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "رقم" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "أمر" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "بيانات التشغيل" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of tables" -msgid "Number of data points: " -msgstr "عدد الجداول" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "حدث" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -#| msgid "Filter" -msgid "Filters" -msgstr "مرشح" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "لاتغير كلمة السر" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show tables" -msgid "Show only alert values" -msgstr "شاهد الجدول" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show tables" -msgid "Show unformatted values" -msgstr "شاهد الجدول" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "الروابط" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "نوع الاستعلام" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy #| msgid "Actions" msgid "Instructions" msgstr "أفعال" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "تخصيص صفحة بدء التشغيل" - -#: server_status.php:1044 -msgid "Statements" -msgstr "أوامر" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "استلم" - -#: server_status.php:1208 -msgid "Sent" -msgstr "أرسل" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "محاولات أخفقت" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "ألغي" - -#: server_status.php:1322 -msgid "ID" -msgstr "رقم" - -#: server_status.php:1338 -msgid "Command" -msgstr "أمر" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "هيئة الملفات المستوردة" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "التتبع غير نشط." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ابدأ" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "إضافة حقل جديد" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "إستعادة القيمة الإفتراضية" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11261,7 +10604,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11269,18 +10612,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11288,11 +10631,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11300,93 +10643,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "حذف الرسم البياني" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "اختر الجداول" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "اسم الجدول غير صالح" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "أضف مستخدم جديد" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "إحصائيات" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "اختر الجداول" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "نوع الاستعلام" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11398,7 +10741,7 @@ msgstr[3] "الثانية" msgstr[4] "الثانية" msgstr[5] "الثانية" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11410,6 +10753,628 @@ msgstr[3] "الدقيقة" msgstr[4] "الدقيقة" msgstr[5] "الدقيقة" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "تخصيص صفحة بدء التشغيل" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "أوامر" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +#| msgid "Filter" +msgid "Filters" +msgstr "مرشح" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "لاتغير كلمة السر" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show tables" +msgid "Show only alert values" +msgstr "شاهد الجدول" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show tables" +msgid "Show unformatted values" +msgstr "شاهد الجدول" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "الروابط" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "هيئة الملفات المستوردة" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "التتبع غير نشط." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11986,150 +11951,150 @@ msgstr "قيود المفتاح الغريب" msgid "Tracking report for table `%s`" msgstr "تتبع التقرير للجدول %s" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "تم تنفيذ جمل SQL." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "خطأ في الإستعلام" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "يسمح بإضافة واستبدال البيانات." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "لايوجد بيانات" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "تاريخ" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "تنفيذ SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "تصدير كـ %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "عرض الإصدارات" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "تعطيل التتبع لـ %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "تعطيل الآن" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "تنشيط التتبع لـ %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "تنشيط الآن" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "تتبع تقارير تعريف البيانات:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "تتبع تقارير التلاعب بالبيانات:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "إنشاء إصدار" @@ -12273,13 +12238,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time محددة بـ %d ثانية." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "إظهار صندوق الإستعلام" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12297,133 +12262,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time محددة بـ %d ثانية." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time محددة بـ %d ثانية." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "اختر الجداول" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "إنشاء إصدار" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "نسخة" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "الوصف" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "شيفرة أحرف MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Space usage" msgid "Query cache disabled" msgstr "المساحة المستخدمة" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." msgstr "التتبع غير نشط." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12431,23 +12408,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Space usage" msgid "Query caching method" msgstr "المساحة المستخدمة" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Space usage" msgid "Suboptimal caching method." msgstr "المساحة المستخدمة" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s جدول (جداول)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12838,295 +12815,295 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "SQL queries" msgid "MyISAM key buffer size" msgstr "إستعلام SQL" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "SQL queries" msgid "Max %% MyISAM key buffer ever used" msgstr "إستعلام SQL" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "SQL queries" msgid "Percentage of MyISAM key buffer used" msgstr "إستعلام SQL" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "SQL queries" msgid "Percentage of index reads from memory" msgstr "إستعلام SQL" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "أنشئ الجدول" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "هيئة الملفات المستوردة" -#: libraries/advisory_rules.txt:324 +#: 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:325 -#, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used open files limit" -msgstr "هيئة الملفات المستوردة" - -#: libraries/advisory_rules.txt:330 -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:331 libraries/advisory_rules.txt:338 -msgid "" -"Consider increasing {open_files_limit}, and check the error log when " -"restarting after changing open_files_limit." -msgstr "" - #: libraries/advisory_rules.txt:332 #, php-format -msgid "" -"The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" -msgid "Rate of open files" +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 +#, fuzzy +#| msgid "Format of imported file" +msgid "Rate of open files" +msgstr "هيئة الملفات المستوردة" + +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "هيئة الملفات المستوردة" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "تكوين جدول جديد في قاعدة البيانات %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "التتبع غير نشط." -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "التتبع غير نشط." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "التتبع غير نشط." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "التتبع غير نشط." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time محددة بـ %d ثانية." -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13250,20 +13227,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13278,7 +13255,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13287,25 +13264,61 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "كيلوبايت أرسلت منذ آخر تحديث" + +#~ msgid "KiB received since last refresh" +#~ msgstr "كيلوبايت أستقبلت منذ آخر تحديث" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "ترافيك الخادم (بالكيلو بايت)" + +#~ msgid "Connections since last refresh" +#~ msgstr "الإتصالات منذ آخر تحديث" + +#~ msgid "Questions since last refresh" +#~ msgstr "العمليات منذ آخر تحديث" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "العمليات (الجمل المنفذة بواسطة الخادم)" + +#~ msgid "Runtime Information" +#~ msgstr "بيانات التشغيل" + +#, fuzzy +#~| msgid "Number of tables" +#~ msgid "Number of data points: " +#~ msgstr "عدد الجداول" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "حدث" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "نوع الاستعلام" + #~ msgid "Show more actions" #~ msgstr "عرض المزيد من العمليات" diff --git a/po/az.po b/po/az.po index c86e9bd3cf..5e8e7aa7c8 100644 --- a/po/az.po +++ b/po/az.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Azerbaijani " -"\n" -"Language: az\n" +"Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -44,7 +44,7 @@ msgstr "" msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -74,21 +74,21 @@ msgstr "Axtarış" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Davam" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Açar söz" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Haqqında" @@ -111,17 +111,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s bazası yaradildi." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,14 +135,14 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Sütun adları" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Başlanğıc deyeri" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Başlanğıc deyeri" msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Qısa İzahatlar" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Xeyir" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Xeyir" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Beli" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Cedvel" @@ -341,7 +341,7 @@ msgstr "Boy" msgid "in use" msgstr "istifadede" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "istifadede" msgid "Creation" msgstr "Quruluş" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "Quruluş" msgid "Last update" msgstr "En son yenilenme" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -413,7 +413,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Me'lumat Bazası" @@ -421,18 +421,18 @@ msgstr "Me'lumat Bazası" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Qur" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -447,7 +447,7 @@ msgstr "Fealiyyetler" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Göster" @@ -463,11 +463,11 @@ msgstr "" msgid "Drop" msgstr "Leğv et" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -476,11 +476,11 @@ msgstr "" msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" @@ -556,49 +556,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Yeni sahe elave et" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Setir leğvedicisi (Lines terminated by)" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -608,17 +608,17 @@ msgstr "" msgid "Add a linestring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy msgid "Add a polygon" msgstr "Yeni sahe elave et" @@ -747,8 +747,9 @@ msgstr "Ümumi elaqe variantları" msgid "Database server" msgstr "Me'lumat Bazaları" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -769,7 +770,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "İstifadeçi" @@ -1020,12 +1021,12 @@ msgstr "Qlobal selahiyyetler" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1035,17 +1036,17 @@ msgstr "" msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Quraşdırılmış Serverler" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL sorğusu" @@ -1057,13 +1058,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1078,53 +1080,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Quraşdırılmış Serverler" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Prosesler" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Elaqeler" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Sıra Statistikası" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1132,210 +1097,215 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Sorğu tipi" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "Sorğu tipi" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "Sorğu tipi" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Cemi" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Cemi" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Elaqeler" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prosesler" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bayt" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s cedvel" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Emeliyyatlar" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Neqliyyat" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy msgid "Remove chart" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Heç biri" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1343,520 +1313,522 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Fayl olaraq qeyd et" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Enabled" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Söndürülüb" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Import files" msgid "Chart Title" msgstr "Faylları import et" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Yerli" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-i İzah Et" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Müddet" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Cemi" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL result" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Cedvel" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Charset" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Yeni sahe elave et" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL sorğusu" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Cedvel başlığı" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Sehife başına düşen setir sayı" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Cemi" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Yerli" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy msgid "Reload page" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Sorğunu Yenile" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentasiya" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentasiya" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Yerli" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prosesler" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Müveffeqiyyetle" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy msgid "Renaming Databases" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy msgid "Reload Database" msgstr "Cedveli yeniden adlandır" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy msgid "Copying Database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Charset" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Use Tables" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Yeni sahe elave et" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Enabled" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Söndürülüb" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Axtarış" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL sorğusu" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL sorğusu" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "İçindekiler" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s silinir" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Sehife başına düşen setir sayı" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Yeni İstifadeçi elave Et" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL sorğusu" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL sorğusu" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Deyişdir" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1865,217 +1837,222 @@ msgstr "" msgid "Save" msgstr "Qeyd Et" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL sorğusu" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL sorğusu" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Axtarış" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQL result" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "İçindekiler Cedveli" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy msgid "Add columns" msgstr "Yeni sahe elave et" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Sütun adları" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Gösterilen setirler" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Qurucu" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Baz Ert" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Hamısını göster" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Yeni sahe elave et" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2083,30 +2060,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Evvelki" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2114,96 +2091,96 @@ msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "May" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2211,78 +2188,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dek" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2290,113 +2267,113 @@ msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2448,16 +2425,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "saniyede" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "deqiqede" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "saatda" @@ -2483,7 +2460,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Artan sırada" @@ -2492,7 +2469,7 @@ msgstr "Artan sırada" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Azalan sırada" @@ -2613,7 +2590,7 @@ msgstr "Sxemi çıxarılan cedvel" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Sil" @@ -2815,7 +2792,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Söndür" @@ -2870,12 +2847,13 @@ msgstr "Hamısını Seç" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" @@ -2883,7 +2861,7 @@ msgstr "Eksport" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2967,16 +2945,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2990,21 +2968,21 @@ msgstr "İndeks te'yin edilmedi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -3014,14 +2992,14 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy msgid "Collation" msgstr "Quruluş" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" @@ -3065,7 +3043,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Quruluş" @@ -3138,39 +3116,40 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "İstifadeçi" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Binary" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 #, fuzzy msgid "Replication" msgstr "Relations" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Deyişenler" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 #, fuzzy msgid "Charsets" msgstr "Charset" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motorlar" @@ -3221,6 +3200,109 @@ msgstr "Cedvel yoxdur" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL sorğusu" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Sorğu tipi" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Genişletilmiş girişli" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Cedveller" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Sahe sayı" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Cedvelleri göster" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Status" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +msgid "Query statistics" +msgstr "Sıra Statistikası" + +#: 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." @@ -3314,7 +3396,7 @@ msgstr "Emeliyyatlar" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Deyer" @@ -3715,11 +3797,6 @@ msgstr "" msgid "Max: %s%s" msgstr "En çox: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL sorğusu" - #: libraries/Util.class.php:710 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:292 @@ -3754,7 +3831,7 @@ msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3855,13 +3932,6 @@ msgstr "Çap et" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Cedveller" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3904,22 +3974,22 @@ msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." msgid "Check Privileges" msgstr "Selahiyyetleri Gözden Keçir" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3931,38 +4001,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda " "QURULMAMIŞDIR!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6126,8 +6196,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" @@ -6784,10 +6854,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7458,18 +7524,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7574,17 +7640,17 @@ msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Sadece quruluş" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Quruluş ve me'lumat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Sadece me'lumat" @@ -8013,8 +8079,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8591,7 +8656,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Deyişen" @@ -9147,7 +9212,7 @@ msgstr "Xüsusiyyetler" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Elave Xüs." @@ -9848,7 +9913,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10223,7 +10288,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Enenevi Çin Dili" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10304,39 +10369,39 @@ msgstr "%s cedveli leğv edildi" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Miqdar" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Faylları import et" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yeni indeks qur" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İstifadeçi adı" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10458,16 +10523,11 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Sahe sayı" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -10552,7 +10612,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "PHP Versiyası" @@ -10613,10 +10673,6 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10748,12 +10804,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10761,869 +10817,161 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Sorğu tipi" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Genişletilmiş girişli" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Alındı" + +#: server_status.php:168 +msgid "Sent" +msgstr "Gönderildi" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Cedvelleri göster" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Uğursuz Cehdler" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Dayandırılmış Elaqeler" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "Nömre" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Komanda Tipi" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Runtime Me'lumatı" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Sehife başına düşen setir sayı" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Qurucu" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Parolu deyişdirme" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Cedvelleri göster" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Cedvelleri göster" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relations" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Sorğu tipi" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funksiya" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Variantlar" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Alındı" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Gönderildi" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Uğursuz Cehdler" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Dayandırılmış Elaqeler" - -#: server_status.php:1322 -msgid "ID" -msgstr "Nömre" - -#: server_status.php:1338 -msgid "Command" -msgstr "Komanda Tipi" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Faylın Charset-i:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Sorğu tipi" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şen" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Yeni sahe elave et" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11632,7 +10980,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11640,18 +10988,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11659,11 +11007,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11671,89 +11019,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy msgid "Preset chart" msgstr "Cedveli yeniden adlandır" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Yeni İstifadeçi elave Et" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL sorğusu" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Sıra Statistikası" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Hamısını Seç" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Sorğu tipi" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11761,7 +11109,7 @@ msgid_plural "%d seconds" msgstr[0] "saniyede" msgstr[1] "saniyede" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11769,6 +11117,622 @@ msgid_plural "%d minutes" msgstr[0] "istifadede" msgstr[1] "istifadede" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Variantlar" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Parolu deyişdirme" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Cedvelleri göster" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Cedvelleri göster" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Limits the number of new connections the user may open per hour." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Faylın Charset-i:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Sorğu tipi" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12344,149 +12308,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Sorğu tipi" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Me'lumat" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server versiyası" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Server versiyası" @@ -12629,12 +12593,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL sorğusu" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy msgid "The slow query log is disabled." msgstr "Sorğu tipi" @@ -12649,127 +12613,137 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Select Tables" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Server versiyası" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "PHP Versiyası" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Haqqında" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL charset" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy msgid "The query cache is not enabled." msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12777,21 +12751,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s cedvel" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13174,300 +13148,300 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Yeni Sehife qur" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Faylın Charset-i:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Faylın Charset-i:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Faylın Charset-i:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Faylın Charset-i:" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s bazasında yeni cedvel qur" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sıralama buferinin (keçici yaddaşının) boyu" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sıralama buferinin (keçici yaddaşının) boyu" + +#: libraries/advisory_rules.txt:362 #, fuzzy msgid "Thread cache" msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy msgid "Thread cache is not efficient." msgstr "Sorğu tipi" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Elaqeler" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Elaqeler" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Keçici cedveller qurmağa icaze verir." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy msgid "Max InnoDB log size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13599,22 +13573,22 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy msgid "InnoDB buffer pool size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy msgid "Your InnoDB buffer pool is fairly small." msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13629,7 +13603,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13638,25 +13612,47 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Quraşdırılmış Serverler" + +#~ msgid "Runtime Information" +#~ msgstr "Runtime Me'lumatı" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Sehife başına düşen setir sayı" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Qurucu" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Sorğu tipi" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/be.po b/po/be.po index 68b27cd285..7bccaf3565 100644 --- a/po/be.po +++ b/po/be.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Belarusian " -"\n" -"Language: be\n" +"Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: be\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Пошук" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Панеслася" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Імя ключа" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Апісаньне" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,14 +137,14 @@ msgstr "Камэнтар да табліцы" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Назвы калёнак" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тып" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Тып" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Нуль" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Па змоўчаньні" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Па змоўчаньні" msgid "Links to" msgstr "Зьвязаная з" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Камэнтары" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Так" @@ -324,7 +324,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Табліца" @@ -344,7 +344,7 @@ msgstr "Памер" msgid "in use" msgstr "выкарыстоўваецца" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -352,7 +352,7 @@ msgstr "выкарыстоўваецца" msgid "Creation" msgstr "Створаная" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -360,7 +360,7 @@ msgstr "Створаная" msgid "Last update" msgstr "Апошняе абнаўленьне" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -417,7 +417,7 @@ msgstr "Праверыць табліцу" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "База дадзеных" @@ -426,18 +426,18 @@ msgstr "База дадзеных" msgid "Last version" msgstr "Стварыць сувязь" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Стварыць" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Стан" @@ -452,7 +452,7 @@ msgstr "Дзеяньне" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Паказаць" @@ -468,11 +468,11 @@ msgstr "" msgid "Drop" msgstr "Выдаліць" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -481,11 +481,11 @@ msgstr "" msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" @@ -561,49 +561,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Дадаць новае поле" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -613,17 +613,17 @@ msgstr "" msgid "Add a linestring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -773,8 +773,9 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Database server" msgstr "База дадзеных для карыстальніка" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сэрвэр" @@ -795,7 +796,7 @@ msgstr "Вэрсія пратаколу" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Карыстальнік" @@ -1057,12 +1058,12 @@ msgstr "Перазагрузіць прывілеі" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1072,17 +1073,17 @@ msgstr "" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Выбар сэрвэра" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL-запыт" @@ -1094,13 +1095,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1115,55 +1117,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Выбар сэрвэра" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Працэсы" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Падлучэньні" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Статыстыка радку" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1171,220 +1136,225 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Кэш запытаў" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Кэш запытаў" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Кэш запытаў" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МіБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КiБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Колькасьць файлаў логу" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Пул буфэру" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Агулам" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Вольных старонак" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Падлучэньні" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Працэсы" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Б" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КiБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МіБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЭіБ" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табліц(ы)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Зьвяць зь сеткай" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Няма" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1392,534 +1362,536 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Захаваць як файл" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Уключана" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Адключана" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Загаловак справаздачы" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Лякальны" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Запыты чытаньня" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Прааналізаваць" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Тлумачыць SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Час" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Агулам" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Прафіляваньне" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табліца" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кадыроўка" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Дадаць новае поле" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL-запыт" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Налады экспарту базы дадзеных" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "Файлы" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "Колькасьць адсартаваных радкоў." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Агулам" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Лякальны" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Абнавіць" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Абнавіць запыт" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Дакумэнтацыя" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Падрабязьней..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy msgid "Justification" msgstr "Аўтэнтыфікацыя..." -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Лякальны" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Працэсы" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кадыроўка" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Табліца мусіць мець прынамсі адно поле." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Выкарыстоўваць табліцы" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Дадаць новае поле" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Паказаць сетку" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Адключыць праверку зьнешніх ключоў" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Уключана" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Адключана" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пошук" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL-запыт" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL-запыт" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Прагляд" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Колькасьць палёў" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Зьмяніць" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1928,220 +1900,225 @@ msgstr "%d не зьяўляецца карэктным нумарам радк msgid "Save" msgstr "Захаваць" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Пошук" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Дзеяньні з вынікамі запытаў" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Скапіяваць" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Дадаць %s новыя палі" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Назвы калёнак" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Паказаныя запісы" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Паказаць усе" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Дадаць новае поле" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2149,30 +2126,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2180,96 +2157,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Тра" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2277,78 +2254,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Сьн" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2356,115 +2333,115 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2517,16 +2494,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "у сэкунду" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "у хвіліну" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "у гадзіну" @@ -2552,7 +2529,7 @@ msgstr "Памер шрыфта" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "прамы" @@ -2561,7 +2538,7 @@ msgstr "прамы" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "адваротны" @@ -2682,7 +2659,7 @@ msgstr "Дамп дадзеных табліцы" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Выдаліць" @@ -2884,7 +2861,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Спыніць" @@ -2941,12 +2918,13 @@ msgstr "Адзначыць усё" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" @@ -2954,7 +2932,7 @@ msgstr "Экспарт" msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3044,16 +3022,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3067,21 +3045,21 @@ msgstr "Індэкс ня вызначаны!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" @@ -3091,13 +3069,13 @@ msgstr "Колькасьць элемэнтаў" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Супастаўленьне" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Камэнтар" @@ -3142,7 +3120,7 @@ msgstr "Выгляд" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -3215,36 +3193,37 @@ msgstr "Падзеі" msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Карыстальнік" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Двайковы лог" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Рэплікацыя" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Машыны" @@ -3301,6 +3280,106 @@ msgstr "Няма табліц" msgid "There are no recent tables" msgstr "Праверыць табліцу" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-запыт" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Апрацоўнік" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Кэш запытаў" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Патокі" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Часовыя дадзеныя" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Адкладзеныя ўстаўкі" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Кэш ключоў" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Аб'яднаньні" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Сартаваньне" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Табліц" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Каардынатар перакладу" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файлы" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Скінуць (закрыць) усе табліцы" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Паказаць адкрытыя табліцы" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Паказаць залежныя сэрвэры" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Паказаць стан залежных сэрвэраў" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Паказаць стан залежных сэрвэраў" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Скінуць кэш запытаў" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Стан InnoDB" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +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." @@ -3399,7 +3478,7 @@ msgstr "Апэратар" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Значэньне" @@ -3803,11 +3882,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-запыт" - #: libraries/Util.class.php:710 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:292 @@ -3842,7 +3916,7 @@ msgid "Create PHP Code" msgstr "Стварыць PHP-код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Абнавіць" @@ -3944,13 +4018,6 @@ msgstr "Друк" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Табліц" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3994,25 +4061,25 @@ msgstr "Праверыць прывілеі для базы "%s"." msgid "Check Privileges" msgstr "Праверыць прывілеі" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4024,40 +4091,40 @@ msgstr "" "Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў " "вашым канфігурацыйным файле!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6258,8 +6325,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" @@ -6959,10 +7026,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Стан InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Выкарыстаньне пулу буфэру" @@ -7675,18 +7738,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "імя табліцы" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7791,17 +7854,17 @@ msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Толькі структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структуру і дадзеныя" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Толькі дадзеныя" @@ -8235,8 +8298,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -8857,7 +8919,7 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Зьменная" @@ -9437,7 +9499,7 @@ msgstr "Атрыбуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Дадаткова" @@ -10164,7 +10226,7 @@ msgstr "Базы дадзеных адсутнічаюць" msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10544,7 +10606,7 @@ msgid "Toggle relation lines" msgstr "" "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" @@ -10626,41 +10688,41 @@ msgstr "Табліца %1$s створаная." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "старонак" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпартаваць файлы" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Маштаб" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Стварыць новы індэкс" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Імя карыстальніка" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Маштаб" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "рэкамэндаваны" @@ -10782,15 +10844,11 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файлы" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -10875,7 +10933,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" @@ -10936,11 +10994,6 @@ msgstr "Прывілеі былі пасьпяхова перазагружан msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Паказаць стан залежных сэрвэраў" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -11073,224 +11126,54 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status.php:657 -msgid "Handler" -msgstr "Апрацоўнік" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Кэш запытаў" - -#: server_status.php:659 -msgid "Threads" -msgstr "Патокі" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Часовыя дадзеныя" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Адкладзеныя ўстаўкі" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Кэш ключоў" - -#: server_status.php:664 -msgid "Joins" -msgstr "Аб'яднаньні" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Сартаваньне" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Каардынатар перакладу" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Скінуць (закрыць) усе табліцы" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Паказаць адкрытыя табліцы" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Паказаць залежныя сэрвэры" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Паказаць стан залежных сэрвэраў" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Скінуць кэш запытаў" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Бягучая інфармацыя" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Колькасьць палёў" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Абнавіць" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Файлы" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Не зьмяняць пароль" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Паказаць адкрытыя табліцы" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Паказаць адкрытыя табліцы" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Сувязі" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Тып запыту" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Функцыі" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Выразы" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11298,47 +11181,329 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Атрымана" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Спынена" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Каманда" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Функцыі" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Суб" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Дадаць новае поле" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Абнавіць" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Перайменаваць базу дадзеных у" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Выберыце табліцу(ы)" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Некарэктнае імя табліцы" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +msgid "Add this series" +msgstr "Дадаць новага карыстальніка" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-запыт" + +#: server_status_monitor.php:677 +#, fuzzy +msgid "Log statistics" +msgstr "Статыстыка радку" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Выбраць усё" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Тып запыту" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у сэкунду" +msgstr[1] "у сэкунду" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "выкарыстоўваецца" +msgstr[1] "выкарыстоўваецца" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Выразы" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Файлы" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Не зьмяняць пароль" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Паказаць адкрытыя табліцы" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Паказаць адкрытыя табліцы" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Сувязі" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11348,17 +11513,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11370,11 +11535,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11382,7 +11547,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11390,7 +11555,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11399,23 +11564,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11425,7 +11590,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11436,7 +11601,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11444,7 +11609,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11454,7 +11619,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11462,7 +11627,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11474,7 +11639,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11486,37 +11651,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11526,7 +11691,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11539,11 +11704,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11552,7 +11717,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11560,11 +11725,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11572,7 +11737,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11586,55 +11751,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11642,35 +11807,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11678,55 +11843,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11734,7 +11899,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11742,7 +11907,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11752,17 +11917,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11772,26 +11937,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11802,17 +11967,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11820,39 +11985,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11865,7 +12030,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11873,19 +12038,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11893,13 +12058,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11908,7 +12073,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11916,17 +12081,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11934,13 +12099,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11948,14 +12113,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11965,25 +12130,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11995,7 +12160,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -12005,11 +12170,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -12021,218 +12186,16 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Суб" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Дадаць новае поле" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Абнавіць" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Дадаць/выдаліць калёнку крытэру" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Перайменаваць базу дадзеных у" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Выберыце табліцу(ы)" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Некарэктнае імя табліцы" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -msgid "Add this series" -msgstr "Дадаць новага карыстальніка" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-запыт" - -#: server_status.php:1964 -#, fuzzy -msgid "Log statistics" -msgstr "Статыстыка радку" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Выбраць усё" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Тып запыту" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у сэкунду" -msgstr[1] "у сэкунду" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "выкарыстоўваецца" -msgstr[1] "выкарыстоўваецца" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12820,149 +12783,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Тып запыту" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базы дадзеных адсутнічаюць" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Стварыць сувязь" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" @@ -13106,12 +13069,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL-запыт" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13127,131 +13090,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Выберыце табліцу(ы)" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Стварыць сувязь" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Пэрсыдзкая" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Апісаньне" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Кадыроўка MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Кэш запытаў" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Сэрвэр не адказвае" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13259,23 +13232,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Кэш запытаў" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Кэш запытаў" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s табліц(ы)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13671,267 +13644,267 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Паказаць поўныя запыты" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Стварыць табліцу" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Фармат імпартаванага файла" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Фармат імпартаванага файла" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Памер буфэру сартаваньня" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Памер буфэру сартаваньня" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Кэш ключоў" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Кэш ключоў" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Кэш ключоў" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Сэрвэр не адказвае" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Памер буфэру сартаваньня" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13939,49 +13912,49 @@ msgid "" "launch" msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "максымум адначасовых злучэньняў" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "максымум адначасовых злучэньняў" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Дазваляе ствараць часовыя табліцы." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14096,17 +14069,17 @@ msgid "" "it should not be below 20%%" msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Памер пулу буфэру" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14120,24 +14093,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Памер пулу буфэру" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Памер пулу буфэру" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14152,7 +14125,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14161,31 +14134,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "максымум адначасовых злучэньняў" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "максымум адначасовых злучэньняў" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Выбар сэрвэра" + +#~ msgid "Runtime Information" +#~ msgstr "Бягучая інфармацыя" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Колькасьць палёў" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Абнавіць" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Тып запыту" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/be@latin.po b/po/be@latin.po index 100a42e88b..e22048cef1 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Belarusian (latin) " -"\n" -"Language: be@latin\n" +"Language-Team: Belarusian (latin) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: be@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Pošuk" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Paniesłasia" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Imia kluča" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Apisańnie" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,14 +137,14 @@ msgstr "Kamentar da tablicy" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Nazvy kalonak" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Pa zmoŭčańni" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Pa zmoŭčańni" msgid "Links to" msgstr "Źviazanaja z" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Kamentary" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Tak" @@ -324,7 +324,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tablica" @@ -344,7 +344,7 @@ msgstr "Pamier" msgid "in use" msgstr "vykarystoŭvajecca" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -352,7 +352,7 @@ msgstr "vykarystoŭvajecca" msgid "Creation" msgstr "Stvoranaja" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -360,7 +360,7 @@ msgstr "Stvoranaja" msgid "Last update" msgstr "Apošniaje abnaŭleńnie" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -417,7 +417,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza dadzienych" @@ -425,17 +425,17 @@ msgstr "Baza dadzienych" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stan" @@ -450,7 +450,7 @@ msgstr "Dziejańnie" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Pakazać" @@ -466,11 +466,11 @@ msgstr "" msgid "Drop" msgstr "Vydalić" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -556,49 +556,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dadać novaje pole" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -608,15 +608,15 @@ msgstr "" msgid "Add a linestring" msgstr "Dadać abmiežavańni" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -767,8 +767,9 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Database server" msgstr "Baza dadzienych dla karystalnika" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -789,7 +790,7 @@ msgstr "Versija pratakołu" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Karystalnik" @@ -1053,12 +1054,12 @@ msgstr "Pierazahruzić pryvilei" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1068,17 +1069,17 @@ msgstr "" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Vybar servera" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1091,13 +1092,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1112,56 +1114,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Vybar servera" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Pracesy" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Padłučeńni" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Statystyka bazaŭ dadzienych" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1169,221 +1133,226 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Keš zapytaŭ" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Keš zapytaŭ" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Keš zapytaŭ" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Kolkaść fajłaŭ łogu" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Puł buferu" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Ahułam" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Volnych staronak" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Padłučeńni" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Pracesy" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablic(y)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Źviać ź sietkaj" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nijakaja" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1391,544 +1360,546 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Zachavać jak fajł" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Uklučana" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Adklučana" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Zahałovak spravazdačy" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Zapyty čytańnia" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Praanalizavać" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Tłumačyć SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Čas" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ahułam" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Prafilavańnie" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Kadyroŭka" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Dadać novaje pole" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Select Tables" msgid "Series" msgstr "Vybierycie tablicu(y)" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcyi tablicy" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Kolkaść paloŭ" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ahułam" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Abnavić" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Abnavić zapyt" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dakumentacyja" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Padrabiaźniej..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Aŭtentyfikacyja..." -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Pracesy" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kadyroŭka" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tablica musić mieć prynamsi adno pole." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Vykarystoŭvać tablicy" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Dadać novaje pole" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Pakazać sietku" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Uklučana" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Adklučana" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pošuk" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "pa zapytu" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Prahlad" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Kolkaść paloŭ" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Dadać novaha karystalnika" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Źmianić" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1937,221 +1908,226 @@ msgstr "%d nie źjaŭlajecca karektnym numaram radka." msgid "Save" msgstr "Zachavać" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Pošuk" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dadać/vydalić kalonku kryteru" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Dziejańni z vynikami zapytaŭ" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Skapijavać" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dadać %s novyja pali" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Nazvy kalonak" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Pakazanyja zapisy" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Pakazać usie" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Dadać novaje pole" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2159,31 +2135,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2191,96 +2167,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Tra" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2288,78 +2264,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Śn" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2367,115 +2343,115 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2528,16 +2504,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "u sekundu" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "u chvilinu" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "u hadzinu" @@ -2563,7 +2539,7 @@ msgstr "Pamier šryfta" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "pramy" @@ -2572,7 +2548,7 @@ msgstr "pramy" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "advarotny" @@ -2695,7 +2671,7 @@ msgstr "Damp dadzienych tablicy" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Vydalić" @@ -2894,7 +2870,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Spynić" @@ -2951,12 +2927,13 @@ msgstr "Adznačyć usio" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" @@ -2964,7 +2941,7 @@ msgstr "Ekspart" msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3055,16 +3032,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3078,21 +3055,21 @@ msgstr "Indeks nia vyznačany!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kolkaść elementaŭ" @@ -3102,13 +3079,13 @@ msgstr "Kolkaść elementaŭ" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Supastaŭleńnie" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kamentar" @@ -3153,7 +3130,7 @@ msgstr "Vyhlad" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -3226,36 +3203,37 @@ msgstr "Padziei" msgid "Designer" msgstr "Dyzajner" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Karystalnik" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Dvajkovy łog" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikacyja" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Źmiennyja" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Mašyny" @@ -3312,6 +3290,107 @@ msgstr "Vybierycie tablicu(y)" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-zapyt" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Apracoŭnik" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Keš zapytaŭ" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Patoki" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Časovyja dadzienyja" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Adkładzienyja ŭstaŭki" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Keš klučoŭ" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Ab'jadnańni" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sartavańnie" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tablic" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Kaardynatar pierakładu" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Fajły" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Skinuć (zakryć) usie tablicy" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Pakazać adkrytyja tablicy" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Pakazać zaležnyja servery" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Pakazać stan zaležnych serveraŭ" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Pakazać stan zaležnych serveraŭ" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Skinuć keš zapytaŭ" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stan InnoDB" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Databases statistics" +msgid "Query statistics" +msgstr "Statystyka bazaŭ dadzienych" + +#: 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." @@ -3410,7 +3489,7 @@ msgstr "Aperatar" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Značeńnie" @@ -3815,11 +3894,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-zapyt" - #: libraries/Util.class.php:710 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:292 @@ -3854,7 +3928,7 @@ msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Abnavić" @@ -3957,13 +4031,6 @@ msgstr "Druk" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tablic" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -4008,25 +4075,25 @@ msgstr "Pravieryć pryvilei dla bazy \"%s\"." msgid "Check Privileges" msgstr "Pravieryć pryvilei" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4038,41 +4105,41 @@ msgstr "" "Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym " "kanfihuracyjnym fajle!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6239,8 +6306,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6947,10 +7014,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stan InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Vykarystańnie pułu buferu" @@ -7667,18 +7730,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "imia tablicy" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7784,17 +7847,17 @@ msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Tolki strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Strukturu i dadzienyja" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Tolki dadzienyja" @@ -8231,8 +8294,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Chost" @@ -8853,7 +8915,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Źmiennaja" @@ -9435,7 +9497,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dadatkova" @@ -10162,7 +10224,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10542,7 +10604,7 @@ msgid "Toggle relation lines" msgstr "" "Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" @@ -10624,41 +10686,41 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "staronak" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impartavać fajły" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Maštab" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Stvaryć novy indeks" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Imia karystalnika" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Maštab" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "rekamendavany" @@ -10780,15 +10842,11 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Fajły" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -10874,7 +10932,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10934,11 +10992,6 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Pakazać stan zaležnych serveraŭ" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -11068,222 +11121,53 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status.php:657 -msgid "Handler" -msgstr "Apracoŭnik" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Keš zapytaŭ" - -#: server_status.php:659 -msgid "Threads" -msgstr "Patoki" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Časovyja dadzienyja" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Adkładzienyja ŭstaŭki" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Keš klučoŭ" - -#: server_status.php:664 -msgid "Joins" -msgstr "Ab'jadnańni" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Sartavańnie" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Kaardynatar pierakładu" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Skinuć (zakryć) usie tablicy" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Pakazać adkrytyja tablicy" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Pakazać zaležnyja servery" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Pakazać stan zaležnych serveraŭ" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Skinuć keš zapytaŭ" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Biahučaja infarmacyja" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Kolkaść paloŭ" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Abnavić" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Nie źmianiać parol" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Pakazać adkrytyja tablicy" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Pakazać adkrytyja tablicy" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Suviazi" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Typ zapytu" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Funkcyi" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Vyrazy" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11291,47 +11175,329 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Atrymana" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Kamanda" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Funkcyi" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +msgid "Start Monitor" +msgstr "" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Dadać novaje pole" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Abnavić" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dadać/vydalić kalonku kryteru" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Pierajmienavać bazu dadzienych u" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Vybierycie tablicu(y)" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Niekarektnaje imia tablicy" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Dadać novaha karystalnika" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Statystyka radku" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Vybrać usio" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Typ zapytu" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundu" +msgstr[1] "u sekundu" +msgstr[2] "u sekundu" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "vykarystoŭvajecca" +msgstr[1] "vykarystoŭvajecca" +msgstr[2] "vykarystoŭvajecca" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Vyrazy" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nie źmianiać parol" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Pakazać adkrytyja tablicy" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Pakazać adkrytyja tablicy" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Suviazi" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11341,17 +11507,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11363,11 +11529,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11375,7 +11541,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11383,7 +11549,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11392,23 +11558,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11418,7 +11584,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11429,7 +11595,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11438,7 +11604,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11448,7 +11614,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11456,7 +11622,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11469,7 +11635,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11481,37 +11647,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11521,7 +11687,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11534,11 +11700,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11547,7 +11713,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11555,11 +11721,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11567,7 +11733,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11581,55 +11747,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11637,35 +11803,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11674,54 +11840,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11729,7 +11895,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11737,7 +11903,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11747,17 +11913,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11767,26 +11933,26 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11797,17 +11963,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11815,39 +11981,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11860,7 +12026,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11868,19 +12034,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11888,13 +12054,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11903,7 +12069,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11911,17 +12077,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11929,13 +12095,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11943,14 +12109,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11960,25 +12126,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11990,7 +12156,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -12000,11 +12166,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -12016,219 +12182,16 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Dadać novaje pole" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Abnavić" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dadać/vydalić kalonku kryteru" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Pierajmienavać bazu dadzienych u" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Vybierycie tablicu(y)" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Niekarektnaje imia tablicy" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Dadać novaha karystalnika" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Statystyka radku" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Vybrać usio" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Typ zapytu" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "u sekundu" -msgstr[1] "u sekundu" -msgstr[2] "u sekundu" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "vykarystoŭvajecca" -msgstr[1] "vykarystoŭvajecca" -msgstr[2] "vykarystoŭvajecca" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12808,149 +12771,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Typ zapytu" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Bazy dadzienych adsutničajuć" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -13095,13 +13058,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Showing SQL query" msgid "Slow query logging" msgstr "U vyhladzie SQL-zapytu" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13117,133 +13080,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Vybierycie tablicu(y)" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "General relation features" msgid "Current version: %s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "PHP Version" msgid "Minor Version" msgstr "Versija PHP" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Apisańnie" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Kadyroŭka MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Keš zapytaŭ" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Server nie adkazvaje" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13251,23 +13224,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Keš zapytaŭ" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Keš zapytaŭ" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tablic(y)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13668,268 +13641,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of index reads from memory" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Stvaryć tablicu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Farmat impartavanaha fajła" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Farmat impartavanaha fajła" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Pamier buferu sartavańnia" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Pamier buferu sartavańnia" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Pamier buferu sartavańnia" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Keš klučoŭ" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Keš klučoŭ" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Keš klučoŭ" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Server nie adkazvaje" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Pamier buferu sartavańnia" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13937,49 +13910,49 @@ msgid "" "launch" msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Dazvalaje stvarać časovyja tablicy." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14094,17 +14067,17 @@ msgid "" "it should not be below 20%%" msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Pamier pułu buferu" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14118,24 +14091,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Pamier pułu buferu" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Pamier pułu buferu" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14150,7 +14123,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14159,31 +14132,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Vybar servera" + +#~ msgid "Runtime Information" +#~ msgstr "Biahučaja infarmacyja" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Kolkaść paloŭ" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Abnavić" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Typ zapytu" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/bg.po b/po/bg.po index 22a8c40b3d..4576c29794 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bulgarian Настройки." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Ефикасност на буфера за заявки" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Използване на буфера за заявки" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Използвано от буфера за заявки" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Натоварване на процесора" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Системна памет" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Системен swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Средно натоварване" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Общо памет" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Памет в буфери" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Буферирана памет" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Свободна памет" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Използвана памет" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Всичкия swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Кеширан swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Използван swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Свободен swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Байта изпратени" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Връзки" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процеси" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Б" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d таблица(и)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Запитвания" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Настройки" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Изтриване диаграма" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Редакция заглавие и етикети" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Добавяне диаграма към мрежата" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Моля добавете поне една променлива към сериите" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Няма" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Подновяване на наблюдателя" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Bременно спиране на наблюдателя" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log и slow_query_log са разрешени." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log е разрешен." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log е разрешен." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log и general_log са забранени." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "на log_output не е зададено TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "на log_output е зададено TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1289,12 +1262,12 @@ msgstr "" "отнемащи повече от %d секунди. Препоръчително е да зададете на " "long_query_time 0-2 секунди, в зависимост от вашата система." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time е зададено на %d секунда(и)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1303,30 +1276,30 @@ msgstr "" "подразбиране след рестарт на сървъра:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Задаване на log_output на %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Включване %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Изключване %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Задаване на long_query_time на %dс" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1334,53 +1307,53 @@ msgstr "" "Не може да променяте тези променливи. Моля, влезте като root или се обърнете " "към администратор." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Промяна настройки" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Заглавие на диаграмата" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Диференциални" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Разделени с %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Единица" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "От дневника за бавни заявки" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "От общия дневник" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Зареждане дневници" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Анализиране и зареждане на дневници. Ще отнеме малко време." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Отмяна на заявката" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1390,7 +1363,7 @@ msgstr "" "SQL заявка е използвана като критерий за групиране и другите атрибути на " "заявката, като начало на изпълнението, може да са различни." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1399,101 +1372,101 @@ msgstr "" "Тъй като е избрано групиране на заявки за вмъкване, такива към същата " "таблица също ще са групирани заедно, без оглед на вмъкваните данни." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Данните заредени. Заявки изпълнени в този времеви интервал:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Към таблицата-дневник" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Няма данни" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Дневникът е проверен, но няма заявки изпълнени в този времеви интервал." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Анализиране…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Обяснение на изхода" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Време" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Общо време:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Резултат от профилиране" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Таблица" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Диаграма" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Редактиране диаграма" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Поредици" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Опции за филтриране на таблица-дневник" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Филтър" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Филтриране заявки по дума/регулярен израз:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Групиране на заявките и игнориране на променливата информация в WHERE " "клаузите" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Брой групирани редове:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Общо:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Зареждане на дневници" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1503,250 +1476,252 @@ msgstr "" "вероятно това се дължи на изтекла сесия. Презареждане страницата и ново " "удостоверяване трябва да помогне." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Презареждане страницата" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Засегнати редове:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Грешка в конфигурационен файл. Изглежда не е валиден JSON код." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Импорт настройки за наблюдателя" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Изберете файла, който искате да импортирате" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Анализиране заявка" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Съветническа програма" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Възможни проблеми с производителността" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Проблем" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Препоръка" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Детайли за правило" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Подравняване" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Използвана променлива / формула" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Отмяна" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Зареждане" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Обработка на заявката" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Грешка при обработка на заявката" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Няма избрани БД." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Изтриване на колона" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Щракнете, за да скриете това съобщение" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Преименуване БД" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Презареждане БД" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Копиране БД" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Промяна знаков набор" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Таблицата трябва да има поне една колона" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Вмъкване на таблица" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Скриване на индексите" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Показване на индексите" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Проверки на външен ключ:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Позволено)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Забрано)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Търсене" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Скриване резултати от търсенето" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Показване резултати от търсенето" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Прелистване" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Изтриване" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Дефиницията на съхранена процедура трябва да съдържа израз RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Стойности за колоната %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Стойности за нова колона" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Въвеждайте всяка стойност в отделно поле" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Добавяне %d стойност(и)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Скриване формата за заявки" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Показване формата за заявки" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Промяна" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Време за изпълнение на заявката" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1755,91 +1730,91 @@ msgstr "%d не е валиден номер на ред." msgid "Save" msgstr "Зпазване" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Всяка точка представлява ред." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Посочване на точка ще покаже етикета ѝ." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "За да увеличите, изберете част от диаграмата с мишката." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Щракнете върху връзката за възстановяване на мащабирането, за да се върнете " "в състоянието по подразбиране." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Изберете две колони" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Изберете две различни колони" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Резултати от заявката" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Копиране" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Добавяне колони" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Изберете първичен или уникален ключ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1847,15 +1822,20 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Добавяне опция към колона " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Натиснете Esc за отмяна на редакцията" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1863,27 +1843,27 @@ msgstr "" "Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете " "страницата преди запазването им?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Завличане за промяна на подредбата" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Щракване за сортиране" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Щракване за маркиране/отмаркиране" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Щракнете двукратно за копиране името на колона" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Щракнете стрелката,
за да изберете колони" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1892,7 +1872,7 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1903,65 +1883,65 @@ msgstr "" "Можете също да редактирате повечето колони
като щракнете директно върху " "тяхното съдържание." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Можете също да редактирате повечето колони
като щракнете директно върху " "тяхното съдържание." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Към връзка" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Копиране името на колоната" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "С десния бутон върху името на колоната, за да го копирате в системния буфер." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Генериране парола" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Генериране" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Смяна парола" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Още" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Показване на всички" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Скриване на индексите" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Избраният потребител не беше открит в таблицата с права." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1971,266 +1951,266 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", актуална стабилна версия:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "актуално" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Готово" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Днес" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "януари" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "февруари" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "март" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "април" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "май" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "юни" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "юли" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "август" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "септември" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "октомври" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "ноември" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "дек" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "неделя" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "понеделник" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "петък" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Сед" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Час" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "минута" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "секунда" @@ -2282,16 +2262,16 @@ msgstr "Неочаквани знаци на ред %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Неочакван знак на ред %1$s. Очакван табулатор, но намерен \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "на секунда" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "на минута" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "на час" @@ -2319,7 +2299,7 @@ msgstr "Размер шрифт" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Възходящо" @@ -2328,7 +2308,7 @@ msgstr "Възходящо" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Низходящо" @@ -2442,7 +2422,7 @@ msgstr "Изтриване на съвпаденията от таблицата #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Изтриване" @@ -2612,7 +2592,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Спиране" @@ -2667,12 +2647,13 @@ msgstr "Маркиране всички" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" @@ -2680,7 +2661,7 @@ msgstr "Експорт" msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2763,16 +2744,16 @@ msgstr "Не може да бъде прочетен (преместен) кач msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими бисквитки." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Оттук нататък е необходим javascript" @@ -2784,21 +2765,21 @@ msgstr "Не е избран индекс!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Индекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Кардиналност" @@ -2808,13 +2789,13 @@ msgstr "Кардиналност" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Колация" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Коментар" @@ -2859,7 +2840,7 @@ msgstr "Изглед" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -2932,34 +2913,35 @@ msgstr "Събития" msgid "Designer" msgstr "Строител" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Потребители" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Двоичен дневник" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Репликация" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Добавки" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Хранилища" @@ -3007,6 +2989,104 @@ msgstr "Отваряни таблици" msgid "There are no recent tables" msgstr "Няма наскоро отваряни таблици" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL заявка" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Манипулатор" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Буфер за заявки" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Нишки" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Временни данни" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Забавени вмъквания" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Буфер за ключове" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Свръзки" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Сортиране" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Таблици" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Координатор на транзакциите" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файлове" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Изчистване от буфера (затваряне) на всички таблици" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Показване отворените таблици" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Показване на подчинените хостове" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Показване състоянието на главния" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Показване статуса на подчинените" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Изчистване на буфера за заявки" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Състояние" + +#: 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." @@ -3098,7 +3178,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Стойност" @@ -3487,11 +3567,6 @@ msgstr "Изброяване, избор от списък на определе msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL заявка" - #: libraries/Util.class.php:710 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:292 @@ -3526,7 +3601,7 @@ msgid "Create PHP Code" msgstr "Създаване на PHP код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Опресняване" @@ -3622,13 +3697,6 @@ msgstr "Печат" msgid "shared" msgstr "споделен" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Таблици" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3669,11 +3737,11 @@ msgstr "Проверка на правата над БД "%s"." msgid "Check Privileges" msgstr "Проверка на правата" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Неуспешно прочитане на конфигурацията" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3681,12 +3749,12 @@ msgstr "" "Това обикновено означава, че има синтактична грешка в него, моля, проверете " "всички грешки, показани по-долу." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3694,38 +3762,38 @@ msgstr "" "На [code]$cfg['PmaAbsoluteUri'][/code] ТРЯБВА да бъде зададена стойност в " "конфигурационния файл!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Невалиден индекс на сървър: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Невалиден метод за удостоверяване в конфогурацията:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "възможен пробив в сигурността" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "цифров ключ открит" @@ -5863,8 +5931,8 @@ msgstr "" "Ако имате отделно потребителско име, въведете го тук (по подразбиране е [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Потребителско име" @@ -6484,10 +6552,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Състояние" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7135,18 +7199,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "филтър по таблица" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7260,17 +7324,17 @@ msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Само структурата" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структурата и данните" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Само данните" @@ -7663,8 +7727,7 @@ msgstr "Показване MIME типове" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -8205,7 +8268,7 @@ msgid "Slave status" msgstr "Състояние на подчинен" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Променлива" @@ -8717,7 +8780,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Допълнително" @@ -9419,7 +9482,7 @@ msgstr "Добавяне представка към таблица" msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Няма" @@ -9765,7 +9828,7 @@ msgstr "Превключване на малки/големи" msgid "Toggle relation lines" msgstr "Превключване на редовете с релации" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/експорт на координатите за PDF схема" @@ -9831,31 +9894,31 @@ msgstr "Страница беше създадена" msgid "Page creation failed" msgstr "Неуспешно създаване на страница" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Импорт от избрания файл" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Експорт към избраната страница" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "създаване на страница и експорт към нея" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Име: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Експорт/импорт в мащаб" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "препоръчително" @@ -9973,15 +10036,11 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен дневник за преглед" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файлове" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -10065,7 +10124,7 @@ msgstr "Модул" msgid "Library" msgstr "Библиотека" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Версия" @@ -10122,10 +10181,6 @@ msgstr "Главният сървър сменен с %s" msgid "This server is configured as master in a replication process." msgstr "Този сървър е конфигуриран като главен за репликация." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Показване състоянието на главния" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Показване свързаните подчинени" @@ -10262,183 +10317,28 @@ msgstr "" "Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно спряна." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status.php:657 -msgid "Handler" -msgstr "Манипулатор" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Буфер за заявки" - -#: server_status.php:659 -msgid "Threads" -msgstr "Нишки" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Временни данни" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Забавени вмъквания" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Буфер за ключове" - -#: server_status.php:664 -msgid "Joins" -msgstr "Свръзки" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Сортиране" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Координатор на транзакциите" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Изчистване от буфера (затваряне) на всички таблици" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Показване отворените таблици" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Показване на подчинените хостове" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Показване статуса на подчинените" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Изчистване на буфера за заявки" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Информация за състоянието на MySQL сървъра" - -#: server_status.php:830 -msgid "All status variables" -msgstr "Всички променливи на състоянието" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Наблюдател" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Съветник" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Брой редове:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Скорост на опресняване: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Филтри" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Съдържащ думата:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Само тревожни стойности" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Филтър по категория..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Неформатирани стойности" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Сродни връзки:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Пускане анализатор" - -#: server_status.php:966 -msgid "Instructions" -msgstr "Инструкции" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Запитвания от включването: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Заявление" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "№" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:1143 +#: server_status.php:83 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Този MySQL сървър работи от %1$s. Пуснат е на %2$s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10446,15 +10346,15 @@ msgstr "" "Този MySQL сървър работи като главен и подчинен в " "репликация." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "Този MySQL сървър работи като главен в репликация." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "Този MySQL сървър работи като подчинен в репликация." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10462,11 +10362,11 @@ msgstr "" "За повече информация относно статусът на репликация на този сървъра, моля " "посетете секция репликация." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Състояние на репликацията" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10474,654 +10374,112 @@ msgstr "" "При натоварен сървър байтовите броячи може да превъртат и статистиката " "докладвана от MySQL да е невярна." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Получени" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Изпратени" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "максимален брой едновременни връзки" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Неуспешни опити" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Команда" -#: server_status.php:1527 +#: server_status_advisor.php:29 +msgid "Instructions" +msgstr "Инструкции" + +#: server_status_advisor.php:35 msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." msgstr "" -"Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " -"правилно връзките." -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Броят неуспешни опити за връзка към MySQL сървъра." - -#: server_status.php:1529 +#: server_status_advisor.php:41 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." +"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.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 +#: server_status_advisor.php:48 msgid "" -"The number of connection attempts (successful or not) to the MySQL server." +"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.php:1532 +#: server_status_advisor.php:56 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." +"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.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Броят създадени от mysqld временни файлове." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Броят вмъкнати посредством INSERT DELAYED редове." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Брой заявки за обновяване на ред в таблица." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Брой заявки за вмъкване на ред в таблица." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Броят на заявки за запис в дневника." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Броят изтрити редове от InnoDB таблици." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Броят вмъкнати редове в InnoDB таблици." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Броят прочетени редове от InnoDB таблици." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Броят обновени редове в InnoDB таблици." - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Максималният брой едновременно използвани връзки от като е стартиран " -"сървърът." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Броят отворени файлове." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Броят отворени потоци (използва се главно за дневници)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Броят отворени таблици." - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Количеството свободна памет за буфер за заявки." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Броят попадения в кеш." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Броят заявки добавени към буфера." - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Броят заявки регистрирани в буфера." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Общият брой блокове в буфера за заявки." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Брой временни таблици отворени от подчинена SQL нишка." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Броят сортирани редове." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Брой текущо отворени връзки." - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Броят на нишките, които не са спящи." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Включване на Наблюдателя" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Добавяне диаграма" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Стойност по подразбиране" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Инструкции на наблюдателя" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11135,7 +10493,7 @@ msgstr "" "general_log. Отбележете обаче, че general_log генерира много данни и " "натоварването на сървъра се увеличава с до 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11143,18 +10501,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Използване наблюдател:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11162,11 +10520,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11174,92 +10532,703 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Променливи(а) на състоянието" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Избор на серии:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "или въведете променлива:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Прилагане на разделител" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Статистика на дневника" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Анализатор заявки" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d секунда" msgstr[1] "%d секунди" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d минута" msgstr[1] "%d минути" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Запитвания от включването: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Заявление" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "№" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Филтри" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Съдържащ думата:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Само тревожни стойности" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Филтър по категория..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Неформатирани стойности" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Сродни връзки:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " +"правилно връзките." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Броят неуспешни опити за връзка към MySQL сървъра." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Броят създадени от mysqld временни файлове." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Броят вмъкнати посредством INSERT DELAYED редове." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Брой заявки за обновяване на ред в таблица." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Брой заявки за вмъкване на ред в таблица." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Броят на заявки за запис в дневника." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Броят изтрити редове от InnoDB таблици." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Броят вмъкнати редове в InnoDB таблици." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Броят прочетени редове от InnoDB таблици." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Броят обновени редове в InnoDB таблици." + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Максималният брой едновременно използвани връзки от като е стартиран " +"сървърът." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Броят отворени файлове." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Броят отворени потоци (използва се главно за дневници)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Броят отворени таблици." + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Количеството свободна памет за буфер за заявки." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Броят попадения в кеш." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Броят заявки добавени към буфера." + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Броят заявки регистрирани в буфера." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Общият брой блокове в буфера за заявки." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Брой временни таблици отворени от подчинена SQL нишка." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Броят сортирани редове." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Брой текущо отворени връзки." + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Броят на нишките, които не са спящи." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Неуспешно създаване на променлива" @@ -11803,142 +11772,142 @@ msgstr "Ограничение за външен ключ" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Проследяването на %1$s беше изключено във версия %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Проследяването на %1$s беше включено във версия %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Грешка в заявката" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Няма данни" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Израз за дефиниране на данни" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Израз за манипулация на данни" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Изпълняване на SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Експорт като %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Показване на версиите" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Изключване проследяването за %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Изключване сега" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Включване проследяването за %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Включване сега" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Създаване на версия %1$s от %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Проследяване следните изрази за дефиниране на данни:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Проследяване следните изрази за манипулиране на данни:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Създаване на версия" @@ -12074,11 +12043,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time в момента е %dс." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Вписване бавните заявки в дневник" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Дневникът за бавни заявки е изключен." @@ -12092,118 +12061,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries е зададено на 'Изключено'" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries е зададено на 'Изключено'" + +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Текуща версия: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Малка версия" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Трябва на осъвремените до стабилна версия на MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Разпространение" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Архитектура на MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Достъпна памет на този хост: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Изключен буфер за заявки" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Буферът за заявки не е включен." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12211,21 +12192,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size е зададено на 0 или query_cache_type е зададено на " "'Изключено'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Метод за буфериране на заявки" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Неоптимален метод за буфериране." -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -12578,11 +12559,11 @@ msgstr "" "%s%% от всички временни таблици биват записвани на диска, тази стойност " "трябва да бъде под 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12593,7 +12574,7 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -12602,42 +12583,42 @@ msgstr "" "Стойността на временните таблици записвани на диска е %s, тази стойност " "трябва да бъде под 1 за час" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Размер на буфера за ключове на MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size е 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Максимален %% от буфера за ключове на MyISAM ползван някога" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM буфер на ключове (индекси) с нисък %% на използване." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -12645,73 +12626,73 @@ msgstr "" "Максималният %% от буфера за ключове на MyISAM ползван някога е %s%%, тази " "стойност трябва да е над 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Процент използван буфер за ключове на MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "Използваният %% от буфера за ключове на MyISAM е %s%%, тази стойност трябва " "да е над 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Процент на прочитане на индекс от паметта" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Прочетени от паметта индекси: %s%%, стойността трябва да е над 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Стойност на отваряне на таблици" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Стойността на отваряне на таблици е висока." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Стойността на отваряните таблици е %s, тази стойност трябва да бъде под 10 " "за час" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Процент от лимита на отворени файлове" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -12719,118 +12700,118 @@ msgstr "" "Броят отворени файлове е на %s%% от ограничението, тази стойност трябва да " "бъде под 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Стойност на отворени файлове" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Стойността на отворени файлове е висока." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Стойността на отваряните файлове е %s, тази стойност трябва да бъде под 5 за " "час" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Незабавното заключване на таблици е %s%%, тази стойност трябва да бъде над " "95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Стойността на изчакване за заключване на таблица е %s, тази стойност трябва " "да бъде под 1 за час" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Буфер за нишки" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Буферът за нишки е зададен на 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Буферът за нишки е неефективен." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Index reads from memory: %s%%, this value should be above 95%%" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Буфер за нишки .. %s%%, тази стойност трябва да бъде над 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Пускащи се бавно нишки" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Има много пускащи се бавно нишки." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s нишки(а) отнеха повече от %s секунди да стартират, трябва да бъдат 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Показване времето за пускане" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads е над 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -12838,16 +12819,16 @@ msgstr "" "Задайте на slow_launch_time 1s или 2s, за да бъдат правилно отчетени бавно " "пускащите се нишки" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time е зададено на %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Процент използвни връзки" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -12855,29 +12836,29 @@ msgstr "" "Максималният брой използвани връзки се доближава до стойността на " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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:390 +#: 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 е на %s%% от max_connections, трябва да бъде под 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Процент прекъснати връзки" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Твърде много прекъснати връзки." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Тази статия може да ви помогне да " "проследите на източника." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% от всички връзки са прекъсвани, тази стойност трябва да бъде под 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Стойност прекъснати връзки" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -12907,15 +12888,15 @@ msgstr "" "Стойността на прекъснатите връзки е %s, тази стойност трябва да бъде под 1 " "за час" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Процент прекъснати клиенти" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Твърде много прекъснати клиенти." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -12925,50 +12906,50 @@ msgstr "" "към MySQL. Това може да се дължи на мрежови проблеми или код, не затварящ " "правилно манипулатора към БД. Проверете вашата мрежа и код." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% от всички клиенти са прекъсвани, тази стойност трябва да бъде под 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Стойност прекъснати клиенти" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Стойността на прекъсваните клиенти е %s, тази стойност трябва да бъде под 1 " "за час" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Забранен ли е InnoDB?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB е забранен." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "Обикновено InnoDB е по-добър избор на хранилище." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb е 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Размер на дневника на InnoDB" -#: libraries/advisory_rules.txt:432 +#: 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:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -12982,22 +12963,22 @@ msgid "" "com/2007/01/increase-innodblogfilesize-proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Максимален размер на дневника на InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Дневникът на InnoDB е неоправдано голям." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13011,20 +12992,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13039,7 +13020,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13048,25 +13029,57 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM едновременни вмъквания" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Включване на concurrent_insert като го настроите на 1" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB изпратени след последното опресняване" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB получени след последното опресняване" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Сървър трафик (в KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Връзки след последното опресняване" + +#~ msgid "Questions since last refresh" +#~ msgstr "Запитвания след последното опресняване" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Запитвания (изпълнени от сървъра заявки)" + +#~ msgid "Runtime Information" +#~ msgstr "Информация за състоянието на MySQL сървъра" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Брой редове:" + +#~ msgid "Refresh rate: " +#~ msgstr "Скорост на опресняване: " + +#~ msgid "Run analyzer" +#~ msgstr "Пускане анализатор" + #~ msgid "Show more actions" #~ msgstr "Показване повече действия" diff --git a/po/bn.po b/po/bn.po index bd2a653030..c1e48afc2d 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Bengali " -"\n" -"Language: bn\n" +"Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "খুঁজুন" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "যাও" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "বর্ণনা" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "কলামের" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "কলামের" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "ধরন" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "ধরন" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "খালি" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "খালি" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "ডিফল্ট" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "ডিফল্ট" msgid "Links to" msgstr "সংযুক্তি হবে" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "মন্তব্যসমূহ" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "না" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "না" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "হ্যাঁ" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "টেবিল" @@ -340,7 +340,7 @@ msgstr "আকার" msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -348,7 +348,7 @@ msgstr "in use" msgid "Creation" msgstr "Creation" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -356,7 +356,7 @@ msgstr "Creation" msgid "Last update" msgstr "সর্বশেষ আপডেট" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "টেবিলগুলি ট্রাক করা" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "ডাটাবেজ" @@ -416,17 +416,17 @@ msgstr "ডাটাবেজ" msgid "Last version" msgstr "সর্বশেষ সংস্করণ" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "তৈরী করা হয়েছে" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "আপডেটেড" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "অবস্থা" @@ -441,7 +441,7 @@ msgstr "Action" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "দেখান" @@ -457,11 +457,11 @@ msgstr "এই টেবিলের জন্য ট্র্যাকিং msgid "Drop" msgstr "মুছে ফেল" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "সক্রিয়" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "সক্রিয় নয়" @@ -469,11 +469,11 @@ msgstr "সক্রিয় নয়" msgid "Versions" msgstr "সংস্করণসমূহ" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "ট্র্যাকিং রিপোর্ট" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "গঠন স্ন্যাপশট" @@ -539,45 +539,45 @@ msgstr "বেজ লেয়ার হিসাবে OpenStreetMaps ব্য msgid "SRID" msgstr "এসআরআইডি" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "জ্যামিতি" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "ওয়াই" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "পয়েন্ট %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "একটি পয়েন্ট যোগ কর" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "লাইনস্ট্র্রিং" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "আউটার রিং" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "ইনার রিং" @@ -585,15 +585,15 @@ msgstr "ইনার রিং" msgid "Add a linestring" msgstr "একটি লাইনস্ট্রিং যোগ করুন" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "একটি ইনার রিং যোগ করুন" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "পলিগন" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "একটি পলিগন যোগ করুন" @@ -731,8 +731,9 @@ msgstr "General relation features" msgid "Database server" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "সার্ভার" @@ -753,7 +754,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "User" @@ -987,12 +988,12 @@ msgstr "বিশেষাধিকার রিলোড" msgid "Removing Selected Users" msgstr "নির্ধারিত ব্যবহারীসমূহ মূছা হচ্ছে" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "বন্ধ" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1002,15 +1003,15 @@ msgstr "বন্ধ" msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "সরাসরি ট্রাফিক লেখচিত্র" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "সংযোগ/প্রক্রিয়া লেখচিত্র সরাসরি" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "কুয়েরী লেখচিত্র সরাসরি" @@ -1021,13 +1022,14 @@ msgstr "স্থিসি উপাত্ত" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "স্থিতি উপাত্ত" @@ -1042,48 +1044,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "গত রিফ্রেস থেকে পাঠানো KiB" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "গত রিফ্রেস থেকে গৃহীত KiB" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "সার্ভার ট্রাফিক (in KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "গত রিফ্রেস থেকে সংযোগসমূহ" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processes" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "সংযোগসমূহ/প্রক্রিয়াসমূহ" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "গত রিফ্রেস থেকে প্রশ্নসমূহ" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "প্রশ্নসমূহ (সার্ভারের দ্বারা সঞ্চালিত বিবৃতি)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "কুয়েরী পরিসংখ্যান" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "স্থানীয় মনিটর কনফিগারেশন বেমানান" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1094,196 +1062,201 @@ msgstr "" "সংস্করণ উপাদানের সহিত সামঞ্জস্যপূর্ণ নয়। খুব সম্ভবত ইহা আপনার বর্তমান কনফিগারেশন কাজ " "করবে না। ডিফল্ট সেটিংস মেনু আপনার কনফিগারেশন রিসেট করুন।" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "কুয়েরী ক্যাশের কার্যকারিতা" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "কুয়েরী ক্যাশের ব্যবহারসমূহ" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "ব্যবহৃত কুয়েরী ক্যাশে" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "সিস্টেম সিপিইউ ব্যবহারসমূহ" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "সিস্টেম মেমোরী" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "সিস্টেম বিনিময়" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "মেগাবাইট" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "কিলোবাইট" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "গড় লোড" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "মোট মেমোরী" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "ক্যাশে মেমোরী" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "বাফারড মেমোরী" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "ফাঁকা মোমোরী" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "ব্যবহৃত মেমোরী" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "মোট বিনিময়" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "ক্যাশে বিনিময়" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "ব্যবহৃত বিনিময়" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "ফ্রী বিনিময়" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "পাঠনো বাইটস" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "গৃহীত বাইটস" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "সংযোগসমূহ" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processes" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "বাইট" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "কিলোবাইট" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "মেগাবাইট" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "গিগাবাইট" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "টেরাবাইট" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "পেটাবাইট" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "এক্সাবাইট" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d টেবিল(সমূহ)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "প্রশ্ন" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "সেটিংস" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "লেখচিত্র মূছে ফেলুন" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "শিরোনাম এবং লেবেলসমূহ সম্পাদন করুন" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "গ্রিডে লেখচিত্র যোগ করুন" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "কোনটিই নয়" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "নিরীক্ষণ পুনঃসূচনা" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "নিরীক্ষণ বিরতি" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log ও slow_query_log সক্রিয়।" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log সক্রিয়।" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log সক্রিয়।" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1291,528 +1264,530 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ফাইল হিসেবে সেভ করুন" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Enabled" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "বন্ধ করা হয়েছে" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "General relation features" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "General relation features" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Report title" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "লোকাল" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Read requests" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "কোন ডাটাবেজ নাই" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "কোন ডাটাবেজ নাই" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL ব্যাখ্যা কর" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "সময়" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "মোট" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Query results operations" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "টেবিল" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Charset" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL query" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "ক্ষেত্রসমূহ" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "The number of sorted rows." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "মোট" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "লোকাল" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "ডাটাবেজ রিনেম কর" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Update Query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "বর্ণনা" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "বর্ণনা" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "লোকাল" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Processes" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "ঠিক আছে" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "ডাটাবেজ রিনেম কর" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "ডাটাবেজ রিনেম কর" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "ডাটাবেজ কপি করঃ" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Charset" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Table must have at least one field." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "টেবিল ব্যাবহারকারী" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "ইন্ডেস্ক সমূহ" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Disable foreign key checks" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Enabled" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "বন্ধ করা হয়েছে" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "খুঁজুন" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL query" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL query" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "ব্রাউজ করুন" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s মুছে ফেলা হচ্ছে" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/Set এডিটর" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s কলামের মানসমূহ" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "একটি নতুন কলামের মানসমূহ" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "একটি পৃথক ফিল্ডে প্রতিটি মান লিখুন" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "একটি নতুন ইউজার যোগ করুন" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL query" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL query" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Change" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1821,218 +1796,223 @@ msgstr "" msgid "Save" msgstr "সেভ করুন" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL query" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL query" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "খুঁজুন" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Add/Delete Field Columns" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Query results operations" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "কোন ডাটাবেজ নাই" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "কলামের নাম" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Start" msgid "Show data row(s)" msgstr "শনিবার" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "তৈরী কর" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "সোমবার" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "সবগুলো দেখাও" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "ইন্ডেস্ক সমূহ" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2040,30 +2020,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy msgid ", latest stable version:" msgstr "Server version" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "কোন ডাটাবেজ নাই" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy msgid "Done" msgstr "ডাটা" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2071,96 +2051,96 @@ msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "মে" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2168,78 +2148,78 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2247,113 +2227,113 @@ msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "কোনটিই নয়" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2406,16 +2386,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per hour" @@ -2441,7 +2421,7 @@ msgstr "ফন্ট এর আকার" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascending" @@ -2450,7 +2430,7 @@ msgstr "Ascending" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descending" @@ -2566,7 +2546,7 @@ msgstr "%s মানানসই টেবিলটি মুছে দেবে #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "মুছে ফেল" @@ -2764,7 +2744,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Kill" @@ -2819,12 +2799,13 @@ msgstr "সব পরীক্ষা করুন" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" @@ -2832,7 +2813,7 @@ msgstr "Export" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2917,16 +2898,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2938,21 +2919,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -2962,13 +2943,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Collation" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" @@ -3012,7 +2993,7 @@ msgstr "View" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Structure" @@ -3086,36 +3067,37 @@ msgstr "Sent" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "User" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "বাইনারী লগ" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replication" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "ইঞ্জিনসমূহ" @@ -3171,6 +3153,106 @@ msgstr "কোন টেবিল নাই" msgid "There are no recent tables" msgstr "টেবিল পরীক্ষা কর" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL query" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Query cache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Threads" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Key cache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "সাজাঁন" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "টেবিলসমূহ" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "ক্ষেত্রসমূহ" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Show slave status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Status" + +#: 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." @@ -3265,7 +3347,7 @@ msgstr "অপারেটর" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "মান" @@ -3668,11 +3750,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL query" - #: libraries/Util.class.php:710 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:292 @@ -3707,7 +3784,7 @@ msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Refresh" @@ -3806,13 +3883,6 @@ msgstr "প্রিন্ট কর" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "টেবিলসমূহ" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3856,63 +3926,63 @@ msgstr "" msgid "Check Privileges" msgstr "সুবিধাসমূহ পরীক্ষা করুন" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6109,8 +6179,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" @@ -6795,10 +6865,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7458,18 +7524,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7571,17 +7637,17 @@ msgid "Drop the database (DROP)" msgstr "ডাটাবেজটি ড্রপ কর (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "শুধু ডাটা" @@ -8016,8 +8082,7 @@ msgstr "Available MIME types" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "হোষ্ট" @@ -8617,7 +8682,7 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "চলক" @@ -9182,7 +9247,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "অতিরিক্ত" @@ -9652,8 +9717,7 @@ msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ " -"পুনরায় লোড কর" +"... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড কর" #: libraries/server_privileges.lib.php:1948 msgid "Change Login Information / Copy User" @@ -9877,7 +9941,7 @@ msgstr "টেবিলে উপসর্গ যোগ করুন" msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10251,7 +10315,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Traditional Chinese" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10334,41 +10398,41 @@ msgstr "Table %s has been dropped" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "পাতাসমুহ" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ফাইল ইম্পোর্ট কর" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "No rows selected" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ব্যাভারকারীর নাম" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10492,16 +10556,11 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "ক্ষেত্রসমূহ" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10584,7 +10643,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "পারসিয়ান" @@ -10645,11 +10704,6 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Show slave status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10782,890 +10836,174 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:659 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Delayed inserts" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "s MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:663 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:664 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:666 -msgid "Sorting" -msgstr "সাজাঁন" - -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" - -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 +#: server_status.php:122 #, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Number of fields" +msgid "Replication status" +msgstr "Replication" -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Refresh" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "ক্ষেত্রসমূহ" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Do not change the password" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Show open tables" - -#: server_status.php:914 -msgid "Filter by category..." +#: server_status.php:139 +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:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Show open tables" +#: server_status.php:149 +msgid "Received" +msgstr "গৃহীত" -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relations" +#: server_status.php:168 +msgid "Sent" +msgstr "Sent" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Query type" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" -#: server_status.php:966 +#: server_status.php:229 +msgid "Failed attempts" +msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" + +#: server_status.php:253 +msgid "Aborted" +msgstr "বাদ দেওয়া হল" + +#: server_status.php:313 +msgid "ID" +msgstr "আইডি" + +#: server_status.php:329 +msgid "Command" +msgstr "নির্দেশ" + +#: server_status_advisor.php:29 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "ফাংশনসমূহ" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Statements" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "s MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "This MySQL server has been running for %s. It started up on %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -#, fuzzy -msgid "Replication status" -msgstr "Replication" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "গৃহীত" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Sent" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "বাদ দেওয়া হল" - -#: server_status.php:1322 -msgid "ID" -msgstr "আইডি" - -#: server_status.php:1338 -msgid "Command" -msgstr "নির্দেশ" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -#| msgid "The number of fsync() writes done to the log file." -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "The number of fsyncs writes done to the log file." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsyncs writes done to the log file." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "The number of rows waiting to be written in INSERT DELAY queues." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Key cache" -msgid "Thread cache hit rate (calculated value)" -msgstr "Key cache" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "শনিবার" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11674,7 +11012,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11682,18 +11020,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11701,11 +11039,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11713,92 +11051,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "ডাটাবেজ রিনেম কর" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "টেবিল সিলেক্ট করুন" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Invalid table name" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL query" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Row Statistics" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "সব সিলেক্ট করুন" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Query type" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11806,7 +11144,7 @@ msgid_plural "%d seconds" msgstr[0] "per second" msgstr[1] "per second" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11814,6 +11152,632 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Statements" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "ক্ষেত্রসমূহ" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Do not change the password" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Show open tables" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Show open tables" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +#| msgid "The number of fsync() writes done to the log file." +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "The number of fsyncs writes done to the log file." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"The number of doublewrite writes that have been performed and the number of " +"pages that have been written for this purpose." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"The number of doublewrite writes that have been performed and the number of " +"pages that have been written for this purpose." + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "The number of fsyncs writes done to the log file." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "The number of rows waiting to be written in INSERT DELAY queues." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Key cache" +msgid "Thread cache hit rate (calculated value)" +msgstr "Key cache" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12392,152 +12356,152 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Query type" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "কোন ডাটাবেজ নাই" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "ডাটা" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Export type" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server version" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Server version" @@ -12681,12 +12645,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL query" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12702,131 +12666,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log সক্রিয়।" + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "টেবিল সিলেক্ট করুন" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Server version" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "পারসিয়ান" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "You should upgrade to %s %s or later." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "বর্ণনা" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL charset" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Query cache" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "The server is not responding" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12834,23 +12810,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Query cache" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Query cache" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s table(s)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13246,266 +13222,266 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Show Full Queries" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "The current number of pending writes." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "The number of pending log file fsyncs." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sort buffer size" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sort buffer size" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sort buffer size" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Key cache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Key cache" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Key cache" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "The server is not responding" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13513,49 +13489,49 @@ msgid "" "launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Allows creating temporary tables." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13670,17 +13646,17 @@ msgid "" "it should not be below 20%%" msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13694,24 +13670,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13726,7 +13702,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13735,31 +13711,64 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#~ msgid "KiB sent since last refresh" +#~ msgstr "গত রিফ্রেস থেকে পাঠানো KiB" + +#~ msgid "KiB received since last refresh" +#~ msgstr "গত রিফ্রেস থেকে গৃহীত KiB" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "সার্ভার ট্রাফিক (in KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "গত রিফ্রেস থেকে সংযোগসমূহ" + +#~ msgid "Questions since last refresh" +#~ msgstr "গত রিফ্রেস থেকে প্রশ্নসমূহ" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "প্রশ্নসমূহ (সার্ভারের দ্বারা সঞ্চালিত বিবৃতি)" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Number of fields" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Refresh" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Query type" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/br.po b/po/br.po index b0dcc84b15..cd539b5ace 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton 1;\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -51,7 +51,7 @@ msgstr "" msgid "Search" msgstr "Klask" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -81,21 +81,21 @@ msgstr "Klask" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Mont" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Anv ar meneger" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Deskrivadur" @@ -118,17 +118,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -142,12 +142,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Bann" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -165,11 +165,11 @@ msgstr "Bann" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Seurt" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -181,11 +181,11 @@ msgstr "Seurt" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -196,11 +196,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Dre ziouer" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -209,7 +209,7 @@ msgstr "Dre ziouer" msgid "Links to" msgstr "Liammet ouzh" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -222,7 +222,7 @@ msgstr "Liammet ouzh" msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -240,12 +240,12 @@ msgstr "Evezhiadennoù" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ket" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -268,8 +268,8 @@ msgstr "Ket" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ya" @@ -324,7 +324,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Taolenn" @@ -344,7 +344,7 @@ msgstr "Ment" msgid "in use" msgstr "en implij" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -352,7 +352,7 @@ msgstr "en implij" msgid "Creation" msgstr "Krouiñ" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -360,7 +360,7 @@ msgstr "Krouiñ" msgid "Last update" msgstr "Hizivadenn ziwezhañ" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -412,7 +412,7 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Diaz roadennoù" @@ -420,17 +420,17 @@ msgstr "Diaz roadennoù" msgid "Last version" msgstr "Stumm diwezhañ" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Krouet" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Hizivaet" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Statud" @@ -445,7 +445,7 @@ msgstr "Oberiadenn" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Diskouez" @@ -461,11 +461,11 @@ msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" msgid "Drop" msgstr "Diverkañ" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "oberiant" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "dizoberiant" @@ -473,11 +473,11 @@ msgstr "dizoberiant" msgid "Versions" msgstr "Stummoù" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Danevell heuliañ" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" @@ -545,45 +545,45 @@ msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Mentoniezh" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Poent" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Poent %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Ouzhpennañ ur poent" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Aradennad linennoù" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Kelc'h diavaez" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Kelc'h diabarzh" @@ -591,15 +591,15 @@ msgstr "Kelc'h diabarzh" msgid "Add a linestring" msgstr "Ouzhpennañ un aradennad linennoù" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Ouzhpennañ ur c'helc'h diabarzh" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Lieskorneg" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Ouzhpennañ ul lieskorneg" @@ -746,8 +746,9 @@ msgstr "" msgid "Database server" msgstr "Diazoù roadennoù" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servijer" @@ -768,7 +769,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -994,12 +995,12 @@ msgstr "Oc'h adkargañ an dreistgwirioù" msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Serriñ" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1009,15 +1010,15 @@ msgstr "Serriñ" msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Grafik an tremenerezh evel m'emañ diouzhtu" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Grafik ar rekedoù evel m'emaint diouzhtu" @@ -1028,13 +1029,14 @@ msgstr "Roadennoù stadegel" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Hollad" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Udb all" @@ -1049,48 +1051,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Kio treuzkaset abaoe ar freskadenn ziwezhañ" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Kio resevet abaoe ar freskadenn ziwezhañ" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tremenerezh war ar servijer (e Kio)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Argerzhioù" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Kevreadennoù/Argerzhioù" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Stadegoù war ar rekedoù" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1098,120 +1066,124 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efeduster ar grubuilh rekedoù" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Implij ar grubuilh rekedoù" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Krubuilh rekedoù implijet" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Implij CPU ar reizhiad" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memor reizhiad" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Takad eskemm reizhiad (swap)" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "Mio" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "Kio" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Karg keitat" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memor hollek" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memor krubuilh" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memor skurzer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memor vak" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memor implijet" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Takad eskemm klok" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Takad eskemm krubuilhet" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Takad eskemm implijet" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Takad eskemm vak" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Oktedoù kaset" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Kevreadennoù" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Argerzhioù" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "o" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "Kio" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "Mio" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "Eio" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1219,77 +1191,78 @@ msgid "%d table(s)" msgstr "%s daolenn" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Arventennoù" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Dilemel ar grafik" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Kemmañ an titl hag an tikedennoù" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Ouzhpennañ ur grafik d'ar gael" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Hini" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Adkregiñ gant an evezhiañ" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Paouez gant an evezhiañ" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "Gweredekaet eo general_log ha slow_query_log." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "Gweredekaet eo general_log." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "Gweredekaet eo slow_query_log." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "Diweredekaet eo general_log ha slow_query_log." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "N'eo ket bet lakaet log_output da TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "Lakaet eo bet log_output da TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1300,12 +1273,12 @@ msgstr "" "bad pelloc'h eget %d eilenn. Erbedet eo reizhañ long_query_time war 0-2 " "eilenn, hervez ho reizhiad." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1314,30 +1287,30 @@ msgstr "" "d'an talvoud dre ziouer pa adloc'ho ar servijer :" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Reizhañ log_output da %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Gweredekaat %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Diweredekaat %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Reizhañ long_query_time da %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1345,456 +1318,458 @@ msgstr "" "N'hallit ket cheñch an arventennoù-mañ. Kevreit dindan root pe kit e " "darempred gant merour ar servijer." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Titl ar grafik" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diforc'herezh" -#: js/messages.php:167 +#: js/messages.php:154 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Rannet dre %s:" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Diwar ar marilh rekedoù gorrek" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Diwar ar marilh hollek" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "O tielfennañ hag o kargañ marilhoù. Padout pellik a c'hall ober." -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "Nullañ" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Restr varilh karget. Rekedoù kaset da benn en amzer-mañ :" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Mont da taolenn ar marilh" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Dielfennet eo bet ar marilh hep kavout roadenn ebet evit ar prantad amzer-" "mañ." -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "O tilesa..." -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Displegañ SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total:" msgid "Total time:" msgstr "Hollad :" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "O profilañ" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taolenn" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Chart Title" msgid "Chart" msgstr "Titl ar grafik" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Remove chart" msgid "Edit chart" msgstr "Dilemel ar grafik" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "Rekedoù SQL" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Dibarzhioù silañ taolenn ar marilhoù" # verb pe ak. ? #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Silañ" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Silañ ar rekedoù dre c'her pe lavarennoù reoliek :" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Sammad al linennoù bodet :" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Hollad :" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Adkargañ ar bajenn" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Enporzhiañ" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Hizivaat ar reked" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Teuliadur" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Dilesadur" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Nullañ" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "O kargañ" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "O plediñ gant ar reked" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Fazi en ur blediñ gant ar reked" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Diverkañ ar bann" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Mat eo" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Oc'h adenvel an diaz roadennoù" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Adkargañ an diaz roadennoù" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Oc'h eilañ an diaz roadennoù" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "O cheñch ar strobad arouezennoù" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Ur bann a rank bezañ en daolenn, da nebeutañ" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Ensoc'hañ un daolenn" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Kuzhat menegerioù" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Diskouez menegerioù" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enable %s" msgid "(Enabled)" msgstr "Gweredekaat %s" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Diweredekaet" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "O klask" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Diskouez disoc'hoù an enklask" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "O furchal" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "O tiverkañ" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Bez' e rank bezañ un embannadenn RETURN e termenadur un arc'hwel stoket !" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:276 +#: js/messages.php:263 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:277 +#: js/messages.php:264 #, fuzzy #| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field" msgstr "Merkañ pep talvoud en ur vaezienn a-ziforc'h." -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Notenn : ma vez meur a daolenn er restr e vint unanet." -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Kemmañ" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "Pad seveniñ hirañ" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1803,96 +1778,96 @@ msgstr "" msgid "Save" msgstr "Enrollañ" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Klask" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Hide search results" msgid "Query results" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add/Delete columns" msgid "Add columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Dibab ar bann da ziskouez" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1900,108 +1875,113 @@ msgstr "" "N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint " "ma n'o enrollit ket. Kenderc'hel memes tra ?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Ouzhpennañ un dibarzh evit ar bann " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Sort" msgid "Show data row(s)" msgstr "Urzhiañ" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Genel" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Cheñch ger-tremen" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Muioc'h" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Diskouez pep tra" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2011,27 +1991,27 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "hizivaet" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Graet" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2039,149 +2019,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hiziv" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Genver" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Meurzh" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Ebrel" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mae" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Mezheven" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Gouere" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Eost" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Gwengolo" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Here" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Du" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Kzu" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Sul" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Lun" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Gwener" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2189,97 +2169,97 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sizh." #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Eur" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Munut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Eilenn" @@ -2330,16 +2310,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2365,7 +2345,7 @@ msgstr "Ment an destenn" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "War gresk" @@ -2374,7 +2354,7 @@ msgstr "War gresk" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "War zigresk" @@ -2490,7 +2470,7 @@ msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Diverkañ" @@ -2671,7 +2651,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2728,12 +2708,13 @@ msgstr "Askañ pep tra" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" @@ -2741,7 +2722,7 @@ msgstr "Ezporzhiañ" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2827,16 +2808,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2850,21 +2831,21 @@ msgstr "N'eus bet termenet meneger ebet !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Dibar" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalegezh" @@ -2874,13 +2855,13 @@ msgstr "Kardinalegezh" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Etrerummadiñ" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Evezhiadenn" @@ -2925,7 +2906,7 @@ msgstr "Gwelet" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Framm" @@ -2998,34 +2979,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Eilañ" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3073,6 +3055,104 @@ msgstr "Taolennoù nevez" msgid "There are no recent tables" msgstr "N'eus taolenn nevez ebet" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Reked SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Taolennoù" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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 "Stadegoù war ar rekedoù" + +#: 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." @@ -3166,7 +3246,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3565,11 +3645,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Reked SQL" - #: libraries/Util.class.php:710 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:292 @@ -3604,7 +3679,7 @@ msgid "Create PHP Code" msgstr "Krouiñ kod PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Freskaat" @@ -3700,13 +3775,6 @@ msgstr "Moullañ" msgid "shared" msgstr "kenrannet" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Taolennoù" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3747,11 +3815,11 @@ msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù "%s"." msgid "Check Privileges" msgstr "Gwiriañ ar gwirioù" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3759,12 +3827,12 @@ msgstr "" "Peurliesañ e talvez ez eus ur fazi ereadurezh enni. Gwiriit ha n'eus ket ur " "fazi o tont war wel a-is." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "N'eus ket bet gallet kargañ ar c'hefluniadur dre ziouer adalek %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3776,38 +3844,38 @@ msgstr "" "RET eo d'an arventenn $cfg['PmaAbsoluteUri'] bezañ resisaet er " "restr kefluniañ!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh." -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5918,8 +5986,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6542,10 +6610,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7197,18 +7261,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Invalid table name" msgid "filter databases by name" msgstr "Anv taolenn direizh" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Invalid table name" msgid "filter items by name" @@ -7306,17 +7370,17 @@ msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Ar framm hepken" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Ar roadennoù hepken" @@ -7713,8 +7777,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -8233,7 +8296,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8778,7 +8841,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9442,7 +9505,7 @@ msgstr "Ouzhpennañ ur rakger d'an daolenn" msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9780,7 +9843,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9846,31 +9909,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9986,15 +10049,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10077,7 +10136,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10136,10 +10195,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10265,874 +10320,171 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Urzhiad" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of inserted rows" -msgid "Number of data points: " -msgstr "Niver a linennoù da ensoc'hañ" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Freskaat" - -# verb pe ak. ? -#: server_status.php:894 server_variables.php:156 -#, fuzzy -#| msgid "Filter" -msgid "Filters" -msgstr "Silañ" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy #| msgid "Connections" msgid "Instructions" msgstr "Kevreadennoù" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Personelaat ar bajenn deraouiñ" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "Urzhiad" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Furmad ar restr enporzhiañ" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "N'eo ket oberiant an heuliañ." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adlakaat an talvoud dre ziouer" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11141,7 +10493,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11149,20 +10501,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Paouez gant an evezhiañ" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11170,11 +10522,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11182,102 +10534,717 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Dilemel ar grafik" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Foreign Key" msgid "Select series:" msgstr "Diuzit an alc'hwez estren" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Anv taolenn direizh" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add user" msgid "Add this series" msgstr "Ouzhpennañ un implijer" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "Stadegoù war ar rekedoù" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Personelaat ar bajenn deraouiñ" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +# verb pe ak. ? +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +#| msgid "Filter" +msgid "Filters" +msgstr "Silañ" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Furmad ar restr enporzhiañ" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "N'eo ket oberiant an heuliañ." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11831,147 +11798,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Roadennoù a vank evit %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Other core settings" msgid "Create version %1$s of %2$s" msgstr "Arventennoù pouezus all" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -12115,13 +12082,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Diskouez ar voest rekedoù SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12139,131 +12106,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "Reizhet eo bet long_query_time da %d eilenn." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Foreign Key" msgid "Release Series" msgstr "Diuzit an alc'hwez estren" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Other core settings" msgid "Current version: %s" msgstr "Arventennoù pouezus all" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Versions" msgid "Minor Version" msgstr "Stummoù" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Deskrivadur" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache used" msgid "Query cache disabled" msgstr "Krubuilh rekedoù implijet" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." msgstr "N'eo ket oberiant an heuliañ." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12271,23 +12250,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache used" msgid "Query caching method" msgstr "Krubuilh rekedoù implijet" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache used" msgid "Suboptimal caching method." msgstr "Krubuilh rekedoù implijet" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s daolenn" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12679,299 +12658,299 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "SQL queries" msgid "MyISAM key buffer size" msgstr "Rekedoù SQL" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "SQL queries" msgid "Max %% MyISAM key buffer ever used" msgstr "Rekedoù SQL" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "SQL queries" msgid "Percentage of MyISAM key buffer used" msgstr "Rekedoù SQL" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "SQL queries" msgid "Percentage of index reads from memory" msgstr "Rekedoù SQL" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create Table" msgid "Rate of table open" msgstr "Krouiñ un daolenn" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "Furmad ar restr enporzhiañ" -#: libraries/advisory_rules.txt:324 +#: 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:325 -#, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used open files limit" -msgstr "Furmad ar restr enporzhiañ" - -#: libraries/advisory_rules.txt:330 -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:331 libraries/advisory_rules.txt:338 -msgid "" -"Consider increasing {open_files_limit}, and check the error log when " -"restarting after changing open_files_limit." -msgstr "" - #: libraries/advisory_rules.txt:332 #, php-format -msgid "" -"The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" -msgid "Rate of open files" +msgid "Percentage of used open files limit" msgstr "Furmad ar restr enporzhiañ" #: 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 +#, fuzzy +#| msgid "Format of imported file" +msgid "Rate of open files" +msgstr "Furmad ar restr enporzhiañ" + +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "Furmad ar restr enporzhiañ" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "N'eo ket oberiant an heuliañ." -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "N'eo ket oberiant an heuliañ." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "N'eo ket oberiant an heuliañ." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "N'eo ket oberiant an heuliañ." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Force SSL connection" msgid "Percentage of used connections" msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Force SSL connection" msgid "Percentage of aborted connections" msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13100,20 +13079,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13128,7 +13107,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13137,25 +13116,53 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Kio treuzkaset abaoe ar freskadenn ziwezhañ" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Kio resevet abaoe ar freskadenn ziwezhañ" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tremenerezh war ar servijer (e Kio)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" + +#~ msgid "Questions since last refresh" +#~ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)" + +#, fuzzy +#~| msgid "Number of inserted rows" +#~ msgid "Number of data points: " +#~ msgstr "Niver a linennoù da ensoc'hañ" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Freskaat" + #~ msgid "Click to select" #~ msgstr "Klikañ evit diuzañ" diff --git a/po/bs.po b/po/bs.po index d5c0698873..a99704ce39 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Bosnian " -"\n" -"Language: bs\n" +"Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Pretraživanje" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,14 +137,14 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Imena kolona" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Podrazumjevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Podrazumjevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Da" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -343,7 +343,7 @@ msgstr "Veličina" msgid "in use" msgstr "se koristi" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -351,7 +351,7 @@ msgstr "se koristi" msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -359,7 +359,7 @@ msgstr "Napravljeno" msgid "Last update" msgstr "Posljednja izmjena" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -415,7 +415,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza podataka" @@ -423,18 +423,18 @@ msgstr "Baza podataka" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -449,7 +449,7 @@ msgstr "Akcija" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Prikaži" @@ -465,11 +465,11 @@ msgstr "" msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "Versions" msgstr "Operacije" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" @@ -557,49 +557,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dodaj novo polje" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -609,17 +609,17 @@ msgstr "" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy msgid "Add a polygon" msgstr "Dodaj novo polje" @@ -748,8 +748,9 @@ msgstr "Opšte osobine relacija" msgid "Database server" msgstr "Baze" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -770,7 +771,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Korisnik" @@ -1018,12 +1019,12 @@ msgstr "Globalne privilegije" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1033,17 +1034,17 @@ msgstr "" msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1055,13 +1056,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1076,53 +1078,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Izbor servera" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesi" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Konekcije" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike reda" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1130,210 +1095,215 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Vrsta upita" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "Vrsta upita" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "Vrsta upita" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Ukupno" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Ukupno" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Konekcije" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "bajta" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabela" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Operacije" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opšte osobine relacija" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy msgid "Remove chart" msgstr "Promjeni ime tabele u " -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "nema" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1341,521 +1311,523 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Sačuvaj kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opšte osobine relacija" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Import files" msgid "Chart Title" msgstr "Uvoz fajlova" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Lokalni" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Baza ne postoji" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Baza ne postoji" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Vrijeme" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultat" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karakter set" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Dodaj novo polje" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL upit" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcije tabele" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Broj redova po strani" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Lokalni" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy msgid "Reload page" msgstr "Promjeni ime tabele u " -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Ažuriraj upit" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentacija" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentacija" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Lokalni" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "U redu" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy msgid "Renaming Databases" msgstr "Promjeni ime tabele u " -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy msgid "Reload Database" msgstr "Promjeni ime tabele u " -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy msgid "Copying Database" msgstr "Baza ne postoji" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Karakter set" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Koristi tabele" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Dodaj novo polje" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Prikaži mrežu" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Omogućeno" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Onemogućeno" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Broj redova po strani" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Promijeni" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1864,219 +1836,224 @@ msgstr "" msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Pretraživanje" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/obriši kolonu" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQL rezultat" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy msgid "Add columns" msgstr "Dodaj novo polje" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Imena kolona" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Prikaz zapisa" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Prikaži sve" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Dodaj novo polje" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2084,30 +2061,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2115,96 +2092,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "maj" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2212,78 +2189,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "dec" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2291,113 +2268,113 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2449,16 +2426,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "u minuti" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "na sat" @@ -2484,7 +2461,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Rastući" @@ -2493,7 +2470,7 @@ msgstr "Rastući" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Opadajući" @@ -2614,7 +2591,7 @@ msgstr "Prikaz podataka tabele" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Obriši" @@ -2817,7 +2794,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Obustavi" @@ -2872,12 +2849,13 @@ msgstr "Označi sve" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" @@ -2885,7 +2863,7 @@ msgstr "Izvoz" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2969,16 +2947,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2992,21 +2970,21 @@ msgstr "Ključ nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalnost" @@ -3016,13 +2994,13 @@ msgstr "Kardinalnost" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Komentari" @@ -3066,7 +3044,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -3139,38 +3117,39 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Binarni" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 #, fuzzy msgid "Replication" msgstr "Relacije" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3221,6 +3200,109 @@ msgstr "Nema tabela" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL upit" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Vrsta upita" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Prošireni INSERT" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabele" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Polja" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Prikaži tabele" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB status" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike reda" + +#: 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." @@ -3314,7 +3396,7 @@ msgstr "Operacije" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vrijednost" @@ -3715,11 +3797,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL upit" - #: libraries/Util.class.php:710 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:292 @@ -3754,7 +3831,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3853,13 +3930,6 @@ msgstr "Štampaj" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabele" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3902,22 +3972,22 @@ msgstr "Provjeri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3929,38 +3999,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6117,8 +6187,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6775,10 +6845,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7448,18 +7514,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Promijeni redoslijed u tabeli" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7564,17 +7630,17 @@ msgid "Drop the database (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktura i podatci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Samo podaci" @@ -8004,8 +8070,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8580,7 +8645,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Promjenljiva" @@ -9140,7 +9205,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dodatno" @@ -9856,7 +9921,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10230,7 +10295,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionalni kineski" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10312,39 +10377,39 @@ msgstr "Tabela %s je odbačena" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Zauzeće" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz fajlova" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10466,16 +10531,11 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Polja" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -10560,7 +10620,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "verzija PHP-a" @@ -10621,10 +10681,6 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10756,881 +10812,173 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Vrsta upita" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Prošireni INSERT" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Primljeno" + +#: server_status.php:168 +msgid "Sent" +msgstr "Poslato" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Prikaži tabele" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Neuspelih pokušaja" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Prekinuto" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Naredba" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informacije o toku rada" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Broj redova po strani" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Generirao" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Nemoj da mijenjaš lozinku" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Prikaži tabele" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Prikaži tabele" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relacije" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Vrsta upita" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Ime" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Primljeno" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Poslato" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Neuspelih pokušaja" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Prekinuto" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Naredba" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Karakter set datoteke:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Vrsta upita" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dodaj novo polje" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11639,7 +10987,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11647,18 +10995,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11666,11 +11014,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11678,89 +11026,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy msgid "Preset chart" msgstr "Promjeni ime tabele u " -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Izaberi sve" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11768,7 +11116,7 @@ msgid_plural "%d seconds" msgstr[0] "u sekundi" msgstr[1] "u sekundi" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11776,6 +11124,622 @@ msgid_plural "%d minutes" msgstr[0] "se koristi" msgstr[1] "se koristi" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Ime" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nemoj da mijenjaš lozinku" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Prikaži tabele" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Prikaži tabele" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacije" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Karakter set datoteke:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Vrsta upita" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12350,149 +12314,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza ne postoji" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Verzija servera" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Verzija servera" @@ -12635,12 +12599,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL upit" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy msgid "The slow query log is disabled." msgstr "Vrsta upita" @@ -12655,127 +12619,137 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Izaberi tabele" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Verzija servera" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "verzija PHP-a" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Opis" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL set karaktera" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy msgid "The query cache is not enabled." msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12783,21 +12757,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tabela" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13174,286 +13148,286 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "Prikaži kompletne upite" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Prikaži kompletne upite" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "Prikaži kompletne upite" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Prikaži kompletne upite" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Napravi novu stranu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Karakter set datoteke:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Karakter set datoteke:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Karakter set datoteke:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Karakter set datoteke:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy msgid "Thread cache is not efficient." msgstr "Vrsta upita" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Konekcije" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Konekcije" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13582,20 +13556,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13610,7 +13584,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13619,25 +13593,47 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Izbor servera" + +#~ msgid "Runtime Information" +#~ msgstr "Informacije o toku rada" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Broj redova po strani" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Generirao" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Vrsta upita" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ca.po b/po/ca.po index 874413053a..a840b474c2 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:00+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Catalan " -"\n" -"Language: ca\n" +"Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Cerca" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Executa" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nom de clau" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descripció" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentaris de la base de dades: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Comentaris de la taula" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Columna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipus" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipus" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Defecte" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Defecte" msgid "Links to" msgstr "Enllaços a" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Comentaris" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Si" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Taula" @@ -338,7 +338,7 @@ msgstr "Mida" msgid "in use" msgstr "en ús" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "en ús" msgid "Creation" msgstr "Creació" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Creació" msgid "Last update" msgstr "Darrera actualització" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Taules seguides" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Base de dades" @@ -414,17 +414,17 @@ msgstr "Base de dades" msgid "Last version" msgstr "Darrera versió" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Creat" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Estat" @@ -439,7 +439,7 @@ msgstr "Acció" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostra" @@ -455,11 +455,11 @@ msgstr "Esborra les dades de seguiment per aquesta taula" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "actiu" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "no actiu" @@ -467,11 +467,11 @@ msgstr "no actiu" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Instantània de l'estructura" @@ -539,45 +539,45 @@ msgstr "Utilitzar OpenStreetMaps com a capa base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punt %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Afegir un punt" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Cadena de línies" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Cercle exterior" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Cercle interior" @@ -585,15 +585,15 @@ msgstr "Cercle interior" msgid "Add a linestring" msgstr "Afegeix una cadena de línies" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Afegeix un cercle interior" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polígon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Afegeix un polígon" @@ -738,8 +738,9 @@ msgstr "Més paràmetres" msgid "Database server" msgstr "Servidor de base de dades" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servidor" @@ -758,7 +759,7 @@ msgstr "Versió del protocol" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Usuari" @@ -1006,12 +1007,12 @@ msgstr "Recarrega els permisos" msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Tanca" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1021,15 +1022,15 @@ msgstr "Tanca" msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Gràfic de tràfic en viu" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Gràfic de conexions/processos en viu" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Gràfic de consultes en viu" @@ -1040,13 +1041,14 @@ msgstr "Dades estàtiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Altre" @@ -1061,48 +1063,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB enviats des de la darrera actualització" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB rebuts des de la darrera actualització" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tràfic del servidor (en KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Connexions des de la darrera actualització" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processos" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Connexions / Processos" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Consultes des de la darrera actualització" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Consultes (sentències executades pel servidor)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Consulta d'estadístiques" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configuració local de la monitorització incompatible" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1115,196 +1083,201 @@ msgstr "" "més. Si us plau, restableixi la configuració per defecte al menú " "Configuració." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Eficiència del cau de consultes" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Ús de la memòria cau de consultes" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Memòria cau de consultes utilitzada" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Ús de la CPU del sistema" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memòria del sistema" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Intercanvi del sistema" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Mitjana de càrrega" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memòria total" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memòria al cau" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memòries intermitges" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memòria lliure" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memòria utilitzada" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Intercanvi Total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Intercanvi en cau" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Intercanvi utilitzat" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Intercanvi lliure" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes enviats" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Connexions" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processos" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d taula(es)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Consultes" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Configuració" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Elimina el gràfic" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Edita títol i etiquetes" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Afegeix gràfic a a la graella" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Afegeix al menys una variable a la serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Res" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Reempren la monitorització" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pausa la monitorització" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» i «slow_query_log» estàn actius." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "«general_log» està actiu." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "«slow_query_log» està actiu." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» i «general_log» estàn desactivats." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "«log_output» no està definit com a TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "«log_output» està definit com a TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1315,12 +1288,12 @@ msgstr "" "més de %d segons. És recomenable configurar «long_query_time» entre 0 i 2 " "segons depenent del sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» està configurat a %d segon(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1329,30 +1302,30 @@ msgstr "" "valors predeterminats en reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Definir «long_query_time» a %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1360,53 +1333,53 @@ msgstr "" "No pots canviar aquestes variables. Inicia la sessió com a root o contacta " "amb el teu administrador de bases de dades." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Canviar configuracions" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Títol del gràfic" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividit per %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unitat" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Del registre de consultes lentes" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Del registre general" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "analitzant registres" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analitzant i carregant registres. Pot tardar." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancel.lar petició" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1417,7 +1390,7 @@ msgstr "" "d'agrupació, donat que la resta d'atributos de les consultes pot diferir, " "com el temps d'inici.." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1426,101 +1399,101 @@ msgstr "" "Donat que s'ha triat agrupar consultes INSERT, les consultes INSERT a la " "mateixa taula també s'han agrupat, sense importar les dades afegides." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "S'han carregat les dades del registre. Consultes executades en aquest " "període de temps:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Saltar a la taula del registre" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "No s'han trobat dades" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Registre analitzat, però no s'han trobat dades en aquest periode de temps." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analitzant…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Explicar sortida" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Temps" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Temps total:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Perfilant resultats" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Gràfic" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Editar gràfic" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Series" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opcions de filtres per a la taula del registre" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultes per paraula/expresió regular:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultes, ignorant dades variables en clàusules WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Suma de files agrupades:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Carregant els registres" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Ha fallat l'actualització de la monitorització" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1530,261 +1503,263 @@ msgstr "" "vàlida. La causa més probable d'aixó és que la sessió ha finalitzat. Pot ser " "d'ajuda recarregar la pàgina i tornar a entrar les dades de connexió." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Recarregar pàgina" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Files afectades:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Ha fallat la interpretació de l'arxiu de configuració. No sembla que sigui " "codi JSON vàlid." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Ha fallat la creació de la graella del gràfic amb la configuració importada. " "Restablint la configuració per defecte…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importar configuració del monitor" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Tria l'arxiu a importar" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analitzar consulta" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistema d'assessorament" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Possibles problemes de rendiment" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problema" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomanacions" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalls de la regla" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justificació" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variable usada / formula" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Prova" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Carregar" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Petició de procés" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Error a la petició de procés" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "No s'han triat bases de dades." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Eliminació de columna" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Afegir clau principal" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Correcte" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Prem per rebutjar aquest avís" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Reanomenar bases de dades" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Recarregar base de dades" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copiant base de dades" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Canvi de Joc de Caràcters" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "La taula ha de tenir al menys una columna" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Afegir Taula" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Amagar índex" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostra índex" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Desactiva les comprovacions de claus externes" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Activat" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Desactivat" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Cercar" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Amaga els resultats de cerca" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostrar resultats de cerca" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Navegant" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Esborrant" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definició d'una funció enmagatzemada ha d'incloure una instrucció RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valors per la columna %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valors per la nova columna" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Entra cada valor en un camp separat" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Afegir %d valors" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Nota: Si l'arxiu conté múltiples taules, es combinaran en una" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Amagar quadre de consultes" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Canvi" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Temps d'execució de la consulta" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1793,90 +1768,90 @@ msgstr "%d no és un num. vàlid de fila." msgid "Save" msgstr "Desa" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Cerca de zoom" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Cada punt representa una fila de dades." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Situant el cursor sobre un punt es mostrarà la seva etiqueta." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Per acostar, selecciona una secció del gràfic amb el ratolí." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Prem en un punt de dades per veure i possiblement editar la fila de dades." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gràfic es pot re-dimensionar arrossegant la cantonada inferior dreta." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "selecciona dues columnes" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Selecciona dues columnes diferents" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Resultats de consultes" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Còpia" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Afegeix columnes" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1884,15 +1859,20 @@ msgstr "" "No has desat els canvis en el disseny. Es perdran si no els deses. Vols " "continuar?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Afegeix una opció per a la columna " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Prem la tecla escape per cancel·lar la edició" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1900,29 +1880,29 @@ msgstr "" "Has editat algunes dades i no s'han desat. Estàs segur que vols sortir " "d'aquesta pàgina per desar les dades?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Arrossega per reordenar" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Clica per clasificar" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Prem per marcar/desmarcar" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Prem a la fletxa de llista desplegable
per alternar la visibilitat de " "la columna" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1931,7 +1911,7 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1942,68 +1922,68 @@ msgstr "" "També pots editar la majoria de les columnes
prement directament en el " "seu contingut." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "També pots editar la majoria de les columnes
prement directament en el " "seu contingut." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Vés a l'enllaç" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Nom de les columnes" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Actualitza fila(es)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Genera" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Més" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Mostra tot" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Amagar índex" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2013,266 +1993,266 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "actualitzat" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Fet" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Mes següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Avui" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Gener" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Febrer" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Març" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Abril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maig" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juny" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juliol" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agost" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Setembre" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Octubre" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembre" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Des" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Divendres" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Se" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Segon" @@ -2323,16 +2303,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per segon" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per hora" @@ -2360,7 +2340,7 @@ msgstr "Tamany de lletra" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascendent" @@ -2369,7 +2349,7 @@ msgstr "Ascendent" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descendent" @@ -2485,7 +2465,7 @@ msgstr "Esborrar les coincidències per a la taula %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Esborra" @@ -2655,7 +2635,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Finalitzar" @@ -2711,12 +2691,13 @@ msgstr "Marcar-ho tot" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" @@ -2724,7 +2705,7 @@ msgstr "Exporta" msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2809,17 +2790,17 @@ msgstr "No es pot llegir l'arxiu pujat (i mogut)." msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2834,21 +2815,21 @@ msgstr "No s'ha definit l'índex!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexos" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalitat" @@ -2858,13 +2839,13 @@ msgstr "Cardinalitat" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Ordenació" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comentari" @@ -2909,7 +2890,7 @@ msgstr "Vista" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Estructura" @@ -2982,34 +2963,35 @@ msgstr "Esdeveniments" msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Usuaris" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Registre binari" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicació" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Complements" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motors" @@ -3057,6 +3039,104 @@ msgstr "Taules recents" msgid "There are no recent tables" msgstr "No hi ha taules recents" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Consulta SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Gestor" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Memòria cau de consultes" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Fils" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dades temporals" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Insercions demorades" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Memòria cau de claus" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Unions" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Classificant" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Taules" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordinador de transaccions" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Arxius" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Sincronitza (tanca) totes les taules" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Mostra taules obertes" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Mostra servidors esclaus" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Mostra l'estat del mestre -show master status-" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Mostra l'estat d'esclaus" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Buida la memòria cau de consultes" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Estat InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Consulta d'estadístiques" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Totes les variables d'estat" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitorització" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Assessorament" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3158,7 +3238,7 @@ msgstr "Operador" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valor" @@ -3553,11 +3633,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Consulta SQL" - #: libraries/Util.class.php:710 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:292 @@ -3592,7 +3667,7 @@ msgid "Create PHP Code" msgstr "Crea codi PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Refresca" @@ -3689,13 +3764,6 @@ msgstr "Imprimeix" msgid "shared" msgstr "compartit" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Taules" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3736,11 +3804,11 @@ msgstr "Comprova els permisos per la base de dades "%s"." msgid "Check Privileges" msgstr "Comprova els permisos" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "No es pot llegir l'arxiu de configuració" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3748,12 +3816,12 @@ msgstr "" "Això generalment significa que té un error de sintaxi, revisa els errors que " "es mostren a continuació." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No es pot carregar la configuració per defecte des de: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3765,39 +3833,39 @@ msgstr "" "La directiva $cfg['PmaAbsoluteUri'] HA d'estar establerta a " "l'arxiu de configuració!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "intent de sobreescriure la variable GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "possible aprofitament" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "detectat teclat numéric" @@ -6101,8 +6169,8 @@ msgstr "" "Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Nom d'usuari" @@ -6763,10 +6831,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Estat InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Ús del grup de memòries intermitges" @@ -7464,20 +7528,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "filtrar taules pel nom" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Buidar sèrie" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7591,17 +7655,17 @@ msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Només l'estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Estructura i dades" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Només dades" @@ -7996,8 +8060,7 @@ msgstr "Mostra tipus MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Servidor" @@ -8610,7 +8673,7 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variable" @@ -9121,7 +9184,7 @@ msgstr "Atributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9582,8 +9645,7 @@ msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"... esborra l'antic de les taules d'usuaris i recarrega els permisos " -"després." +"... esborra l'antic de les taules d'usuaris i recarrega els permisos després." #: libraries/server_privileges.lib.php:1948 msgid "Change Login Information / Copy User" @@ -9823,7 +9885,7 @@ msgstr "Afegeix un prefix a la taula" msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Cap" @@ -10177,7 +10239,7 @@ msgstr "Canviar petit/gran" msgid "Toggle relation lines" msgstr "Canviar línies de relació" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" @@ -10243,31 +10305,31 @@ msgstr "S'ha creat una pàgina" msgid "Page creation failed" msgstr "Ha fallat la creació de pàgina" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "pàgina" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importar des de la pàgina seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exporta a la pàgina seleccionada" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Crea una pàgina i exporta en ella" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nou nom de pàgina: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recomanat" @@ -10386,15 +10448,11 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Arxius" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -10479,7 +10537,7 @@ msgstr "Mòdul" msgid "Library" msgstr "Llibreria" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versió" @@ -10539,10 +10597,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Mostra l'estat del mestre -show master status-" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" @@ -10684,132 +10738,101 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status.php:657 -msgid "Handler" -msgstr "Gestor" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "tràfic de xarxa des de l'inici: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Memòria cau de consultes" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "" +"Aquest servidor MySQL ha estat actiu durant %1$s. Es va iniciar el %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Fils" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Aquest servidor MySQL treballa com a mestre i esclau en un " +"procés de replicació ." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dades temporals" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Aquest servidor MySQL treballa com a mestre en un procés de " +"replicació ." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Insercions demorades" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Aquest servidor MySQL treballa com a esclau en un procés de " +"replicació ." -#: server_status.php:663 -msgid "Key cache" -msgstr "Memòria cau de claus" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Per obtenir més informació sobre l'estat de replicació al servidor, visita " +"la secció de replicació." -#: server_status.php:664 -msgid "Joins" -msgstr "Unions" +#: server_status.php:122 +msgid "Replication status" +msgstr "Estat de la replicació" -#: server_status.php:666 -msgid "Sorting" -msgstr "Classificant" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " +"llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordinador de transaccions" +#: server_status.php:149 +msgid "Received" +msgstr "Rebut" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Sincronitza (tanca) totes les taules" +#: server_status.php:168 +msgid "Sent" +msgstr "Enviat" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Mostra taules obertes" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "max. connexions a la vegada" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Mostra servidors esclaus" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Intents erronis" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Mostra l'estat d'esclaus" +#: server_status.php:253 +msgid "Aborted" +msgstr "Avortat" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Buida la memòria cau de consultes" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informació d'execució" +#: server_status.php:329 +msgid "Command" +msgstr "Ordre" -#: server_status.php:830 -msgid "All status variables" -msgstr "Totes les variables d'estat" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitorització" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Assessorament" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Nombre de files:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Velocitat de refresc: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtres" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Incloent la paraula:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Mostra només valors d'alerta" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrar per categoria..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Mostra valors sense format" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Enllaços relacionats:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Executar analitzador" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instruccions" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10817,7 +10840,7 @@ msgstr "" "El sistema de consells pot proporcionar recomanacions sobre les variables " "del servidor mitjançant l'anàlisi de les variables d'estat del servidor." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10827,7 +10850,7 @@ msgstr "" "càlculs senzills i regles generals que no necessàriament s'apliquen al seu " "sistema." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10838,7 +10861,7 @@ msgstr "" "Establir ajustaments incorrectes pot tenir un efecte molt negatiu en el " "rendiment." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10848,832 +10871,39 @@ msgstr "" "al mateix temps, observar o mesurar la teva base de dades, i desfer el canvi " "si no hi ha una millora clarament mesurable." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Consultes des de l'inici: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Sentències" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "tràfic de xarxa des de l'inici: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" -"Aquest servidor MySQL ha estat actiu durant %1$s. Es va iniciar el %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Aquest servidor MySQL treballa com a mestre i esclau en un " -"procés de replicació ." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Aquest servidor MySQL treballa com a mestre en un procés de " -"replicació ." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Aquest servidor MySQL treballa com a esclau en un procés de " -"replicació ." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Per obtenir més informació sobre l'estat de replicació al servidor, visita " -"la secció de replicació." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Estat de la replicació" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " -"llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." - -#: server_status.php:1191 -msgid "Received" -msgstr "Rebut" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Enviat" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "max. connexions a la vegada" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Intents erronis" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Avortat" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Ordre" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"El nombre de connexions que van ser avortades pel fet que el client va morir " -"sense tancar la connexió correctament." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." - -#: server_status.php:1529 -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 "" -"El nombre de transaccions que han fet servir el registre binari temporal " -"però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " -"per desar elements de la transacció." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"El nombre de transaccions que han fet servir el registre binari temporal." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." - -#: server_status.php:1532 -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 "" -"El nombre de taules temporals en disc creades automàticament per el servidor " -"mentre executa instruccions. Si Created_tmp_disk_tables és gran, potser vols " -"incrementar el valor de tmp_table_size per fer que les taules temporals " -"treballin en memòria en lloc de treballar en disc." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Arxius temporals creats per mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"El nombre de taules temporals creades en memòria per el servidor mentre " -"executa instruccions." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " -"quelcom error (possile clau duplicada)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " -"s'usa INSERT DELAYED té el seu propi fil." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "El nombre de files escrites amb INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "El nombre d'instruccions FLUSH executades." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "El nombre d'instruccions COMMIT internes." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." - -#: server_status.php:1541 -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 "" -"El servidor MySQL pot preguntar al motor d'enmagatzemament NDB Cluster si " -"coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " -"Handler_discover indica el nombre de taules descobertes." - -#: server_status.php:1542 -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 "" -"El nombre de vegades que s'ha llegit la primera entrada des d'un índex. Si " -"és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " -"per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." - -#: server_status.php:1543 -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 "" -"El nombre de peticions basades en una clau per llegir una fila. Si és alt, " -"és una bona indicació de que les consultes i taules estàn indexades " -"acuradament." - -#: server_status.php:1544 -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 "" -"El nombre de peticions per llegir la següent fila en l'ordre de la clau. " -"Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " -"rang o si s'està fent una cerca d'index." - -#: server_status.php:1545 -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 "" -"El nombre de peticions per llegir la fila anterior en l'ordre de la clau. " -"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " -"DESC." - -#: server_status.php:1546 -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 "" -"El nombre de peticions per llegir una fila basada en una posició fixa. Aixó " -"és alt si es fan moltes consultes que requereixen ordenació del resultat. " -"Probablement tens moltes consultes que fan que MySQL cerqui les taules " -"senceres o bé hi ha joins que no fan servir les claus acuradament." - -#: server_status.php:1547 -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 "" -"El nombre de peticions per llegir la següent fila a l'arxiu de dades. Aixó " -"és alt si es fan moltes cerques de taula. Generalment, suggereix que les " -"taules no estàn indexades acuradament o bé les consultes no estàn fetes per " -"aprofitar les avantatges dels índexos definits." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "El nombre d'instruccions ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "El nombre de peticions per a actualitzar una fila en una taula." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "El nombre de peticions per a insertar una fila en una taula." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "El nombre de pàgines contenint dades (brutes o netes)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "El nombre de pàgines actualment brutes." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"El nombre de pàgines a la memòria cau que s'han demanat per ser " -"actualitzades." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "El nombre de pàgines lliures." - -#: server_status.php:1555 -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 "" -"El nombre de pàgines bloquejades a la memòria cau de InnoDB. Aquestes " -"pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " -"esborrar per qualsevol altra raó." - -#: server_status.php:1556 -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 "" -"El nombre de pàgines en ús degut a que s'han marcat per tasques " -"administratives com a bloqueixos de files o l'index del hash adaptatiu. " -"Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Tamany total de la memòria cau, en pàgines." - -#: server_status.php:1558 -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 "" -"El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " -"consulta cerca en una gran part de una taula però en ordre aleatori." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " -"fa una cerca secuencial a la taula sencera." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " -"memòria cau i ha de fer lectures de pàgines individuals." - -#: server_status.php:1562 -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 "" -"Normalment, les escritures a la memòria cau d'InnoDB es fan en segon pla. En " -"canvi, si és necessari llegir o crear una pàgina i no hi ha pàgines netes " -"disponibles, fa falta esperar a que primer s'actualitzin pàgines. Aquest " -"comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " -"cau és adequat, aquest valor sól ser petit." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "El nombre d'operacions fsync() aproximades." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "El nombre actual d'operacions fsync() pendents." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "El nombre actual de lectures pendents." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "El nombre actual d'escritures pendents." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "La quantitat aproximada de dades llegides, en bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "El nombre total de dades llegides." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "El nombre total de dades escrites." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "La quantitat aproximada de dades escrites, en bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " -"per a aquest propòsit." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " -"per a aquest propòsit." - -#: server_status.php:1574 -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 "" -"El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " -"registre i a esperar a que s'actualitzés abans de continuar." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "El nombre de peticions d'escriptura al registre." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "El nombre d'escriptures físiques a l'arxiu de registre." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Escriptures pendents a l'arxiu de registre." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "El nombre de bytes escrits a l'arxiu de registre." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "El nombre de pàgines creades." - -#: server_status.php:1582 -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 "" -"El tamany de pàgina d'InnoDB compilat (per defecte 16KB). Bastants valors es " -"comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " -"a bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "El nombre de pàgines llegides." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "El nombre de pàgines escrites." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "El nombre de bloquejos de files actualment en espera." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "El temps promig en fer un bloqueig de fila, en milisegons." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "El temps total emprat en fer bloquejos de files, en milisegons." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "El nombre de files esborrades de taules InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "El nombre de files afegides a taules InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "El nombre de files llegides de taules InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "El nombre de files actualitzades en taules InnoDB." - -#: server_status.php:1594 -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 "" -"El nombre de bloquejos de clau a la memòria cau de les claus que han canviat " -"però que encara no han estat actualitzades a disc. Es coneix com a " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " -"pot fer servir per saber quànta memòria cau de les claus s'utilitza." - -#: server_status.php:1596 -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 "" -"El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " -"marca indicativa del màxim nombre de blocs usats mai a l'hora." - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Format de l'arxiu importat" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." - -#: server_status.php:1599 -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 "" -"El nombre de lectures físiques d'un bloc de clau del disc. Si Key_reads és " -"gran, llavors el valor de key_buffer_size probablement és massa petit. El " -"rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" -"El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" -"El cost total de la darrera consulta compilada tal com el valora " -"l'optimitzador de consultes. És útil per comparar el cost de diferents plans " -"de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " -"compilat cap consulta." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"El nombre màxim de connexions que han estat en ús a la vegada des de que el " -"servidor s'ha iniciat." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"El nombre de taules que han estat obertes. Si el nombre de taules obertes és " -"gran, probablement el valor de memòria cau de taula és massa petit." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "El nombre d'arxius que estàn oberts." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"El nombre de fluxes que estàn oberts (usats principalment per a registre)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "El nombre de taules que estàn obertes." - -#: server_status.php:1611 -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 "" -"El nombre de blocs de memòria lliures en memòria cau de consultes. Els " -"números alts poden indicar problemes de fragmentació, que poden ser resolts " -"mitjançant una ordre FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "La quantitat de memòria liure per a memòria cau de consultes." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "El nombre d'encerts a memòria cau." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "El nombre de consultes afegides a la memòria cau." - -#: server_status.php:1615 -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 "" -"El nombre de consultes tretes de la memòria cau per alliberar memòria per " -"deixar lloc a noves consultes. Aquesta informació pot ajudar a ajustar el " -"tamany de la memòria cau de consultes. La memòria cau de consultes utilitza " -"l'estratègia menys recentment usada(least recently used - LRU) per decidir " -"quines consultes treure de la memòria cau." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"El nombre de consultes no enviades a la memòria cau (no enviables, o no " -"enviades degut al paràmetre query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "El nombre de consultes registrades a la memòria cau." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "El nombre total de blocs a la memòria cau de consultes." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." - -#: server_status.php:1620 -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 "" -"El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " -"comprovar acuradament els indexs de les taules." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"El nombre de joins que han usat un rang de cerca en una taula de referència." - -#: server_status.php:1622 -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 "" -"El nombre de joins sense claus que comproven per l'ús de claus després de " -"cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " -"indexs de les taules.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"El nombre de joins que han usat rangs a la primera taula. (Normalment no és " -"crític si el valor no és molt gran.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"El nombre de taules temporals obertes actualment pel fil esclau de SQL." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " -"de SQL ha recuperat transaccions." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " -"mestre." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"El nombre de fils que han tardat més que slow_launch_time segons a crear." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "El nombre de consultes que han tardat més que long_query_time segons." - -#: server_status.php:1630 -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 "" -"El nombre de passades d'intercal.lació que l'algorisme de classificació ha " -"hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " -"valor de la variable de sistema sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "El nombre de classificacions fetes amb rangs." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "El nombre de files classificades." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "El nombre de classificacions fetes cercant la taula." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." - -#: server_status.php:1635 -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 "" -"El nombre de vegades que un bloqueig de taula no s'ha pogut fer " -"immediatament i s'ha necessitat una espera. Si aixó és alt, i es detecten " -"problemes de rendiment, s'hauria de considerar l'optimització de les " -"consultes, o també dividir la taula o taules en vàries o bé utilitzar la " -"replicació." - -#: server_status.php:1636 -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 "" -"El nombre de fils a la memòria cau de fil. L'index de memòria cau es pot " -"comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " -"d'augmentar el valor de thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "El nombre de connexions obertes simultàniament." - -#: server_status.php:1638 -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 "" -"El nombre de fils creats per gestionar connexions. Si Threads_created és " -"gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " -"no dóna una millora de rendiment notable si es té una bona aplicació de " -"fil.)" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "El seguiment no està actiu." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "El nombre de fils que no estàn dormint." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Començar monitorització" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instruccions/configuració" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Reorganització acabada/edició de gràfics" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Afegir gràfic" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Reorganitzar/editar gràfics" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Velocitat de refresc" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Columnes del gràfic" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Ordenació del gràfic" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11681,15 +10911,15 @@ msgstr "" "La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " "navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Restaura el valor per defecte" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Instruccions de Monitorització" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11703,7 +10933,7 @@ msgstr "" "general_log habilitat. Noteu però, que la general_log produeix una gran " "quantitat de dades i augmenta la càrrega del servidor fins en un 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11716,11 +10946,11 @@ msgstr "" "MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " "de servidor." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Utilitzant el monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11731,7 +10961,7 @@ msgstr "" "secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " "en cada gràfic corresponent." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11744,11 +10974,11 @@ msgstr "" "consultes agrupades, on podràs clicar en qualsevol de les instruccions " "SELECT per analitzar-la amb més detall." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Tingueu en compte:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11761,93 +10991,830 @@ msgstr "" "lapse de temps petit i per desactivar el general_log i buidar la taula una " "vegada que el monitoratge no es requereixi més." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Gràfic predefinit" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Variable(s) d'estat" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Comunment monitoritzat" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "o escriu el nom de variable:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Mostra com a valor diferencial" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Afegir unitat als valors" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Afegir aquesta serie" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Buidar sèrie" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Series al gràfic:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Estadístiques del registre" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Rang de temps seleccionat:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Elimina dades variables en les instruccions INSERT per a una millor agrupació" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Tria de quin registre vols que es generin les estadístiques." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Els resultats s'agrupen pel text de la consulta." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analitzador de consultes" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segon" msgstr[1] "%d segons" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuts" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Consultes des de l'inici: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Sentències" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtres" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Incloent la paraula:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Mostra només valors d'alerta" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrar per categoria..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Mostra valors sense format" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Enllaços relacionats:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"El nombre de connexions que van ser avortades pel fet que el client va morir " +"sense tancar la connexió correctament." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." + +#: server_status_variables.php:334 +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 "" +"El nombre de transaccions que han fet servir el registre binari temporal " +"però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " +"per desar elements de la transacció." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"El nombre de transaccions que han fet servir el registre binari temporal." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." + +#: server_status_variables.php:346 +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 "" +"El nombre de taules temporals en disc creades automàticament per el servidor " +"mentre executa instruccions. Si Created_tmp_disk_tables és gran, potser vols " +"incrementar el valor de tmp_table_size per fer que les taules temporals " +"treballin en memòria en lloc de treballar en disc." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Arxius temporals creats per mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"El nombre de taules temporals creades en memòria per el servidor mentre " +"executa instruccions." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " +"quelcom error (possile clau duplicada)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " +"s'usa INSERT DELAYED té el seu propi fil." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "El nombre de files escrites amb INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "El nombre d'instruccions FLUSH executades." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "El nombre d'instruccions COMMIT internes." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." + +#: server_status_variables.php:381 +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 "" +"El servidor MySQL pot preguntar al motor d'enmagatzemament NDB Cluster si " +"coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " +"Handler_discover indica el nombre de taules descobertes." + +#: server_status_variables.php:387 +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 "" +"El nombre de vegades que s'ha llegit la primera entrada des d'un índex. Si " +"és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " +"per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." + +#: server_status_variables.php:393 +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 "" +"El nombre de peticions basades en una clau per llegir una fila. Si és alt, " +"és una bona indicació de que les consultes i taules estàn indexades " +"acuradament." + +#: server_status_variables.php:398 +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 "" +"El nombre de peticions per llegir la següent fila en l'ordre de la clau. " +"Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " +"rang o si s'està fent una cerca d'index." + +#: server_status_variables.php:403 +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 "" +"El nombre de peticions per llegir la fila anterior en l'ordre de la clau. " +"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " +"DESC." + +#: server_status_variables.php:407 +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 "" +"El nombre de peticions per llegir una fila basada en una posició fixa. Aixó " +"és alt si es fan moltes consultes que requereixen ordenació del resultat. " +"Probablement tens moltes consultes que fan que MySQL cerqui les taules " +"senceres o bé hi ha joins que no fan servir les claus acuradament." + +#: server_status_variables.php:414 +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 "" +"El nombre de peticions per llegir la següent fila a l'arxiu de dades. Aixó " +"és alt si es fan moltes cerques de taula. Generalment, suggereix que les " +"taules no estàn indexades acuradament o bé les consultes no estàn fetes per " +"aprofitar les avantatges dels índexos definits." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "El nombre d'instruccions ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "El nombre de peticions per a actualitzar una fila en una taula." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "El nombre de peticions per a insertar una fila en una taula." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "El nombre de pàgines contenint dades (brutes o netes)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "El nombre de pàgines actualment brutes." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"El nombre de pàgines a la memòria cau que s'han demanat per ser " +"actualitzades." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "El nombre de pàgines lliures." + +#: server_status_variables.php:443 +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 "" +"El nombre de pàgines bloquejades a la memòria cau de InnoDB. Aquestes " +"pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " +"esborrar per qualsevol altra raó." + +#: server_status_variables.php:448 +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 "" +"El nombre de pàgines en ús degut a que s'han marcat per tasques " +"administratives com a bloqueixos de files o l'index del hash adaptatiu. " +"Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Tamany total de la memòria cau, en pàgines." + +#: server_status_variables.php:458 +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 "" +"El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " +"consulta cerca en una gran part de una taula però en ordre aleatori." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " +"fa una cerca secuencial a la taula sencera." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " +"memòria cau i ha de fer lectures de pàgines individuals." + +#: server_status_variables.php:474 +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 "" +"Normalment, les escritures a la memòria cau d'InnoDB es fan en segon pla. En " +"canvi, si és necessari llegir o crear una pàgina i no hi ha pàgines netes " +"disponibles, fa falta esperar a que primer s'actualitzin pàgines. Aquest " +"comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " +"cau és adequat, aquest valor sól ser petit." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "El nombre d'operacions fsync() aproximades." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "El nombre actual d'operacions fsync() pendents." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "El nombre actual de lectures pendents." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "El nombre actual d'escritures pendents." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "La quantitat aproximada de dades llegides, en bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "El nombre total de dades llegides." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "El nombre total de dades escrites." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "La quantitat aproximada de dades escrites, en bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " +"per a aquest propòsit." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " +"per a aquest propòsit." + +#: server_status_variables.php:516 +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 "" +"El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " +"registre i a esperar a que s'actualitzés abans de continuar." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "El nombre de peticions d'escriptura al registre." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "El nombre d'escriptures físiques a l'arxiu de registre." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Escriptures pendents a l'arxiu de registre." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "El nombre de bytes escrits a l'arxiu de registre." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "El nombre de pàgines creades." + +#: server_status_variables.php:541 +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 "" +"El tamany de pàgina d'InnoDB compilat (per defecte 16KB). Bastants valors es " +"comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " +"a bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "El nombre de pàgines llegides." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "El nombre de pàgines escrites." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "El nombre de bloquejos de files actualment en espera." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "El temps promig en fer un bloqueig de fila, en milisegons." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "El temps total emprat en fer bloquejos de files, en milisegons." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "El nombre de files esborrades de taules InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "El nombre de files afegides a taules InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "El nombre de files llegides de taules InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "El nombre de files actualitzades en taules InnoDB." + +#: server_status_variables.php:579 +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 "" +"El nombre de bloquejos de clau a la memòria cau de les claus que han canviat " +"però que encara no han estat actualitzades a disc. Es coneix com a " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " +"pot fer servir per saber quànta memòria cau de les claus s'utilitza." + +#: server_status_variables.php:588 +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 "" +"El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " +"marca indicativa del màxim nombre de blocs usats mai a l'hora." + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Format de l'arxiu importat" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." + +#: server_status_variables.php:599 +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 "" +"El nombre de lectures físiques d'un bloc de clau del disc. Si Key_reads és " +"gran, llavors el valor de key_buffer_size probablement és massa petit. El " +"rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" +"El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" +"El cost total de la darrera consulta compilada tal com el valora " +"l'optimitzador de consultes. És útil per comparar el cost de diferents plans " +"de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " +"compilat cap consulta." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"El nombre màxim de connexions que han estat en ús a la vegada des de que el " +"servidor s'ha iniciat." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"El nombre de taules que han estat obertes. Si el nombre de taules obertes és " +"gran, probablement el valor de memòria cau de taula és massa petit." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "El nombre d'arxius que estàn oberts." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"El nombre de fluxes que estàn oberts (usats principalment per a registre)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "El nombre de taules que estàn obertes." + +#: server_status_variables.php:645 +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 "" +"El nombre de blocs de memòria lliures en memòria cau de consultes. Els " +"números alts poden indicar problemes de fragmentació, que poden ser resolts " +"mitjançant una ordre FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "La quantitat de memòria liure per a memòria cau de consultes." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "El nombre d'encerts a memòria cau." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "El nombre de consultes afegides a la memòria cau." + +#: server_status_variables.php:659 +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 "" +"El nombre de consultes tretes de la memòria cau per alliberar memòria per " +"deixar lloc a noves consultes. Aquesta informació pot ajudar a ajustar el " +"tamany de la memòria cau de consultes. La memòria cau de consultes utilitza " +"l'estratègia menys recentment usada(least recently used - LRU) per decidir " +"quines consultes treure de la memòria cau." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"El nombre de consultes no enviades a la memòria cau (no enviables, o no " +"enviades degut al paràmetre query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "El nombre de consultes registrades a la memòria cau." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "El nombre total de blocs a la memòria cau de consultes." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." + +#: server_status_variables.php:679 +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 "" +"El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " +"comprovar acuradament els indexs de les taules." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"El nombre de joins que han usat un rang de cerca en una taula de referència." + +#: server_status_variables.php:686 +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 "" +"El nombre de joins sense claus que comproven per l'ús de claus després de " +"cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " +"indexs de les taules.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"El nombre de joins que han usat rangs a la primera taula. (Normalment no és " +"crític si el valor no és molt gran.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"El nombre de taules temporals obertes actualment pel fil esclau de SQL." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " +"de SQL ha recuperat transaccions." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " +"mestre." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"El nombre de fils que han tardat més que slow_launch_time segons a crear." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "El nombre de consultes que han tardat més que long_query_time segons." + +#: server_status_variables.php:717 +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 "" +"El nombre de passades d'intercal.lació que l'algorisme de classificació ha " +"hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " +"valor de la variable de sistema sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "El nombre de classificacions fetes amb rangs." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "El nombre de files classificades." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "El nombre de classificacions fetes cercant la taula." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." + +#: server_status_variables.php:734 +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 "" +"El nombre de vegades que un bloqueig de taula no s'ha pogut fer " +"immediatament i s'ha necessitat una espera. Si aixó és alt, i es detecten " +"problemes de rendiment, s'hauria de considerar l'optimització de les " +"consultes, o també dividir la taula o taules en vàries o bé utilitzar la " +"replicació." + +#: server_status_variables.php:740 +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 "" +"El nombre de fils a la memòria cau de fil. L'index de memòria cau es pot " +"comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " +"d'augmentar el valor de thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "El nombre de connexions obertes simultàniament." + +#: server_status_variables.php:748 +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 "" +"El nombre de fils creats per gestionar connexions. Si Threads_created és " +"gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " +"no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "El seguiment no està actiu." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "El nombre de fils que no estàn dormint." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Errada a la configuració de la variable" @@ -12450,29 +12417,29 @@ msgstr "Límit de clau externa" msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %s, activat el seguiment per %s.%s." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "S'ha activat el seguiment de %s.%s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "S'ha activat el seguiment de %s.%s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Declaracions SQL executades." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12480,121 +12447,121 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Definició de seguiment de dades eliminat correctament" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Error de consulta" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "manipulació de seguiment de dades eliminat correctament" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %s amb dates des de %s fins a %s per l'usuari %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Esborra les dades de seguiment de l'informe" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "No hi ha dades" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Bolcat SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Execució SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Mostra versions" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Desactiva el seguiment per %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Desactiva ara" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Activa el seguiment per %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Activa ara" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crea versió %s de %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Crea versió" @@ -12749,11 +12716,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time està configurat a %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Registre de consultes lentes" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "El registre de consultes lentes està desactivat." @@ -12769,15 +12736,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries està a 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Habilita el registre de consultes lentes establint {log_slow_queries} a " +"'ON'. Això t'ajudarà a solucionar les consultes amb mal rendiment." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries està a 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Serie de versions" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "La versió del servidor MySQL és inferior a 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12785,22 +12770,22 @@ msgstr "" "Hauries d'actualitzar, ja que MySQL 5.1 té millor rendiment, i encara és " "millor en MySQL 5.5." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versió actual: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versió menor" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "Versió inferior a 5.1.30 (la primera versió disponible pública de 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12808,24 +12793,24 @@ msgstr "" "Hauries d'actualitzar, ja que les darreres versions de MySQL 5.1 tenen " "millor rendiment, i MySQL 5.05 encara més." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Versió inferior a 5.5.8 (la primera versió disponible pública de 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Es necessari actualitzar a una versió estable de MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribució" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Versió compilada des del codi font, no és un binari oficial de MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12836,46 +12821,46 @@ msgstr "" "binaris de MySQL oficials, no per els paquets de distribucions (com RedHat, " "Debian/Ubuntu, etc)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" "S'ha trobat \"font\" (\"source\") en el comentari de la versió " "(\"version_comment\")" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "El manual de MySQL només és exacte per als binaris oficials de MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "La documentació de Percona es troba a http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" "S'ha trobat 'percona' als comentaris de la versió (\"version_comment\")" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "La documentació de Drizzle es troba a http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" "La cadena de la versió (%s) coincideix amb el sistema de control de versions " "de Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arquitectura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL no s'ha compilat com a paquet de 64 bits." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12886,20 +12871,20 @@ msgstr "" "totalitat de la seva memòria. És possible que vulgueu considerar la " "instal·lació de la versió de 64 bits de MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Memòria disponible en aquest servidor: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Memòria cau de consultes desactivat" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "El cau de consultes no està activat." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12911,19 +12896,19 @@ msgstr "" "{query_cache_size} a un valor MIB de 2 dígits i ajusta {query_cache_type} a " "'ON'. Nota: Si utilitzes memcached, ignora aquesta recomanació." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size s'estableix a 0 o query_cache_type està a 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Mètode de cau de consultes" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Mètode d'emmagatzematge en memòria cau subòptima." -#: libraries/advisory_rules.txt:157 +#: 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 Article de the " "Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13358,11 +13343,11 @@ msgstr "" "%s%% de totes les taules temporals s'escriuen en el disc, aquest valor ha de " "ser inferior al 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Rati de taules temporals en disc" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13380,7 +13365,7 @@ msgstr "" "que 512 bytes) tal com s'esmenta a la documentació de MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13389,17 +13374,17 @@ msgstr "" "Índex de taules temporals que s'escriuen en el disc: %s, aquest valor ha de " "ser inferior a 1 per hora" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Tamany de l'àrea de claus MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "El buffer de claus no s'ha inicialitzat. No s'utilitzarà una memòria cau de " "claus MyISAM." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13407,21 +13392,21 @@ msgstr "" "Defineix {key_buffer_size} en funció de la mida dels índexs MyISAM. 64M és " "un bon començament." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size és 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "%% Màxim àrea de claus MyISAM usada mai" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Àrea de claus MyISAM (cau d'índex) usada %% baixa." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13431,7 +13416,7 @@ msgstr "" "per veure si s'han eliminat índexs, o les consultes i les expectatives d'ús " "dels índexs." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13439,47 +13424,47 @@ msgstr "" "Màxim %% d'àrea de claus MyISAM usat mai: %s%%, aquest valor ha d'estar al " "voltant del 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Percentatge usat de l'àrea de claus MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% utilitzat de memòria intermèdia de claus MyISAM : %s%%, aquest valor ha " "d'estar per sobre del 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Percentatge d'índex llegits des de la memòria" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" "El %% dels índexs que utilitzen la memòria intermedia de claus de MyISAM és " "baixa." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Potser hauries d'augmentar {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Índex llegits de la memòria: %s%%, aquest valor ha de ser superior al 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Rati de taules obertes" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "El rati de taules obertes és alt." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13487,17 +13472,17 @@ msgstr "" "Obrir taules requereix operacions de E/S de disc, que és costós. L'augment " "de {table_open_cache} pot evitar això." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Taxa d'apertura de taules: %s, aquest valor ha de ser inferior a 10 per hora" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Percentatge d'ús del límit d'arxius oberts" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13506,7 +13491,7 @@ msgstr "" "Pots arribar a obtenir un avís d'error \"Massa arxius oberts\" (\"Too many " "open files\")." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13514,7 +13499,7 @@ msgstr "" "Pensa en augmentar {open_files_limit}, i comprovar el registre d'errors en " "reiniciar després de canviar aquesta variable." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13522,58 +13507,58 @@ msgstr "" "El nombre d'arxius oberts es troba al %s%% del límit. Ha de estar per sota " "del 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Rati d'arxius oberts" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "El rati d'arxius oberts és alt." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Taxa d'apertura d'arxius:%s, aquest valor ha de ser inferior a 5 per hora" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% de bloquejos immediats de taules" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Masses bloquejos de taula no s'han fet immediatament." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimitza les consultes i/o fes servir InnoDB per reduir el temps d'espera " "de bloqueig." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del 95%" "%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Taxa d'espera de bloqueig de taules" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Taxa d'espera de bloqueig de taula: %s, aquest valor ha de ser inferior a 1 " "per hora" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Memòria cau de fils" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13581,43 +13566,43 @@ msgstr "" "La memòria cau de fils està desactivada, el que resulta en una major " "sobrecàrrega de les connexions noves a MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Habilita la memòria cau de fils configurant {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "La memòria cau de fils està establerta a 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "%% de rati d'encerts al cau de fils" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "El cau de fils no és eficient." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Augmenta {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Taxa d'encert del cau de fils: %s%%, aquest valor ha d'estar per sobre del " "80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Fils que s'inicien lentament" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Hi ha massa fils que s'inicien lentament." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13626,20 +13611,20 @@ msgstr "" "operació relativament simple. Hauries de monitoritzar amb compte la càrrega " "del teu sistema." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s fil(s) van trigar més de %s segons en iniciar, hauria de ser 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Temps d'inici lent" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "{slow_launch_threads} està per sobre de 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13647,16 +13632,16 @@ msgstr "" "Estableix {slow_launch_time} a 1 o 2 segons per comptar correctament els " "fils que s'inicien lentamen" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "{slow_launch_time} està establert a %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Percentatge de connexions usades" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13664,7 +13649,7 @@ msgstr "" "La quantitat màxima de connexions utilitzades s'està acostant al valor de " "{max_connections}." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13675,7 +13660,7 @@ msgstr "" "s'eliminin abans. Assegura't que el teu codi tanqui els controladors de base " "de dades correctament." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13683,15 +13668,15 @@ msgstr "" "{max_used_connections} és el %s%% de {max_connections}, hauria de ser " "inferior al 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Percentatge de connexions fallides" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Massa connexions avortades." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Aquest article pot ajudar a rastrejar el " "motiu." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "El %s%% de totes les connexions avorten. Aquest valor ha de ser inferior a " "l'1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Rati de connexions fallides" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13722,15 +13707,15 @@ msgstr "" "La taxa de connexions avortades és de %s, aquest valor ha de ser inferior a " "1 per hora" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Percentatge de clients avortats" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Massa clients avortats." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13740,44 +13725,44 @@ msgstr "" "correctament. Això pot ser causa de problemes de xarxa o que el codi no " "tanca un gestor de bases de dades correctament. Comprova la xarxa i el codi." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "El %s%% de tots els clients avorten. Aquest valor ha de ser inferior al 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Rati de clients avortats" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "La taxa de clients avortats és de %s, aquest valor ha de ser inferior a 1 " "per hora" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB està desactivat?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "El motor InnoDB no està activat." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB és generalment la millor opció per als motors de taula." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "{have_innodb} està establert a 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Tamany del registre d'InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13785,7 +13770,7 @@ msgstr "" "El tamany del registre d'InnoDB no és acurat, en relació a la reserva de " "búfers InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13810,7 +13795,7 @@ msgstr "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">aquest article" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13819,15 +13804,15 @@ msgstr "" "La mida del registre InnoDB és del %s%% en relació a la mida de la memòria " "intermèdia d'InnoDB, que no hauria de ser inferior al 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Mida màxima del registre InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "La mida de l'arxiu de registre InnoDB és inadequadament gran." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13852,20 +13837,20 @@ msgstr "" "blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html\">aquest " "article" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "La mida absoluta del registre InnoDB és de %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Tamany del búfer d'InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "La memòria intermèdia d'InnoDB és relativament petita." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13892,7 +13877,7 @@ msgstr "" "www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">aquest article" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13905,15 +13890,15 @@ msgstr "" "això pot ser perfectament adequat per al teu sistema si no tens moltes " "taules InnoDB o altres serveis que s'executin a la mateixa màquina." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Insercions MyISAM a l'hora" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Activa {concurrent_insert} establint el valor a 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also documentació de MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB enviats des de la darrera actualització" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB rebuts des de la darrera actualització" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tràfic del servidor (en KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Connexions des de la darrera actualització" + +#~ msgid "Questions since last refresh" +#~ msgstr "Consultes des de la darrera actualització" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Consultes (sentències executades pel servidor)" + +#~ msgid "Runtime Information" +#~ msgstr "Informació d'execució" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Nombre de files:" + +#~ msgid "Refresh rate: " +#~ msgstr "Velocitat de refresc: " + +#~ msgid "Run analyzer" +#~ msgstr "Executar analitzador" + #~ msgid "Show more actions" #~ msgstr "Mostra més accions" diff --git a/po/ckb.po b/po/ckb.po index 1c50c2fe98..68400c40fb 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-23 19:36+0200\n" "Last-Translator: renwar kurd \n" "Language-Team: Kurdish Sorani Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "لێهاتوویی بیرگەی داواکاری" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "بەکارهێنانی بیرگەی داواکاری" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "بیرگەی داواکاری بەکارهاتوو" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "بەکارهێنانی سی‌ پی‌ یوو‌ی سیستەم" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "یادی سیستەم" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "ئاڵوگۆڕی سیستەم" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "مێگابایت" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "کیلۆبایت" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "ڕێژەی بار" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "سەرجەمی یاد" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "یادی بارکراو" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "یادی هەڵگیراو" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "یادی بەتاڵ" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "یادی بەکارهاتوو" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "سەرجەمی ئاڵوگۆڕ" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "ئاڵوگۆڕی بارکراو" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "ئاڵوگۆڕی بەکارهاتوو" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "ئاڵوگۆڕی بەتاڵ" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "بایت نێردرا" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "بایت وەرگیرا" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "بەستنەکان" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "پڕۆسەکان" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "بایت" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "کیلۆبایت" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "مێگابایت" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "گێگابایت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "تێرابایت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "پێتابایت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ئێکسابایت" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d خشتە(کان)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "پرسیارەکان" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "هاتووچوو" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "ڕێکخستنەکان" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "سڕینەوەی هێلکاری" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "دەستکاری ناونیشان و پێناس" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "زیادکردنی هێلکاری بۆ تۆڕ" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زیاد بکە" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "هیچ" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "خستنەوەکاری چاودێری" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "ڕاگرتنی چاودێری" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log چالاککراون." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log چالاککراوە." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log چالاککراوە." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log ناچالاککراون." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output دانەنراوە بۆ خشتە." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output دانراوە بۆ خشتە." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1269,42 +1242,42 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "log_output دانێ بۆ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "چالاککردن %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "ناچالاککردن %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time دانێ بۆ %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1312,410 +1285,412 @@ msgstr "" "تۆ ناتوانیت ئەم گۆڕاوانە بگۆڕیت. تکایە وەک root بڕۆ ژوورەوە یان پەیوەندی بە " "بەڕێوبەری بنکە دراوەکەت بکە." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "گۆڕینی ڕێکخستنەکان" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "ناونیشانی هێلکاری" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "جیاكاری" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "دابەشکراوە لەلایەن %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "یەکە" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "لە تۆماری خاوەوە" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "لە تۆماری گشتیەوە" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "شیکردنەوەی تۆمارەکان" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "شیکردنەوە & کردنەوەی تۆمارەکان. لەوانەیە کاتێکی کەمی پێ بچێت." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "لابردنی داواکاری" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr ":داتا تۆمارکراوەکان کرانەوە،داواکاریەکان جێبەجێ ئەکرێن لەم کاتەدا" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "بڕۆ بۆ تۆماری خشتە" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "هیچ زانیاریەک نەدۆزراوە" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "تۆمارەکە لێکدراوە، بەڵام هیچ زانیاریەک نەدۆزرایەوە لەو ماوەیە." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "لێکدانەوە…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "ڕوونکردنەوەی دەرەنجام" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "کات" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "هەموو کاتەکان:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "ئەنجامەکانی پڕۆفایل" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "خشتە" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "هێلکاری" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "گۆڕینی هێلکاری" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "زنجیرە" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "هەڵبژاردنەکانی پاڵێوی تۆماری خشتە" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "پاڵێو" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "سەرجەم:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "بارکردنی تۆمارەکان" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "چاودێریکردنی تازەکردنەوەی سەرنەکەوتوو" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "بارکردنەوەى پەڕە" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "ڕیزە کارتێکراوەکان:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "هێنان" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "تکایە ئەو پەڕگەیە دەستنیشان بکە کە ئەتەوێت بکرێتەوە" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "لێکدانەوەی داواکاری" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "سیستەمی ئاگادارکەر" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "ئەنجامە جێبەجێکراوە شیاوەکان" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "ئەنجام" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "ڕاسپاردە" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "وردەکاریەکانی یاسا" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "گونجاندن" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "گۆڕاو / دەستەواژەی بەکارهاتوو" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "تاقیکرنەوە" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "لابردن" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "ئامادەکردن" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "کردنەوەی داواکاری" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "هەڵە لە کردنەوەی داواکاری" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "هەڵەی کۆد: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "هەڵەی نوسین: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "ستونە سڕێنراوەکان" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "زیادکردنی کلیلی سەرەکی" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "باشە" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "کرتە بکە بۆ لابردنی ئەم ئاگادارکردنەوە" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "ناونانەوەی بنکەی زانیاریەکان" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "بارکردنەوەى بنکەی دراو" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "لەبەرگرتنەوەی بنکەی دراو" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "گۆڕینی گورزەپیت" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "خشتە پێویستە لانی کەم یەک ستونی هەبێت" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "دروستکردنی خشتە" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(چالاکە)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(ناچالاکە)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "گەڕان" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "پێشاندانی ئەنجامەکانی گەڕان" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "هێنان" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "سڕینەوە" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دەستەواژەی RETURN ی تێدابێت!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "گۆڕەری ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "نرخەکانی ستونی %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "نرخ بۆ ستونی نوێ" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "هەر نرخێک لە خانەی جیا بنووسە" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "نرخ(کان)ی %d زیادبکە" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "تێبینی: ئەگەر فایلەکە چەند خشتەیەکی تێدابێت، ئەوا تێکەڵی یەک دەکرێن بۆ یەک " "دانە" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "شاردنەوەی سندوقی داواکاری" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "پێشاندانی سندوقی داواکاری" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "گۆڕین" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "ماوەی جێبەجێکردنی داواکاری" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1724,102 +1699,107 @@ msgstr "%d ژمارەی ڕیزی نادروستە." msgid "Save" msgstr "پاشەکەوتکردن" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "زوومکردنی گەڕان" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "هەر خاڵێک ڕیزە زانیاریەک دەنوێنێ." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "خستنەسەری سەر خاڵێک پێناسەکەی پێشان دەدات." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "دوو ستون هەڵبژێرە" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "دوو ستونی جیا هەڵبژێرە" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "ئەنجامەکانی داواکاری" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "ناوەڕۆکی زانیاری خاڵ" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "لەبەرگرتنەوە" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "ستونەکان زیادبکە" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "هەڵبژاردنێک بۆ ستون زیادبکە " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "escape داگرە بۆ پاشگەزبوونەوە لە گۆڕین" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1827,92 +1807,92 @@ msgstr "" "تۆ چەند زانیاریەکت دەستکاری کردووە و پاشەکەوت نەکراون. تۆ دڵنیای لە دەرچوونت " "لەم پەڕە پێش پاشەکەوتکردنی زانیاریەکان؟" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "ڕایکێشە بۆ ڕیزکردنەوە" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "کرتە بکە بۆ ڕیزکردن" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "دوو کرتە بکە بۆ لەبەرگرتنەوەی ناوی ستون" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "بڕۆ بۆ بەستەر" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "لەبەرگرتنەوەی ناوی ستون" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "ڕیزە زانیاریەکان پێشانبدە" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "گۆڕینی تێپەڕە وشە" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "زیاتر" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1920,266 +1900,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "نوێترینە" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "تەواو" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "شوبات" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "مارت" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "نیسان" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "مایس" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "حوزەیران" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "تەموز" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "ئاب" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "ئەیلول" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "هەینی" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "هەفتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "خولەک" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "چرکە" @@ -2229,16 +2209,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "لە چرکەیەک دا" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "لە خولەکێک دا" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "لە کاتژمێرێکدا" @@ -2264,7 +2244,7 @@ msgstr "قەبارەی فۆنت" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" @@ -2273,7 +2253,7 @@ msgstr "لە سەرەتاوە بۆ کۆتایی" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "لە کۆتایی بۆ سەرەتا" @@ -2387,7 +2367,7 @@ msgstr "سڕینەوەی دووبارەکان بۆ خشتەی %s؟" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "سڕینەوە" @@ -2558,7 +2538,7 @@ msgid "The row has been deleted" msgstr "ڕیزەکە سڕایەوە" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "ڕایگرە" @@ -2615,12 +2595,13 @@ msgstr "هەڵبژاردنی هەموو" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" @@ -2628,7 +2609,7 @@ msgstr "هەناردن" msgid "Query results operations" msgstr "کردارەکانی ئەنجامی داواکاری" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2709,16 +2690,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2730,21 +2711,21 @@ msgstr "هیچ نیشاندەرێک پێناسە نەکراوە‌!‌" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "نیشاندەرەکان" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "بێهاوتا" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2754,13 +2735,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "ڕێکخستن" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "لێدوان" @@ -2803,7 +2784,7 @@ msgstr "نیشاندان" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "پێکهاتە" @@ -2876,34 +2857,35 @@ msgstr "چالاکیەکان" msgid "Designer" msgstr "شێوەساز" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "بەکارهێنەرەکان" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "تۆماری دوودانەیی" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "دووپاتکاری" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "گۆڕاوەکان" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "گورزەپیتەکان" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "پێوەکراوەکان" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "بزوێنەرەکان" @@ -2951,6 +2933,104 @@ msgstr "خشتە تازەکان" msgid "There are no recent tables" msgstr "هیچ خشتەیەکی تازە نیە" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "داواکاری سیكوێڵ" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3042,7 +3122,7 @@ msgstr "كرده‌هێما" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "نرخ" @@ -3425,11 +3505,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "داواکاری سیكوێڵ" - #: libraries/Util.class.php:710 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:292 @@ -3464,7 +3539,7 @@ msgid "Create PHP Code" msgstr "پی ئێچ پی کۆد دروست بکە" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "تازەکردنەوە" @@ -3560,13 +3635,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3607,59 +3675,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5696,8 +5764,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "ناوی بەکارهێنەر" @@ -6306,10 +6374,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6955,18 +7019,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Database name" msgid "filter databases by name" msgstr "ناوی بنکەی دراو" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7062,17 +7126,17 @@ msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "تەنیا بنچینە" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "بنچینە و زانیاری" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "تەنیا زانیاری" @@ -7459,8 +7523,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7969,7 +8032,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8473,7 +8536,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9136,7 +9199,7 @@ msgstr "زیادکردنی پێشگر بۆ خشتە" msgid "Check tables having overhead" msgstr "پشکنین بۆ ئەو خشتانە بکەن کە ژوورسەریان هەیە." -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9465,7 +9528,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9531,31 +9594,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9671,15 +9734,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9761,7 +9820,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9818,10 +9877,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9947,854 +10002,163 @@ msgid "" "like to
configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10803,7 +10167,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10811,18 +10175,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10830,11 +10194,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10842,92 +10206,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11466,142 +11437,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11735,11 +11706,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11753,125 +11724,137 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log چالاککراوە." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Series" msgid "Release Series" msgstr "زنجیرە" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Current settings" msgid "Current version: %s" msgstr "ڕێکخستنەکانی هەنووکە" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Versions" msgid "Minor Version" msgstr "وەشانەکان" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "پێناسە" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11879,19 +11862,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12246,272 +12229,272 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +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:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Replace table prefix" msgid "Rate of table open" msgstr "گۆڕینی پێشگری خشتە" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "بەدواچوونەوە ناچالاکە." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12636,20 +12619,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12664,7 +12647,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12673,25 +12656,43 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "چالاک کردنی concurrent_insert بە ڕێکخستنی بۆ ١" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "کیلۆ بایت نێردراوە لەدوای کۆتایین تازەکردنەوە" + +#~ msgid "KiB received since last refresh" +#~ msgstr "کیلۆ بایت وەرگیراوە لەدوای کۆتایین تازەکردنەوە" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "هاتووچوی سێرڤەر (بە کیلۆ بایت)" + +#~ msgid "Connections since last refresh" +#~ msgstr "بەستنەکان لەدوای کۆتایین تازەکردنەوە" + +#~ msgid "Questions since last refresh" +#~ msgstr "پرسیارەکان لەدوای کۆتایین تازەکردنەوە" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "پرسیارەکان (دەستەواژە جێبەجێکراوەکان لەلایەن سێرڤەرەکەوە)" + #~ msgid "Synchronize" #~ msgstr "هاودەمکردن" diff --git a/po/cs.po b/po/cs.po index 45b23ea43a..37201c1969 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,18 +5,18 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-10 08:53+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Vyhledávání" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Proveď" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Název klíče" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Popis" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Komentář k tabulce" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Pole" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Pole" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Nulový" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Výchozí" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Výchozí" msgid "Links to" msgstr "Odkazuje na" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Komentáře" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ano" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabulka" @@ -339,7 +339,7 @@ msgstr "Velikost" msgid "in use" msgstr "právě se používá" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "právě se používá" msgid "Creation" msgstr "Vytvořeno" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Vytvořeno" msgid "Last update" msgstr "Poslední změna" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "Sledované tabulky" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databáze" @@ -416,17 +416,17 @@ msgstr "Databáze" msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stav" @@ -441,7 +441,7 @@ msgstr "Operace" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Zobrazit" @@ -457,11 +457,11 @@ msgstr "Odstranit všechny informace o sledování této tabulky" msgid "Drop" msgstr "Odstranit" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "není zapnuté" @@ -469,11 +469,11 @@ msgstr "není zapnuté" msgid "Versions" msgstr "Verze" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Snímek struktury" @@ -541,45 +541,45 @@ msgstr "Použít OpenStreetMap jako základní vrstvu" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Bod" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Bod %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Přidat bod" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Vnější obrys" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Vnitřní obrys" @@ -587,15 +587,15 @@ msgstr "Vnitřní obrys" msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Mnohoúhelník" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Přidat mnohoúhelník" @@ -729,8 +729,9 @@ msgstr "Více nastavení" msgid "Database server" msgstr "Databázový server" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -749,7 +750,7 @@ msgstr "Verze protokolu" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Uživatel" @@ -991,12 +992,12 @@ msgstr "Načítám oprávnění" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Ukončit" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1006,15 +1007,15 @@ msgstr "Ukončit" msgid "Edit" msgstr "Upravit" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Živý graf provozu" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Živý graf připojení a procesů" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Živý graf dotazů" @@ -1025,13 +1026,14 @@ msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Ostatní" @@ -1046,48 +1048,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Odesláno KiB od posledního obnovení" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Přijato KiB od posledního obnovení" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Síťový provoz (v KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Spojení od posledního obnovaní" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesy" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Připojení / Procesů" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Dotazů od poslední aktualizace" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Dotazy (příkazy spuštěné na serveru)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistika dotazů" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Vaše nastavení monitoru není kompatibilní" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1098,196 +1066,201 @@ msgstr "" "monitoru a pravděpodobně tedy nebude fungovat správně. Prosím obnovte " "výchozí nastavení v nabídce Nastavení." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Úspěšnost mezipaměti dotazů" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Využití mezipaměti dotazů" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Využito mezipaměti dotazů" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Využití CPU" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Operační paměť" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Odkládací oblast" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Průměrné zatížení" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Celková paměť" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Mezipaměť" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Vyrovnávací paměť" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Volná paměť" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Využitá paměť" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap celkem" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Cachovaný swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Využitý swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Volný swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Odesláno bajtů" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Připojení" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesy" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabulek" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Dotazy" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Nastavení" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Odstranit graf" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Upravit název a popisky" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Přidat graf do mřížky" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Prosím přidejte do série alespoň jednu hodnotu" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Žádná" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Obnovit monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Přerušit monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log a slow_query_log jsou povoleny." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log je povolen." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log je povolen." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log a general_log jsou zakázány." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output není nastaven na tabulku." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output je nastaven na tabulku." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1298,12 +1271,12 @@ msgstr "" "sekund. Doporučujeme nastavit proměnnou long_query_time na 0-2 sekund, v " "závislosti na zatížení vašeho systému." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastaven na %d sekund." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1311,30 +1284,30 @@ msgstr "" "Budou provedeny následující změny, které budou platné do restartu serveru:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Nastavit log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Zapnout %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Vypnout %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Nastavit long_query_time na %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1342,53 +1315,53 @@ msgstr "" "Nemůžete změnit uvedené proměnné. Prosím přihlaste se jako root nebo " "kontaktujte vašeho správce databáze." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Změnit nastavení" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Název grafu" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Rozdíly" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Vyděleno %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Jednotka" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Ze záznamu pomalých dotazů" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Z obecného záznamu dotazů" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Zkoumám záznamy" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Načítám a analyzuji záznamy. To může chvíli trvat." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Zrušit požadavek" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1398,7 +1371,7 @@ msgstr "" "dohromady. K seskupení byl však použit jen SQL dotaz, takže další vlastnosti " "dotazů, jako například čas jeho spuštění, se mohou lišit." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1407,102 +1380,102 @@ msgstr "" "Vzhledem k tomu, že bylo zvoleno seskupení dotazů INSERT, jsou tyto dotazy " "pro jednu tabulku sloučeny dohromady, bez ohledu na skutečně vkládaná data." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Záznamy byly načteny. V tomto časovém rozmezí byly spuštěny následující " "dotazy:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Přejít na tabulku se záznamem" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nebyla nalezena žádná data" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Záznamy byly načteny, ale v tomto časovém rozmezí nebyly nalezeny žádné " "dotazy." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyzuji…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Čas" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Celkový čas:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Výsledky profilování" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabulka" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Graf" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Upravit graf" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Série" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Nastavení filtrování záznamových tabulek" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtr" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrovat dotazy podle slova nebo regulárního výrazu:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sloučit dotazy ignorováním dat ve WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Součet sloučených řádků:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Celkem:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Nahrávám záznamy" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Obnovení monitoru selhalo" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1512,253 +1485,255 @@ msgstr "" "způsobeno vypršeným sezením. Problém můžete vyřešit novým načtením stránky a " "přihlášením." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Znovu načíst stránku" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Ovlivněné záznamy:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Selhalo načtení konfiguračního souboru. Pravděpodobně se nejedná o JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí " "nastavení…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Nahrát nastavení monitoru" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Zvolte, prosím, soubor, který si přejete nahrát" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyzovat dotaz" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Poradce" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Možné výkonostní problémy" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problém" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Doporučení" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Podrobnosti o pravidle" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Zdůvodnění" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Použitá proměnná / vzorec" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Kontrola" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Nahrávám" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Popis chyby: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Odstraňuji sloupec" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Přidávám primární klíč" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klikněte pro schování této zprávy" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Přejmenovávám databáze" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Znovu načítám databázi" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopíruji databázi" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Měním znakovou sadu" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabulka musí mít alespoň jedno pole" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Vložit tabulku" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Skrýt klíče" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Zobrazit klíče" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Kontrola cizích klíčů:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Zapnutá)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Vypnutá)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Vyhledávám" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Procházím" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Hodnoty pro sloupec %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Hodnoty pro nový sloupec" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Zadejte každou hodnotu do samostatného pole" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Přidat %d hodnot" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Změnit" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Doba běhu dotazu" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1767,88 +1742,88 @@ msgstr "%d není platné číslo řádku." msgid "Save" msgstr "Uložit" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoomovací vyhledávání" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje řádek dat." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Najetí myší nad bod ukáže jeho název." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pro přiblížení označte oblast grafu myší." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Klikněte na tlačítko pro návrat do původního stavu." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Klikněte na datový bod pro zobrazení a případnou úpravu řádky." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf můžete zvětšit táhnutím za pravý dolní roh." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Zvolte dva sloupce" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Zvolte dva odlišné sloupce" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Výsledky dotazu" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopírovat" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Přidat sloupce" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1856,41 +1831,46 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Přidat paramer pro sloupec " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Klávesou Esc ukončíte editaci" -#: js/messages.php:350 +#: js/messages.php:338 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 "Na stránce jsou neuložené změny. Opravdu si ji přejete opustit?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Uspořádejte přetažením" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klikněte pro řazení" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klikněte pro označení" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Poklepejte pro zkopírování jména pole" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klikněte na šipku
pro vybrání sloupců" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1899,66 +1879,66 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" "Většinu sloupců můžete také přímo upravit
dvojklikem na jejich obsah." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Většinu sloupců můžete také přímo upravit
kliknutím na jejich obsah." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Přejít na odkaz" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Zkopírovat název pole" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klikněte pravým tlačítkem myši pro zkopírování názvu pole do schránky." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Zobrazit datové řádky" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Více" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Zobrazit panel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Skrýt panel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Požadovaná stránka nebyla nalezena v historii, možná jí již vypršela " "platnost." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1968,266 +1948,266 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "aktuální" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Hotovo" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Dnešek" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "leden" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "únor" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "březen" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "duben" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "květen" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "červen" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "červenec" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "srpen" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "září" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "říjen" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "listopad" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "pro" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Pátek" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Týd" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuty" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekundy" @@ -2280,16 +2260,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "za minutu" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "za hodinu" @@ -2317,7 +2297,7 @@ msgstr "Velikost písma" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Vzestupně" @@ -2326,7 +2306,7 @@ msgstr "Vzestupně" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Sestupně" @@ -2442,7 +2422,7 @@ msgstr "Odstranit nalezené záznamy z tabulky %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Odstranit" @@ -2612,7 +2592,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Ukončit" @@ -2668,12 +2648,13 @@ msgstr "Zaškrtnout vše" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" @@ -2681,7 +2662,7 @@ msgstr "Export" msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2766,16 +2747,16 @@ msgstr "Nahraný soubor nelze přečíst (přesunout)." msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Klikněte na pruh pro posunutí stránky nahoru" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript" @@ -2787,21 +2768,21 @@ msgstr "Není definován žádný klíč!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Klíče" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Mohutnost" @@ -2811,13 +2792,13 @@ msgstr "Mohutnost" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Porovnávání" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentář" @@ -2862,7 +2843,7 @@ msgstr "Pohled" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -2935,34 +2916,35 @@ msgstr "Události" msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Uživatelé" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binární log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikace" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Rozšíření" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Úložiště" @@ -3013,6 +2995,104 @@ msgstr "Nedávné tabulky" msgid "There are no recent tables" msgstr "Nebyly nalezeny žádné nedávné tabulky" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-dotaz" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Obslužné rutiny" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Mezipaměť dotazů" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Počet vláken" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dočasná data" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Odložené inserty" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Mezipaměť klíčů" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Použité výběry" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Řazení" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabulky" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinátor transakcí" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Soubory" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Zavřít všechny tabulky" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Zobrazit otevřené tabulky" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Zobrazit podřízené servery" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Zobrazit stav nadřízeného" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Zobrazit stav podřízených serverů" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Vyprázdnit mezipaměť dotazů" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stav InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistika dotazů" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Všechny stavové proměnné" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitor" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Poradce" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3108,7 +3188,7 @@ msgstr "Operátor" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Hodnota" @@ -3542,11 +3622,6 @@ msgstr "Výčtový typ, umožňující výběr ze zadaných hodnot" msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-dotaz" - #: libraries/Util.class.php:710 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:292 @@ -3581,7 +3656,7 @@ msgid "Create PHP Code" msgstr "Vytvořit PHP kód" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Obnovit" @@ -3677,13 +3752,6 @@ msgstr "Vytisknout" msgid "shared" msgstr "sdílený" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabulky" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3724,11 +3792,11 @@ msgstr "Zkontrolovat oprávnění pro databázi „%s“." msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Nepodařilo se načíst konfigurační soubor" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3736,12 +3804,12 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí nastavení ze souboru: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3749,38 +3817,38 @@ msgstr "" "V konfiguračním souboru musí být nastaven parametr [code]$cfg" "['PmaAbsoluteUri'][/code]!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "V nastavení máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Chyba: neplatný token" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Pokus o přepsání GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "detekován číselný klíč" @@ -5966,8 +6034,8 @@ msgstr "" "Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Uživatel" @@ -6613,10 +6681,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stav InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Využití vyrovnávací paměti" @@ -7304,16 +7368,16 @@ msgstr[0] "nalezen %s další výsledek" msgstr[1] "nalezeny %s další výsledky" msgstr[2] "nalezeno %s dalších výsledků" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtrovat databáze podle jména" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Vymazat filtr" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtrovat položky podle jména" @@ -7409,17 +7473,17 @@ msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Pouze strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Strukturu a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Jen data" @@ -7814,8 +7878,7 @@ msgstr "Zobrazit MIME typy" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Počítač" @@ -8402,7 +8465,7 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Proměnná" @@ -8917,7 +8980,7 @@ msgstr "Vlastnosti" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Další" @@ -9611,7 +9674,7 @@ msgstr "Přidat tabulce předponu" msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Žádná" @@ -9956,7 +10019,7 @@ msgstr "Přepnout malé/velké" msgid "Toggle relation lines" msgstr "Přepnout zobrazení relací" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" @@ -10022,31 +10085,31 @@ msgstr "Stránka byla vytvořena" msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importovat ze zvolené stránky" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportovat na zvolenou stránku" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Vytvořit novou stránku a exportovat na ní" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Název nové stránky: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exportovat/Importovat v měřítku" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "doporučené" @@ -10164,15 +10227,11 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Soubory" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -10257,7 +10316,7 @@ msgstr "Modul" msgid "Library" msgstr "Knihovna" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Verze" @@ -10316,10 +10375,6 @@ msgstr "Nadřízený server bych úspěšně změněn na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Zobrazit stav nadřízeného" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" @@ -10459,12 +10514,12 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10472,119 +10527,87 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status.php:657 -msgid "Handler" -msgstr "Obslužné rutiny" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Síťový provoz od spuštění: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Mezipaměť dotazů" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Tento MySQL server běží %1$s. Čas spuštění: %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Počet vláken" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Tento server pracuje jako nadřízený i podřízený v " +"replikačním procesu." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dočasná data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Tento server pracuje jako nadřízený v replikačním procesu." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Odložené inserty" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Tento server pracuje jako podřízený v replikačním procesu." -#: server_status.php:663 -msgid "Key cache" -msgstr "Mezipaměť klíčů" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:664 -msgid "Joins" -msgstr "Použité výběry" +#: server_status.php:122 +msgid "Replication status" +msgstr "Stav replikace" -#: server_status.php:666 -msgid "Sorting" -msgstr "Řazení" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " +"serveru mohou být nepřesné." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinátor transakcí" +#: server_status.php:149 +msgid "Received" +msgstr "Přijato" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Zavřít všechny tabulky" +#: server_status.php:168 +msgid "Sent" +msgstr "Odesláno" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Zobrazit otevřené tabulky" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "maximum současných připojení" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Zobrazit podřízené servery" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Nepovedených pokusů" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Zobrazit stav podřízených serverů" +#: server_status.php:253 +msgid "Aborted" +msgstr "Přerušené" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Vyprázdnit mezipaměť dotazů" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Stav serveru" +#: server_status.php:329 +msgid "Command" +msgstr "Příkaz" -#: server_status.php:830 -msgid "All status variables" -msgstr "Všechny stavové proměnné" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitor" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Poradce" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Počet datových bodů: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Obnovovací frekvence: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtry" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Obsahující slovo:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Zobrazit jen hodnoty s upozorněním" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrovat podle kategorie..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Zobrazit neformátované hodnoty" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Související odkazy:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Spustit analýzu" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Návod" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10592,7 +10615,7 @@ msgstr "" "Poradce vám může doporučit změny v nastavení serveru analýzou stavových " "proměnných." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10602,7 +10625,7 @@ msgstr "" "jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro " "váš systém." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10612,7 +10635,7 @@ msgstr "" "(čtením dokumentace) a jak případně vrátit změny zpět. Špatné nastavení může " "mít velmi negativní vliv na výkon serveru." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10622,798 +10645,39 @@ msgstr "" "sledovat výsledky případně provést zátěžové testy. Pokud nedošlo ke " "znatelnému zlepšení, můžete nastavení vrátit zpět." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Dotazů od spuštění: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Údaj" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Síťový provoz od spuštění: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Tento MySQL server běží %1$s. Čas spuštění: %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Tento server pracuje jako nadřízený i podřízený v " -"replikačním procesu." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Tento server pracuje jako nadřízený v replikačním procesu." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Tento server pracuje jako podřízený v replikačním procesu." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Pro více informací o stavu replikace se podívejte do sekce replikace." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Stav replikace" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " -"serveru mohou být nepřesné." - -#: server_status.php:1191 -msgid "Received" -msgstr "Přijato" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Odesláno" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "maximum současných připojení" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Nepovedených pokusů" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Přerušené" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Příkaz" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Počet chybných připojení k MySQL serveru." - -#: server_status.php:1529 -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 "" -"Počet transakcí, které použily dočasný binární log, ale překročily hodnotu " -"binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " -"transakce." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Počet transakcí, které využily dočasnou mezipaměť binárního záznamu." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Celkový počet připojení (i chybných) k MySQL serveru." - -#: server_status.php:1532 -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 "" -"Počet dočasných tabulek vytvořených serverem na disku při provádění dotazů. " -"Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " -"bude používat větší dočasné tabulky v paměti." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Počet vytvořených dočasných souborů." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " -"(pravděpodobně duplicitní klíč)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " -"použit INSERT DEKAYED má přiděleno jedno vlákno." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Počet provedených příkazů FLUSH." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Počet interních příkazů COMMIT." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Počet požadavků na smazání řádku." - -#: server_status.php:1541 -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 "" -"Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " -"tabulce daného jména." - -#: server_status.php:1542 -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 "" -"Počet přečtení první položky klíčů. Příliš vysoká hodnota znamení, že server " -"provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " -"pokud je col1 v klíči." - -#: server_status.php:1543 -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 "" -"Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " -"znamená, že dotazy správně využívají klíče." - -#: server_status.php:1544 -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 "" -"Počet požadavků na přečtení dalšího řádku podle klíče. Tato hodnota se " -"zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " -"prohledáváte klíč." - -#: server_status.php:1545 -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 "" -"Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " -"optimalizaci dotazů ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Počet požadavků na přečtení konkrétního řádku tabulky. Vysoká hodnota " -"znamená, že provádíte mnoho dotazů, které vyžadují řazení výsledků. " -"Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " -"nebo používáte spojení tabulek, která nevyužívají klíčů." - -#: server_status.php:1547 -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 "" -"Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " -"pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Počet interních příkazů ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Počet požadavků na aktualizaci řádku." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Počet požadavků na vložení řádku." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Počet stránek obsahujících data (změněné i nezměněné)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Počet změněných stránek." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Počet stránek, na které je požadavek na vyprázdnění." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Počet volných stránek." - -#: server_status.php:1555 -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 "" -"Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " -"čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." - -#: server_status.php:1556 -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 "" -"Počet stránek zablokovaných pro administrativní účely jako zamykání řádků " -"nebo hashe klíčů. Tato hodnota také může být vypočítána jako " -"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Celková velikost InnoDB bufferů, ve stránkách." - -#: server_status.php:1558 -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 "" -"Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " -"dotaz prochází velkou část tabulky v náhodném pořadí." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " -"musí procházet celou tabulku." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Počet provedených logických čtení." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " -"nutné přečíst stránku ze souboru." - -#: server_status.php:1562 -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 "" -"Počet čekání na zápis do InnoDB bufferů. Tyto zápisy obvykle probíhají na " -"pozadí, ale pokud je nutné přečíst nebo vytvořit stránku a žádná volná není " -"k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " -"měla by tato hodnota být malá." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Počet zápisů provedených do InnoDB bufferu." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Počet provedených synchronizací fsync()." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Počet nevyřízených synchronizací fsync()." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Počet nevyřízených čtení." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Počet nevyřízených zápisů." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Velikost přečtených dat, v bajtech." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Počet provedených čtení dat." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Počet provedených zápisů dat." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Velikost zapsaných dat, v bajtech." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Počet provedených dvojitých zapsání a počet stránek, které byly takto " -"zapsány." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Počet provedených dvojitých zapsání a počet stránek, které byly takto " -"zapsány." - -#: server_status.php:1574 -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 "" -"Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " -"pokračováním." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Počet požadavků na zápis do logovacího souboru." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Počet skutečných zápisů do logovacího souboru." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Počet synchronizací fsync() provedených na logovacích souborech." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Počet nevyřízených synchronizací logovacích souborů." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Počet nevyřízených zápisů do logovacích souborů." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Počet bajtů zapsaných do logovacího souboru." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Počet vytvořených stránek." - -#: server_status.php:1582 -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 "" -"Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " -"uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Počet přečtených stránek." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Počet zapsaných stránek." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Počet zámků řádku, na které se v současné době čeká." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Kolikrát se muselo čekat na zámek řádku." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Počet řádků odstraněných z InnoDB tabulek." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Počet řádků vložených do InnoDB tabulek." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Počet řádků přečtených z InnoDB tabulek." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." - -#: server_status.php:1594 -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 "" -"Počet bloků ve mezipaměti klíčů, které byly změněny, ale nebyly zapsány na " -"disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Počet nepoužitých bloků ve mezipaměti klíčů. Pomocí této hodnoty poznáte jak " -"moc je mezipaměť využitá." - -#: server_status.php:1596 -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 "" -"Počet použitých bloků v mezipaměti klíčů. Tato hodnota určuje maximum bloků, " -"které kdy byly obsazeny najednou." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Procento využití mezipaměti klíčů (vypočítaná hodnota)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Počet požadavků na přečtení klíče z mezipaměti." - -#: server_status.php:1599 -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 "" -"Počet skutečných čtení bloku zklíče z disku. Pokud je hodnota příliš velká, " -"pravděpodobně máte malou mezipaměť (key_buffer_size). Úspěšnost mezipaměti " -"můžete spočítat jako Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Úspěšnost mezipaměti klíčů spočítaná jako poměr skutečných a požadovaných " -"čtení (vypočítaná hodnota)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Počet požadavků na zápis bloku klíče do mezipaměti." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Počet skutečných zápisů bloku klíče na disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " -"hodnota)" - -#: server_status.php:1604 -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 "" -"Celková cena posledního kompilovaného dotazu spočítaná optimalizátorem " -"dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " -"žádný dotaz ještě nebyl kompilován." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "Maximální počet současně používaných připojení od spuštění serveru." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " -"pravděpodobně máte malou mezipaměť pro tabulky." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Počet otevřených souborů." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Počet otevřených streamů (používané převážně pro logování)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Počet aktuálně otevřených tabulek." - -#: server_status.php:1611 -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 "" -"Počet volných bloků paměti v mezipaměti dotazů. Velké číslo ukazuje na " -"problém s jejím rozdrobením, která může být vyřešena spuštěním příkazu FLUSH " -"QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Volná paměť v mezipaměti dotazů." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Počet zásahů mezipaměti dotazů." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Počet dotazů přidaných do mezipaměti dotazů." - -#: server_status.php:1615 -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 "" -"Počet dotazů odstraněných z mezipaměti dotazů aby uvolnily místo pro nové. " -"Tato hodnota může pomoci v nastavení velikosti mezipaměti. Mezipaměť používá " -"strategii LRU (nejdéle nepoužité) pro vyřazování dotazů." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " -"nastavení query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Počet dotazů v mezipaměti dotazů." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Celkový počet bloků v mezipaměti dotazů." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Stav failsafe replikace." - -#: server_status.php:1620 -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 "" -"Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " -"byste zkontrolovat klíče tabulek." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." - -#: server_status.php:1622 -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 "" -"Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " -"(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Počet spojení, které používaly intervalové vyhledávání na první tabulce. " -"(Tato hodnota obvykle není kritická i když je vysoká.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Počet dočasných tabulek v současné době otevřených podřízeným serverem." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." - -#: server_status.php:1630 -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 "" -"Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " -"vysoké hodnotě zvažte zvýšení sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Počet řazení, které byly omezeny rozsahem." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Počet řazených řádek." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Počet řazení provedených procházením tabulky." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Počet okamžitých získání zámku tabulky." - -#: server_status.php:1635 -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 "" -"Počet čekání na získání zámku tabulky. Pokud je tato hodnota vysoká a máte " -"problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " -"tabulky nebo použít replikaci." - -#: server_status.php:1636 -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 "" -"Počet vláken v mezipaměti. Úspěšnost mezipaměti může být spočítána jako " -"Threads_created/Connections. Pokud je tato hodnota červená, měli byste " -"zvýšit thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Počet aktuálně otevřených připojení." - -#: server_status.php:1638 -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 "" -"Počet vláken vytvořených pro obsluhu připojení. Pokud je hodnota příliš " -"velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " -"mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Úspěšnost mezipaměti vláken (vypočítaná hodnota)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Počet vláken, která nespí." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Spustit monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Návod/Nastavení" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Ukončit upravování grafů" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Přidat graf" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Upravit/Uspořádat grafy" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Sloupce grafu" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11421,15 +10685,15 @@ msgstr "" "Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " "nastavení, můžete ho chtít exportovat a zálohovat." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Instrukce monitoru" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11442,7 +10706,7 @@ msgstr "" "log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech " "dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11454,11 +10718,11 @@ msgstr "" "podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít " "zobrazování grafů s informacemi o serveru." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Používání monitoru:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11468,7 +10732,7 @@ msgstr "" "můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " "odstranit grafy." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11480,11 +10744,11 @@ msgstr "" "nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " "analýze." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Poznámka:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11496,79 +10760,79 @@ msgstr "" "vybírat krátké časové období a záznam vypnout poté co již monitorování " "nebudete potřebovat." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Předdefinované grafy" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Stavové proměnné" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Vyberte série:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Obvykle monitorované" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "nebo zadejte jméno proměnné:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Zobrazit jako rozdíl" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Vynásobit" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Přidat jednoty" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Přidat tuto sérii" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Odstranit série" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Série v grafu:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Statistiky záznamů" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Zvolte ze kterého záznamu si přejete vygenerovat statistiku." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Výsledky jsou sloučeny podle textu dotazu." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analýza dotazu" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11576,7 +10840,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekund" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11584,6 +10848,713 @@ msgstr[0] "%d minuta" msgstr[1] "%d minuty" msgstr[2] "%d minut" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Dotazů od spuštění: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Údaj" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtry" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Obsahující slovo:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Zobrazit jen hodnoty s upozorněním" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrovat podle kategorie..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Zobrazit neformátované hodnoty" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Související odkazy:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Počet chybných připojení k MySQL serveru." + +#: server_status_variables.php:334 +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 "" +"Počet transakcí, které použily dočasný binární log, ale překročily hodnotu " +"binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " +"transakce." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Počet transakcí, které využily dočasnou mezipaměť binárního záznamu." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Celkový počet připojení (i chybných) k MySQL serveru." + +#: server_status_variables.php:346 +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 "" +"Počet dočasných tabulek vytvořených serverem na disku při provádění dotazů. " +"Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " +"bude používat větší dočasné tabulky v paměti." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Počet vytvořených dočasných souborů." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " +"(pravděpodobně duplicitní klíč)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " +"použit INSERT DEKAYED má přiděleno jedno vlákno." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Počet provedených příkazů FLUSH." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Počet interních příkazů COMMIT." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Počet požadavků na smazání řádku." + +#: server_status_variables.php:381 +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 "" +"Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " +"tabulce daného jména." + +#: server_status_variables.php:387 +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 "" +"Počet přečtení první položky klíčů. Příliš vysoká hodnota znamení, že server " +"provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " +"pokud je col1 v klíči." + +#: server_status_variables.php:393 +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 "" +"Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " +"znamená, že dotazy správně využívají klíče." + +#: server_status_variables.php:398 +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 "" +"Počet požadavků na přečtení dalšího řádku podle klíče. Tato hodnota se " +"zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " +"prohledáváte klíč." + +#: server_status_variables.php:403 +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 "" +"Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " +"optimalizaci dotazů ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Počet požadavků na přečtení konkrétního řádku tabulky. Vysoká hodnota " +"znamená, že provádíte mnoho dotazů, které vyžadují řazení výsledků. " +"Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " +"nebo používáte spojení tabulek, která nevyužívají klíčů." + +#: server_status_variables.php:414 +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 "" +"Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " +"pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Počet interních příkazů ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Počet požadavků na aktualizaci řádku." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Počet požadavků na vložení řádku." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Počet stránek obsahujících data (změněné i nezměněné)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Počet změněných stránek." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Počet stránek, na které je požadavek na vyprázdnění." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Počet volných stránek." + +#: server_status_variables.php:443 +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 "" +"Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " +"čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." + +#: server_status_variables.php:448 +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 "" +"Počet stránek zablokovaných pro administrativní účely jako zamykání řádků " +"nebo hashe klíčů. Tato hodnota také může být vypočítána jako " +"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Celková velikost InnoDB bufferů, ve stránkách." + +#: server_status_variables.php:458 +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 "" +"Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " +"dotaz prochází velkou část tabulky v náhodném pořadí." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " +"musí procházet celou tabulku." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Počet provedených logických čtení." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " +"nutné přečíst stránku ze souboru." + +#: server_status_variables.php:474 +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 "" +"Počet čekání na zápis do InnoDB bufferů. Tyto zápisy obvykle probíhají na " +"pozadí, ale pokud je nutné přečíst nebo vytvořit stránku a žádná volná není " +"k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " +"měla by tato hodnota být malá." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Počet zápisů provedených do InnoDB bufferu." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Počet provedených synchronizací fsync()." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Počet nevyřízených synchronizací fsync()." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Počet nevyřízených čtení." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Počet nevyřízených zápisů." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Velikost přečtených dat, v bajtech." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Počet provedených čtení dat." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Počet provedených zápisů dat." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Velikost zapsaných dat, v bajtech." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Počet provedených dvojitých zapsání a počet stránek, které byly takto " +"zapsány." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Počet provedených dvojitých zapsání a počet stránek, které byly takto " +"zapsány." + +#: server_status_variables.php:516 +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 "" +"Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " +"pokračováním." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Počet požadavků na zápis do logovacího souboru." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Počet skutečných zápisů do logovacího souboru." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Počet synchronizací fsync() provedených na logovacích souborech." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Počet nevyřízených synchronizací logovacích souborů." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Počet nevyřízených zápisů do logovacích souborů." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Počet bajtů zapsaných do logovacího souboru." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Počet vytvořených stránek." + +#: server_status_variables.php:541 +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 "" +"Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " +"uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Počet přečtených stránek." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Počet zapsaných stránek." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Počet zámků řádku, na které se v současné době čeká." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Kolikrát se muselo čekat na zámek řádku." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Počet řádků odstraněných z InnoDB tabulek." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Počet řádků vložených do InnoDB tabulek." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Počet řádků přečtených z InnoDB tabulek." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." + +#: server_status_variables.php:579 +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 "" +"Počet bloků ve mezipaměti klíčů, které byly změněny, ale nebyly zapsány na " +"disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Počet nepoužitých bloků ve mezipaměti klíčů. Pomocí této hodnoty poznáte jak " +"moc je mezipaměť využitá." + +#: server_status_variables.php:588 +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 "" +"Počet použitých bloků v mezipaměti klíčů. Tato hodnota určuje maximum bloků, " +"které kdy byly obsazeny najednou." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Procento využití mezipaměti klíčů (vypočítaná hodnota)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Počet požadavků na přečtení klíče z mezipaměti." + +#: server_status_variables.php:599 +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 "" +"Počet skutečných čtení bloku zklíče z disku. Pokud je hodnota příliš velká, " +"pravděpodobně máte malou mezipaměť (key_buffer_size). Úspěšnost mezipaměti " +"můžete spočítat jako Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Úspěšnost mezipaměti klíčů spočítaná jako poměr skutečných a požadovaných " +"čtení (vypočítaná hodnota)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Počet požadavků na zápis bloku klíče do mezipaměti." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Počet skutečných zápisů bloku klíče na disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " +"hodnota)" + +#: server_status_variables.php:619 +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 "" +"Celková cena posledního kompilovaného dotazu spočítaná optimalizátorem " +"dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " +"žádný dotaz ještě nebyl kompilován." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "Maximální počet současně používaných připojení od spuštění serveru." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " +"pravděpodobně máte malou mezipaměť pro tabulky." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Počet otevřených souborů." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Počet otevřených streamů (používané převážně pro logování)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Počet aktuálně otevřených tabulek." + +#: server_status_variables.php:645 +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 "" +"Počet volných bloků paměti v mezipaměti dotazů. Velké číslo ukazuje na " +"problém s jejím rozdrobením, která může být vyřešena spuštěním příkazu FLUSH " +"QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Volná paměť v mezipaměti dotazů." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Počet zásahů mezipaměti dotazů." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Počet dotazů přidaných do mezipaměti dotazů." + +#: server_status_variables.php:659 +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 "" +"Počet dotazů odstraněných z mezipaměti dotazů aby uvolnily místo pro nové. " +"Tato hodnota může pomoci v nastavení velikosti mezipaměti. Mezipaměť používá " +"strategii LRU (nejdéle nepoužité) pro vyřazování dotazů." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " +"nastavení query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Počet dotazů v mezipaměti dotazů." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Celkový počet bloků v mezipaměti dotazů." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Stav failsafe replikace." + +#: server_status_variables.php:679 +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 "" +"Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " +"byste zkontrolovat klíče tabulek." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." + +#: server_status_variables.php:686 +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 "" +"Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " +"(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Počet spojení, které používaly intervalové vyhledávání na první tabulce. " +"(Tato hodnota obvykle není kritická i když je vysoká.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Počet dočasných tabulek v současné době otevřených podřízeným serverem." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." + +#: server_status_variables.php:717 +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 "" +"Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " +"vysoké hodnotě zvažte zvýšení sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Počet řazení, které byly omezeny rozsahem." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Počet řazených řádek." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Počet řazení provedených procházením tabulky." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Počet okamžitých získání zámku tabulky." + +#: server_status_variables.php:734 +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 "" +"Počet čekání na získání zámku tabulky. Pokud je tato hodnota vysoká a máte " +"problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " +"tabulky nebo použít replikaci." + +#: server_status_variables.php:740 +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 "" +"Počet vláken v mezipaměti. Úspěšnost mezipaměti může být spočítána jako " +"Threads_created/Connections. Pokud je tato hodnota červená, měli byste " +"zvýšit thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Počet aktuálně otevřených připojení." + +#: server_status_variables.php:748 +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 "" +"Počet vláken vytvořených pro obsluhu připojení. Pokud je hodnota příliš " +"velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " +"mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Úspěšnost mezipaměti vláken (vypočítaná hodnota)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Počet vláken, která nespí." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Nastavení proměnné selhalo" @@ -12174,26 +12145,26 @@ msgstr "Omezení cizího klíče" msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledování pro %1$s bylo vypnuto ve verzi %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledování pro %1$s bylo zapnuto ve verzi %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL příkazy byly provedeny." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12201,118 +12172,118 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Chyba dotazu" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Sledování příkazů" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zobrazit %1$s mezi daty %2$s a %3$s od uživatele %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nejsou k dispozici žádná data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Výpis SQL (stáhnout soubor)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Výpis SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Provedení SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Zobrazit verze" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Vypnout sledování pro %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Vypnout teď" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Zapnuté sledování pro %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Zapnout teď" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvořit verzi %1$s z %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Vytvořit verzi" @@ -12458,11 +12429,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time je nastaven na %d sekund." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Zaznamenávání pomalých dotazů" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Zaznamenávání pomalých dotazů je vypnuto." @@ -12478,35 +12449,53 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries je vypnuto" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Povolte záznam pomalých dotazů nastavením {log_slow_queries} na 'ON'. To vám " +"pomůže prozkoumat tyto zatěžující dotazy." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries je vypnuto" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Vydání" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL server je starší než 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "Měli byste aktualizovat, MySQL 5.1 i MySQL 5.5 poskytují větší výkon." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Aktuální verze: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Verze" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Verze starší než 5.1.30 (první GA vydání 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12514,26 +12503,26 @@ msgstr "" "Měli byste aktualizovat, novější verze MySQL 5.1 zlepšují výkon a MySQL 5.5 " "ještě více." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Verze starší než 5.5.8 (první GA vydání 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Měli byste aktualizovat na stabilní verzi MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribuce" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Verze je zkompilovaná ze zdrojových kódu a nejedná se o oficiální binárku " "MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12544,40 +12533,40 @@ msgstr "" "binárky MySQL a to se může lišit od těch dodávaných distribucí (jako RedHat, " "Debian/Ubuntu atd)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "V komentáři k verzi bylo nalezeno 'source'" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "Dokumentace MySQL je přesná jen pro oficiální sestavení MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Dokumentaci Percony naleznete na http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "V komentáři k verzi bylo nalezeno 'percona'" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Dokumentaci k Drizzle naleznete na http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Text verze (%s) odpovídá schématu verzí Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Architektura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL není kompilováno jako 64-bitový program." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12587,20 +12576,20 @@ msgstr "" "počítači), takže MySQL není schopné využít veškerou dostupnou paměť. " "Přechodem na 64-bitovou verzi MySQL toto omezení odstraníte." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Dostupná paměť na tomto počítači: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Mezipaměť dotazů je vypnutá" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Mezipaměť není povolena." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12612,21 +12601,21 @@ msgstr "" "MiB a nastavením {query_cache_type} na 'ON'. Poznámka: Toto " "doporučení můžete ignorovat pokud používáte memcached." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size je nastaveno na 0 nebo query_cache_type je nastaveno na " "'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Metoda používaná vyrovnávací pamětí dotazů" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Neoptimální metoda vyrovnávací paměti." -#: libraries/advisory_rules.txt:157 +#: 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, obzvlášť pokud máte více podřízených serverů." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12646,34 +12635,34 @@ msgstr "" "Je zapnuta mezipaměť dotazů a server přijal %d dotazů za sekundu. Toto " "pravidlo je aktivní při více než 100 dotazech za sekundu." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Úspěšnost mezipaměti dotazů (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Mezipaměť dotazů není efektivní, má velmi malou úspěšnost." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Zvažte zvýšení {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Současná úspěšnost mezipaměti %s%% je pod 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Využití mezipaměti dotazů" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Je využíváno méně než 80%% mezipaměti." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12681,7 +12670,7 @@ msgstr "" "Toto může být způsobeno příliš nízkou hodnotou {query_cache_limit}. Taktéž " "může pomoci vyprázdnění mezipaměti." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12690,15 +12679,15 @@ msgstr "" "V současné době je volno %s%% mezipaměti. Tato hodnota by se měla držet nad " "80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Rozdrobení mezipaměti dotazů" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Mezipaměť dotazů je značně rozdrobena." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12718,7 +12707,7 @@ msgstr "" "vašich dotazů pomocí tohoto vzorce: (query_cache_size - " "qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12728,18 +12717,18 @@ msgstr "" "Mezipaměť je rozdrobena ze %s%%, kde 100%% znamená, že v mezipaměti se " "střídají obsazené a prázdné bloky. Tato hodnota by se měla držet pod 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Ořezávání mezipaměti dotazů" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." msgstr "" "Z mezipaměti dotazů jsou odstraňovány dotazy kvůli její malé velikosti." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12749,7 +12738,7 @@ msgstr "" "mezipamětí roste i její režie, a proto je lepší zvětšovat ji postupně a " "sledovat chování serveru." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12758,11 +12747,11 @@ msgstr "" "Procento odstraněných dotazů je %s%%. Čím je tato hodnota menší, tím lépe. " "(Pravidlo je aktivní od 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maximální velikost mezipaměti dotazů" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12770,28 +12759,28 @@ msgstr "" "Mezipaměť dotazů je nastavena na více než 128 MiB. Příliš velká mezipaměť " "může zvýšit náročnost její údržby." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "Zmenšení vyrovnávací paměti může přinést zvýšení výkonu." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Velikost mezipaměti dotazů: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Minimální velikost výsledku dotazu pro uložení do mezipaměti" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Maximální velikost výsledku uloženého do mezipaměti je výchozích 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12810,19 +12799,19 @@ msgstr "" "dotazy nad 1 MiB nejsou vhodné k ukládání (například se daná tabulka příliš " "často mění), zvýšením {query_cache_limit} pravděpodobně úspěšnost snížíte." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit je nastaveno na 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Procento řazení, které vynutilo použití dočasných tabulek" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Příliš mnoho řazení využívá dočasných tabulek." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12830,7 +12819,7 @@ msgstr "" "V závislosti na vaší paměti zvažte zvětšení sort_buffer_size nebo " "read_rnd_buffer_size," -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12839,11 +12828,11 @@ msgstr "" "%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%" "%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Četnost řazení které vynutily dočasné tabulky" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -12851,15 +12840,15 @@ msgstr "" "Průměrně použito dočasných tabulek: %s. Tato hodnota by měla být nižší než 1 " "za hodinu." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Řazení řádek" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Muselo být řazeno příliš mnoho řádek." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12870,20 +12859,20 @@ msgstr "" "využívají řazení používají klíče ve frázi ORDER BY, protože toto zajistí " "rychlejší řazení" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Průměrně seřazeno řádků: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Četnost spojení bez klíčů" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Probíhá příliš mnoho spojení tabulek bez využití klíčů." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -12891,21 +12880,21 @@ msgstr "" "To znamená, že spojení tabulek musí často procházet celou tabulku. Přidáním " "klíčů na sloupce použité při slučování můžete tuto operaci značně urychlit" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Průměrně sloučeno tabulek: %s, tato hodnota by měla být menší než 1 za hodinu" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Četnost čtení prvního záznamu klíče" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Ke čtení prvního záznamu klíče dochází příliš často." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -12920,21 +12909,21 @@ msgstr "" "UPDATE nebo DELETE, spuštěním „OPTIMIZE TABLE“ můžete situaci vylepšit. " "Kromě toho je možné se procházení klíčů vyhnout jen přepsáním dotazů." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Průměrně procházeno klíčů: %s, tato hodnota by měla být menší než 1 za hodinu" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Četnost čtení na pevné pozici" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Ke čtení dat z pevné pozice dochází příliš často." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -12944,7 +12933,7 @@ msgstr "" "řadit výsledky nebo procházet celou tabulku. Přidáním vhodných klíčů můžete " "tyto čtení omezit." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -12953,15 +12942,15 @@ msgstr "" "Četnost čtení na pevné pozici: %s, tato hodnota by měla být menší než 1 za " "hodinu" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Četnost čtení dalšího řádku tabulky" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Ke čtení dalšího řádku tabulky dochází příliš často." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -12969,7 +12958,7 @@ msgstr "" "Příliš mnoho dotazů musí procházet celé tabulky. Tomuto můžete předejít " "přidáním klíčů." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -12977,15 +12966,15 @@ msgstr "" "Četnost čtení dalšího řádku tabulky: %s, tato hodnota by měla být menší než " "1 za hodinu" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size a max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size a max_heap_table_size nejsou stejné." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -12996,16 +12985,16 @@ msgstr "" "velikost tabulek v paměti podle nižší hodnoty z těchto proměnných. Pokud si " "přejete tuto velikost zvýšit, musíte zvýšit obě dvě." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Současné hodnoty jous tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Procento dočasných souborů na disku" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13013,7 +13002,7 @@ msgstr "" "Příliš mnoho dočasných tabulek je ukládáno na disk, místo toho aby byly v " "paměti." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13030,7 +13019,7 @@ msgstr "" "je tato problematika popsána na začátku článku od Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13039,11 +13028,11 @@ msgstr "" "%s%% všech dočasných tabulek je zapisováno na disk, tato hodnota by měla být " "pod 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Četnost dočasného ukládání na disk" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13060,7 +13049,7 @@ msgstr "" "můžete dozvědět v dokumentaci MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13069,16 +13058,16 @@ msgstr "" "Četnost dočasného ukládání na disk: %s, tato hodnota by měla být menší než 1 " "za hodinu" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Velikost vyrovnávací paměti klíčů MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Vyrovnávací paměť klíčů není nastavena. Žádné klíče MyISAM nebudou cachovány." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13086,21 +13075,21 @@ msgstr "" "Nastavte {key_buffer_size} podle velikosti vašich klíčů v MyISAM tabulkách. " "Pro začátek může být třeba 64M dobrá hodnota." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size je 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Nejvyšší využití (%%) vyrovnávací paměti MyISAM pro klíče" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Využití mezipaměti klíčů MyISAM je příliš nízké %%." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13110,7 +13099,7 @@ msgstr "" "nebyly odstraněny nějaké klíče, případně prozkoumat jestli dotazy klíče " "správně využívají." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13118,46 +13107,46 @@ msgstr "" "Nejvyšší využití (%%) vyrovnávací paměti MyISAM pro klíče je %s%%, tato " "hodnota by měla být nad 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Procento využití vyrovnávací paměti MyISAM pro klíče" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "Využití vyrovnávací paměti klíčů MyISAM: %s%%, tato hodnota by měla být nad " "95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Procento čtení klíčů z paměti" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" "Procento klíčů, které používají vyrovnávací paměť klíčů MyISAM, je příliš " "nízké." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Mohlo by být potřeba zvýšit {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Čtení klíčů z paměti: %s%%, tato hodnota by měla být pod 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Četnost otevírání tabulek" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Tabulky jsou otevírány příliš často." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13165,18 +13154,18 @@ msgstr "" "Otevírání tabulek vede k přístupům na disk, které jsou obvykle pomalé. " "Zvýšením {table_open_cache} můžete toto omezit." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Četnost otevírání tabulek: %s, tato hodnota by měla být menší než 10 za " "hodinu" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Využití limitu na otevřené soubory v procentech" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13184,7 +13173,7 @@ msgstr "" "Počet otevřených souborů se blíží maximu možného. V případě jeho dosažení " "dostanete chybu „Příliš mnoho otevřených souborů“." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13192,7 +13181,7 @@ msgstr "" "Zvažte zvýšení {open_files_limit}, restartujte a poté zkontrolujte chybové " "záznamy." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13200,54 +13189,54 @@ msgstr "" "Počet otevřených souborů je na %s%% maximálně povolených. Mělo by to být pod " "85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Četnost otevírání souborů" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Četnost otevírání souborů je příliš velká." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Četnost otevírání souborů: %s, tato hodnota by měla být menší než 5 za hodinu" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Procento okamžitého získání zámku tabulky" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Příliš mnoho zamykání tabulek čekalo na přidělení zámku." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "Pro omezení čekání na zámky optimalizujte dotazy nebo použijte InnoDB." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Okamžitých zamčení tabulky: %s%%, tato hodnota by měla být nad 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Četnost čekání na zámek tabulky" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Četnost čekání na zámek tabulky: %s, tato hodnota by měla být menší než 1 za " "hodinu" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Mezipaměť vláken" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13255,41 +13244,41 @@ msgstr "" "Mezipaměť vláken je vypnutá, což způsobuje větší zátěž při nových " "připojeních k MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Povolte mezipaměť vláken nastavením {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Velikost mezipaměti vláken je nastavena na 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Úspěšnost mezipaměti vláken %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Mezipaměť vláken není efektivní." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Zvyšte {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Úspěšnost mezipaměti vláken: %s%%, tato hodnota by měla být nad 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Vlákna se spouštějí příliš dlouho" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Je příliš mnoho vláken, která se spouštějí dlouho." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13297,20 +13286,20 @@ msgstr "" "K tomuto obvykle dochází v případě přetížení systému, protože se jedná o " "velmi jednoduchou operaci. Je vhodné podrobně sledovat zatížení systému." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s vláknům trvalo spuštění déle než %s sekund, mělo by to trvat 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Dlouhá doba spuštění" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads je nad 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13318,22 +13307,22 @@ msgstr "" "Nastavte slow_launch_time na 1s nebo 2s pro správné počítání vláken, která " "pomalu nabíhají" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time je nastaven na %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Procenta použitých připojení" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "Nejvýše využitý počet připojení se blíží max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13343,21 +13332,21 @@ msgstr "" "uzavřena připojení, která nebyla správně ukončena. Ujistěte se, že klienti " "správně ukončují připojení k databázi." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "Nejvyšší počet připojení je na %s%% maxima, mělo by to být pod 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Procenta přerušených spojení" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Je příliš mnoho přerušených spojení." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Tento článek vám může pomoc najít příčinu." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% všech připojení bylo přerušeno. Tato hodnota by měla být pod 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Četnost přerušených spojení" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13385,15 +13374,15 @@ msgstr "" "Četnost přerušených spojení je %s, tato hodnota by měla být menší než 1 za " "hodinu" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Procento přerušených klientů" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Příliš mnoho přerušených klientů." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13403,50 +13392,50 @@ msgstr "" "Toto může být způsobeno problémy na síti nebo chybným kódem klienta, který " "spojení neukončí. Prosím zkontrolujte obě tyto možnosti." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% všech klientů bylo přerušeno. Tato hodnota by měla být pod 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Četnost přerušení klientů" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Četnost přerušených klientů: %s, tato hodnota by měla být menší než 1 za " "hodinu" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB je vypnuto?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Máte zakázané InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB je obvykle nejlepší volba úložiště tabulky." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb je nastaveno na 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Velikost záznamu InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." msgstr "" "Velikost záznamu InnoDB neodpovídá velikosti vyrovnávací paměti InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13470,7 +13459,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">zápisek v blogu" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13479,15 +13468,15 @@ msgstr "" "Poměr velikosti záznamu a rezervy vyrovnávací paměti InnoDB je %s%%, ale " "neměla by být pod 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maximální velikost záznamu InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Velikost záznamového souboru je příliš velká." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13512,20 +13501,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">zápisek v blogu" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Velikost záznamu InnoDB je %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Velikost vyrovnávací paměti InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Nastavená vyrovnávací paměť InnoDB je poměrně malá." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13549,7 +13538,7 @@ msgstr "" "naleznete v tomto článku" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13562,15 +13551,15 @@ msgstr "" "být přesto správné, pokud nemáte mnoho InnoDB tabulek nebo na tomto počítači " "běží i další služby." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Současné vkládání do MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Povolte concurrent_insert nastavením na 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also dokumentaci MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Odesláno KiB od posledního obnovení" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Přijato KiB od posledního obnovení" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Síťový provoz (v KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Spojení od posledního obnovaní" + +#~ msgid "Questions since last refresh" +#~ msgstr "Dotazů od poslední aktualizace" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Dotazy (příkazy spuštěné na serveru)" + +#~ msgid "Runtime Information" +#~ msgstr "Stav serveru" + +#~ msgid "Number of data points: " +#~ msgstr "Počet datových bodů: " + +#~ msgid "Refresh rate: " +#~ msgstr "Obnovovací frekvence: " + +#~ msgid "Run analyzer" +#~ msgstr "Spustit analýzu" + #~ msgid "Show more actions" #~ msgstr "Zobrazit více operací" diff --git a/po/cy.po b/po/cy.po index 0be7169a3e..17bd147397 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -49,7 +49,7 @@ msgstr "" msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -79,21 +79,21 @@ msgstr "Chwilio" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Ewch" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Enw allweddol" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Disgrifiad" @@ -116,17 +116,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Sylw cronfa ddata: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -140,12 +140,12 @@ msgstr "Sylwadau tabl" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Colofn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -163,11 +163,11 @@ msgstr "Colofn" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Math" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -179,11 +179,11 @@ msgstr "Math" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -194,11 +194,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Diofyn" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -207,7 +207,7 @@ msgstr "Diofyn" msgid "Links to" msgstr "Cysylltu i" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -220,7 +220,7 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -238,12 +238,12 @@ msgstr "Sylwadau" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Na" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -266,8 +266,8 @@ msgstr "Na" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ie" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabl" @@ -342,7 +342,7 @@ msgstr "Maint" msgid "in use" msgstr "ar ddefnydd" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "ar ddefnydd" msgid "Creation" msgstr "Cread" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Cread" msgid "Last update" msgstr "Diweddariad diwethaf" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -411,7 +411,7 @@ msgstr "Tablau a draciwyd" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Cronfa ddata" @@ -419,17 +419,17 @@ msgstr "Cronfa ddata" msgid "Last version" msgstr "Fersiwn diweddaraf" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Crëwyd" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Statws" @@ -444,7 +444,7 @@ msgstr "Gweithred" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Dangos" @@ -460,11 +460,11 @@ msgstr "Dilëwch data tracio ar gyfer y tabl hwn" msgid "Drop" msgstr "Gollwng" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "gweithredol" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ddim yn weithredol" @@ -472,11 +472,11 @@ msgstr "ddim yn weithredol" msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Ciplun strwythur" @@ -550,49 +550,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Routines" msgid "Add a point" msgstr "Rheolweithiau" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -602,17 +602,17 @@ msgstr "" msgid "Add a linestring" msgstr "Ychwanegwch cyfyngiadau" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new server" msgid "Add an inner ring" msgstr "Ychwanegwch weinydd newydd" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -754,8 +754,9 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Database server" msgstr "Cronfeydd Data" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Gweinydd" @@ -776,7 +777,7 @@ msgstr "Fersiwn protocol" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Defnyddiwr" @@ -1021,12 +1022,12 @@ msgstr "Dim Breintiau" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Cau" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1036,17 +1037,17 @@ msgstr "Cau" msgid "Edit" msgstr "Golygu" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Dewis Gweinydd" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "Show insert query" msgid "Live query chart" @@ -1059,13 +1060,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1080,54 +1082,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Dewis Gweinydd" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Prosesau" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Dangos ystadegau" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Failed to write file to disk." msgid "Local monitor configuration incompatible" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1135,134 +1099,138 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "SQL query history table" msgid "Query cache efficiency" msgstr "Tabl hanes ymholiadau SQL" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query results" msgid "Query cache usage" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query results" msgid "Query cache used" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Cyfrif ffeiliau log" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Pwll Byffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Cyfanswm" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Tudalennau rhydd" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prosesau" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1270,85 +1238,86 @@ msgid "%d table(s)" msgstr "%s tabl" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "Tynnwch y gronfa ddata" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap i'r grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Dim" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1356,26 +1325,26 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Cadw fel ffeil" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgctxt "BLOB repository" #| msgid "Enabled" @@ -1383,521 +1352,523 @@ msgid "Enable %s" msgstr "Galluogwyd" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Analluogwch" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Teitl yr adroddiad" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Gwahaniaeth" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "llwytho" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Ceisiadau darllen" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Dim cronfeydd data" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Dadansoddi" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Esbonio SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Amser" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Cyfanswm" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Proffilio" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabl" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Set nodau" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Routines" msgid "Edit chart" msgstr "Rheolweithiau" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Select Tables" msgid "Series" msgstr "Dewis Tablau" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Databases statistics" msgid "Log table filter options" msgstr "Ystadegau cronfeydd data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Hidlydd" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of columns" msgid "Sum of grouped rows:" msgstr "Nifer y colofnau" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Cyfanswm" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "llwytho" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Ail-lwytho" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Failed to write file to disk." msgid "Import monitor configuration" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Ymholiad Diweddaru" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dogfennaeth" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Manylion..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Yn dilysu..." -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "llwytho" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prosesau" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Set nodau" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one column." msgid "Table must have at least one column" msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Defnyddiwch Dablau" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Indecsau" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Dangos grid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgctxt "BLOB repository" #| msgid "Enabled" msgid "(Enabled)" msgstr "Galluogwyd" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Analluogwyd" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Chwilio" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "mewn ymholiad" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "Show insert query" msgid "Show search results" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Porwch" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Dileu" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of columns" msgid "Values for column %s" msgstr "Nifer y colofnau" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "mewn ymholiad" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "Show insert query" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Newid" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "SQL execution" msgid "Query execution time" msgstr "Gweithrediad SQL" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1906,219 +1877,224 @@ msgstr "Dydy %d ddim yn rhif rhes dilys." msgid "Save" msgstr "Cadw" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Chwilio" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ychwanegu/Dileu colofnau" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data definition statement" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s column(s)" msgid "Add columns" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Pwyso i ddewis" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Columns" msgid "Copy column name" msgstr "Colofnau" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Yn dangos rhesi" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generadu" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Dangos pob" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Indecsau" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2126,31 +2102,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Gorffen" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2158,149 +2134,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Heddiw" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Ionawr" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Chwefror" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mawrth" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Ebrill" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Mehefin" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Awst" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Medi" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Hydref" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Tachwedd" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Rhag" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2308,97 +2284,97 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Wy" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Awr" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Munud" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Eiliad" @@ -2449,16 +2425,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2484,7 +2460,7 @@ msgstr "Maint ffont" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Esgynnol" @@ -2493,7 +2469,7 @@ msgstr "Esgynnol" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Disgynnol" @@ -2608,7 +2584,7 @@ msgstr "Dileu'r cydweddau ar gyfer tabl %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Dileu" @@ -2803,7 +2779,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Lladd" @@ -2859,12 +2835,13 @@ msgstr "Dewis Pob" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" @@ -2872,7 +2849,7 @@ msgstr "Allforio" msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2957,16 +2934,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2980,21 +2957,21 @@ msgstr "Dim indecs wedi'i ddiffinio!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -3004,13 +2981,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Coladiad" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Sylw" @@ -3055,7 +3032,7 @@ msgstr "Dangos" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Strwythur" @@ -3128,36 +3105,37 @@ msgstr "Digwyddiadau" msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Defnyddiwr" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Log deuaidd" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Dyblygiad" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Peiriannau" @@ -3209,6 +3187,106 @@ msgstr "Cyfrifwch y tablau" msgid "There are no recent tables" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Ymholiad SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tablau" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Ffeiliau" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Statws InnoDB" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Dangos ystadegau" + +#: 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." @@ -3304,7 +3382,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Gwerth" @@ -3705,11 +3783,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Ymholiad SQL" - #: libraries/Util.class.php:710 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:292 @@ -3746,7 +3819,7 @@ msgid "Create PHP Code" msgstr "Creu Cod PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Adfywio" @@ -3849,13 +3922,6 @@ msgstr "Argraffu" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tablau" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3898,62 +3964,62 @@ msgstr "" msgid "Check Privileges" msgstr "Gwirio Breintiau" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to read configuration file" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6097,8 +6163,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Enw defnyddiwr" @@ -6778,10 +6844,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Statws InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Defnydd Pwll Byffer" @@ -7441,18 +7503,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "enw tabl" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7552,17 +7614,17 @@ msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Strwythur yn unig" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Strwythur a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Data yn unig" @@ -7989,8 +8051,7 @@ msgstr "Mathau MIME ar gael" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Gwesteiwr" @@ -8515,7 +8576,7 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Newidyn" @@ -9089,7 +9150,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ychwanegol" @@ -9765,7 +9826,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -10109,7 +10170,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Dilëwch berthynas" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10191,39 +10252,39 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "tudalennau" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Mewnforiwch ffeiliau" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "Crëwch dudalen" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "Page name" msgid "New page name: " msgstr "Enw'r dudalen" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10341,15 +10402,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Ffeiliau" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10432,7 +10489,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Fersiwn" @@ -10491,10 +10548,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10624,882 +10677,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Gorchymyn" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of columns" -msgid "Number of data points: " -msgstr "Nifer y colofnau" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Adfywio" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Hidlydd" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show only listed databases" -msgid "Show only alert values" -msgstr "Dangoswch gronfeydd data a restrir yn unig" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show only listed databases" -msgid "Show unformatted values" -msgstr "Dangoswch gronfeydd data a restrir yn unig" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Perthnasau" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query" -msgid "Run analyzer" -msgstr "Ymholiad" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Swyddogaethau" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "Gorchymyn" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Methu â chysylltu i'r gweinydd MySQL" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Fformat y ffeil a mewnforiwyd" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Nid yw tracio'n weithredol" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "Rheolweithiau" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adfer gwerth diofyn" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11508,7 +10851,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11516,18 +10859,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11535,11 +10878,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11547,93 +10890,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tynnwch y gronfa ddata" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Dewis Tablau" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Enw tabl annilys" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Ychwanegwch weinydd newydd" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Dangos ystadegau" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Dewis Tablau" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Ymholiad" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11641,7 +10984,7 @@ msgid_plural "%d seconds" msgstr[0] "Eiliad" msgstr[1] "Eiliad" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11649,6 +10992,626 @@ msgid_plural "%d minutes" msgstr[0] "Munud" msgstr[1] "Munud" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Hidlydd" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show only listed databases" +msgid "Show only alert values" +msgstr "Dangoswch gronfeydd data a restrir yn unig" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show only listed databases" +msgid "Show unformatted values" +msgstr "Dangoswch gronfeydd data a restrir yn unig" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Perthnasau" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Methu â chysylltu i'r gweinydd MySQL" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Fformat y ffeil a mewnforiwyd" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Nid yw tracio'n weithredol" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12225,157 +12188,157 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Ymholiad" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Dim cronfeydd data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Dyddiad" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Dangos fersiynau" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Dadweithredwch dracio am %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Gweithredwch dracio am %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Gweithredwch nawr" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Crëwch fersiwn" @@ -12518,13 +12481,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show insert query" msgid "Slow query logging" msgstr "Dangos ymholiad mewnosod" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12540,133 +12503,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Dewis Tablau" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Crëwch fersiwn" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Fersiwn" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Disgrifiad" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Set nodau MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "SQL query history table" msgid "Query cache disabled" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12674,23 +12647,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query results" msgid "Query caching method" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query results" msgid "Suboptimal caching method." msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s tabl" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13090,266 +13063,266 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Dangos ymholiadau SQL" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Crëwch dabl" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Creu tabl mewn cronfa ddata %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Trefnu maint y byffer" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Trefnu maint y byffer" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Trefnu maint y byffer" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "Nid yw tracio'n weithredol" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Nid yw tracio'n weithredol" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Nid yw tracio'n weithredol" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Nid yw tracio'n weithredol" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Trefnu maint y byffer" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are no configured servers" msgid "Threads that are slow to launch" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are no configured servers" msgid "There are too many threads that are slow to launch." msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "There are no configured servers" msgid "" @@ -13357,47 +13330,47 @@ msgid "" "launch" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used connections" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of aborted connections" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Maint y pwll byffer" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13529,24 +13502,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Maint y pwll byffer" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Maint y pwll byffer" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13561,7 +13534,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13570,25 +13543,45 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Dewis Gweinydd" + +#, fuzzy +#~| msgid "Number of columns" +#~ msgid "Number of data points: " +#~ msgstr "Nifer y colofnau" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Adfywio" + +#, fuzzy +#~| msgid "Query" +#~ msgid "Run analyzer" +#~ msgstr "Ymholiad" + #, fuzzy #~| msgid "Show versions" #~ msgid "Show more actions" diff --git a/po/da.po b/po/da.po index 354861bb23..6c43fd191c 100644 --- a/po/da.po +++ b/po/da.po @@ -3,18 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:00+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Danish \n" -"Language: da\n" +"Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Søg" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +77,21 @@ msgstr "Søg" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Udfør" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Beskrivelse" @@ -112,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -136,12 +137,12 @@ msgstr "Tabel kommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolonnenavn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -159,11 +160,11 @@ msgstr "Kolonnenavn" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Datatype" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -175,11 +176,11 @@ msgstr "Datatype" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -190,11 +191,11 @@ msgstr "Nulværdi" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Standardværdi" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -203,7 +204,7 @@ msgstr "Standardværdi" msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -216,7 +217,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -234,12 +235,12 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nej" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -262,8 +263,8 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ja" @@ -315,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabel" @@ -335,7 +336,7 @@ msgstr "Størrelse" msgid "in use" msgstr "i brug" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -343,7 +344,7 @@ msgstr "i brug" msgid "Creation" msgstr "Oprettelse" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -351,7 +352,7 @@ msgstr "Oprettelse" msgid "Last update" msgstr "Sidste opdatering" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -403,7 +404,7 @@ msgstr "Sporede tabeller" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Database" @@ -411,17 +412,17 @@ msgstr "Database" msgid "Last version" msgstr "Seneste version" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Oprettet" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Opdateret" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -436,7 +437,7 @@ msgstr "Handling" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Vis" @@ -452,11 +453,11 @@ msgstr "Slet sporingsdata for denne tabel" msgid "Drop" msgstr "Slet" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ikke aktiv" @@ -464,11 +465,11 @@ msgstr "ikke aktiv" msgid "Versions" msgstr "Versioner" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Sporingsrapport" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" @@ -536,45 +537,45 @@ msgstr "Brug OpenStreetMaps som basislag" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punkt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punkt %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Tilføj et punkt" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Ydre ring" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Indre ring" @@ -582,15 +583,15 @@ msgstr "Indre ring" msgid "Add a linestring" msgstr "Tilføj en linjestreng" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Tilføj en indre ring" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Tilføj polygon" @@ -727,8 +728,9 @@ msgstr "Flere indstillinger" msgid "Database server" msgstr "Database-server" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -747,7 +749,7 @@ msgstr "Protokolversion" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Bruger" @@ -990,12 +992,12 @@ msgstr "Genindlæser privillegier" msgid "Removing Selected Users" msgstr "Fjerner valge brugere" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Luk" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1005,15 +1007,15 @@ msgstr "Luk" msgid "Edit" msgstr "Ret" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Realtids trafikoversigt" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Realtids forbind./opgave-oversigt" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Realtid forespørgsels-oversigt" @@ -1024,13 +1026,14 @@ msgstr "Statiske data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Andet" @@ -1045,48 +1048,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB sendt siden forrige visning" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB modtaget siden forrige visning" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Server-trafik (i KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Forbindelser siden sidste visning" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processer" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Forbindelser / Opgaver" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Spørgsmål siden sidste visning" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Spørgsmål (eksekverede forespørgsler på serveren)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistik over forespørgsler" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Konfigurationen for den lokale skærm er inkompatibel" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1098,196 +1067,201 @@ msgstr "" "sandsynligt, at din aktuelle konfiguration ikke vil virke længere. Nulstil " "derfor din konfiguration i menuen Settings." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Effektivitet af forespørgsels-mellemlager" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Forbrug af forespørgsels-mellemlager" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Forbrugt forespørgsels-mellemlager" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "System CPU forbrug" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Systemhukommelse" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "System-swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Gennemsnitlig belastning" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Total hukommelse" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Hukommelse i mellemlager" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Hukommelse i buffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Ledig hukommelse" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Forbrugt hukommelse" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Totalt sidelager" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Sidelager i mellemlager" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Forbrugt sidelager" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Ledigt sidelager" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Forbindelser" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processer" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabel(ler)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Indstillinger" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Fjern diagram" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Rediger titel og etiketter" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Snap diagram til gitter" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Tilføj mindst en variabel til serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ingen" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Genstart monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Sæt monitor på pause" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktiveret." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log er aktiveret." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktiveret." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktiveret." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output er ikke sat til TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output er sat til TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1298,12 +1272,12 @@ msgstr "" "varer længere end %d sekunder. Det tilrådes at sætte denne long_query_time " "til 0-2 sekunder, afhængig af dit system." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er sat til %d sekund(er)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1312,30 +1286,30 @@ msgstr "" "standard ved genstart af server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Sæt log_output til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktiver %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Sæt long_query_time til %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1343,53 +1317,53 @@ msgstr "" "Du har ikke superbrugerrettigheder til at ændre disse variable. Log venligst " "ind som root eller kontakt din database administrator." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Ændre indstillinger" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagramtitel" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Differentiel" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Divideret med %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Enhed" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Fra slow log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Fra generel log" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyserer logge" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Annullér forespørgsel" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1399,7 +1373,7 @@ msgstr "" "sammen. Dog kun SQL tekst sammenlignes, så de andre attributter af " "forespørgsler som starttid kan være forskellige." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1409,98 +1383,98 @@ msgstr "" "forespørgsler ind i den samme tabel også grupperet sammen unden hensyn til " "indsatte data." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Logdata er indlæst. Forespørgsler udført i dette tidsinterval:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Gå til logtabellen" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Fandt ingen data" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Forklar output" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tid" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Samlet tid:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Resultat af profilering" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagram" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Redigér diagram" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serier" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Indstillinger for filtre på logtabel" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrér" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrer forespørgsler efter ord/regex:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupper forespørgsler, og ignorer variabeldata i WHERE klausuler" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Sum af grupperede rækker:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Indlæser logs" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Skærmopfriskning fejlede" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1511,257 +1485,259 @@ msgstr "" "Genindlæsning af siden og genindtastning af dine legitimationsoplysninger " "burde hjælpe." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Genindlæs side" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Berørte rækker:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Kunne ikke fortolke konfigurationsfilen. Det ser ikke ud til at være gyldig " "JSON-kode." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importér overvågningskonfiguration" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Vælg venligst filen du vil importere" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyser forespørgsel" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mulige ydelsesmæssige problemer" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Begrundelse" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Brugt variabel/formel" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Annuller" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Indlæser" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Udfører forespørgsel" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Felj i udførsel af forespørgsel" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Fejlkode: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Fejltekst: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ingen databaser valgt." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Sletter kolonne" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Tilføjer primær nøgle" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klik for at forkaste denne notifikation" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Omdøber databaser" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Opfrisk database" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopierer database til" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Ændrer tegnsæt" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabellen skal have mindst en kolonne" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Indsæt tabel" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Skjul indekser" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Vis indekser" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Tjek af fremmednøgle:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Slået til)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Slået fra)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Søger" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Slet søgeresultater" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Vis søgeresultater" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Viser" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET-redigeringsværktøj" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Værdier for kolonnen %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Værdier for en ny kolonne" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Indtast hver værdi i et separat felt" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Tilføj %d værdi(er)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Note: Hvis filen indeholder flere tabeller, vil de blive kombineret til én" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Skjul forespørgeselsboks" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ret" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Eksekveringstid for forespørgsel" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1770,91 +1746,91 @@ msgstr "%d er ikke et gyldigt rækkenummer." msgid "Save" msgstr "Gem" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Skjul søgekriterie" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Forstør søgning" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Hvert punkt repræsenterer en datarække." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Når der holdes over et punkt vises dets etiket." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For at forstørre, vælg en sektion af plottet med musen." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Klik på knap til nulstilling af zoom for at vende tilbage til den " "oprindelige tilstand." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik et datapunkt for at se og muligvis redigere datarækken." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plottet kan ændres i størrelse ved at trække det i nederste højre hjørne." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Vælg to kolonner" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Forespørgselsresultater" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopi" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Tilføj kolonner" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Vælg kolonne til visning" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1862,15 +1838,20 @@ msgstr "" "Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " "gemmer dem. Vil du fortsætte?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Tilføj mulighed for kolonne " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Tryk på ESC for at annullere redigeringen" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1878,27 +1859,27 @@ msgstr "" "Du har redigeret nogle data og de er ikke blevet gemt. Er du sikker på, at " "du vil forlade siden uden at gemme data ?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Træk for at ændre orden" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klik for at sortere" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klik for at markere/afmarkere" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Dobbeltklik for at kopiere kolonnenavn" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1907,7 +1888,7 @@ msgstr "" "redigering af gitter, afkrydsningsboks og links til redigering, kopiering og " "sletning fungerer måske ikke, efter at data er gemt." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1915,59 +1896,59 @@ msgstr "" "Du kan også redigere de fleste kolonner
ved at dobbelt-klikke direkte i " "deres indhold." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Du kan også redigere de fleste kolonner
ved at klikke direkte på deres " "indhold." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Gå til link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopiér kolonnenavn" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Højreklik kolonnenavnet for at kopiere det til din udklipsholder." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Vis datarække(r)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generer" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Ændre adgangskode" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mere" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Vis panel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Skjul panel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Den forespurgte side blev ikke fundet i historikken. Den kan være udløbet." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1977,266 +1958,266 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "up-to-date" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Færdig" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "I dag" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "januar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "februar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "marts" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "april" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "august" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "september" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "november" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "søndag" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "mandag" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "fredag" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Time" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekund" @@ -2288,16 +2269,16 @@ msgstr "Uventet tegn på linje %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Uventet tegn på linje %1$s. Forventede tabulering, men fandt \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "pr. sekund" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "pr. minut" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "pr. time" @@ -2324,7 +2305,7 @@ msgstr "Skriftstørrelse" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Stigende" @@ -2333,7 +2314,7 @@ msgstr "Stigende" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Faldende" @@ -2447,7 +2428,7 @@ msgstr "Slet sammenfald for %s tabellen?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Slet" @@ -2617,7 +2598,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Dræb (Kill)" @@ -2673,12 +2654,13 @@ msgstr "Vælg alle" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" @@ -2686,7 +2668,7 @@ msgstr "Eksporter" msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2769,16 +2751,16 @@ msgstr "Kan ikke læse (flyttet) uploaded fil." msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Herefter skal JavaScript være slået til" @@ -2790,21 +2772,21 @@ msgstr "Intet indeks defineret!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitet" @@ -2814,13 +2796,13 @@ msgstr "Kardinalitet" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Tegnsæt (sortering)" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentar" @@ -2865,7 +2847,7 @@ msgstr "Visning" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -2938,34 +2920,35 @@ msgstr "Hændelser" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Brugere" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binær log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikation" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variable" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Lagre" @@ -3013,6 +2996,104 @@ msgstr "Seneste tabeller" msgid "There are no recent tables" msgstr "Der er ingen nye tabeller" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-forespørgsel" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Forespørgsel-mellemlager" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Tråde" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Midlertidige data" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Forsinkede inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Nøglemellemlager" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortering" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabeller" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaktionskoordinator" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Filer" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (luk) alle tabeller" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Vis åbne tabeller" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Vis slaveværter" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Vis master status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Vis slavestatus" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Tøm forespørgsel-mellemlager" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistik over forespørgsler" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Alle statusvariable" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitorering" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Rådgiver" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3111,7 +3192,7 @@ msgstr "Operatør" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Værdi" @@ -3559,11 +3640,6 @@ msgstr "En optælling, udvalgt fra listen med definerede værdier" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-forespørgsel" - #: libraries/Util.class.php:710 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:292 @@ -3598,7 +3674,7 @@ msgid "Create PHP Code" msgstr "Fremstil PHP-kode" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Opdater" @@ -3696,13 +3772,6 @@ msgstr "Print" msgid "shared" msgstr "delt" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabeller" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3743,11 +3812,11 @@ msgstr "Check privilegier for database "%s"." msgid "Check Privileges" msgstr "Check privilegier" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Kunne ikke indlæse konfigurationsfilen" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3755,12 +3824,12 @@ msgstr "" "Dette betyder ofte, at der er en eller flere syntaksmæssige fejl i den, " "kontroller venligst for fejlen(e) vist herunder." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3768,39 +3837,39 @@ msgstr "" "Direktitvet [code]$cfg['PmaAbsoluteUri'][/code] SKAL være sat i din " "konfigurationsfil!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Server indekset %s er ugyldigt" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "forsøg på overskrivning af GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "muligt sikkerhedshul" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numerisk tast opfanget" @@ -6004,8 +6073,8 @@ msgstr "" "Hvis du har dit eger brugernavn, så angiv det her (standard [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Brugernavn" @@ -6651,10 +6720,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufferpool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Bufferpoolsforbrug" @@ -7344,16 +7409,16 @@ msgid_plural "%s other results found" msgstr[0] "Fandt %s andet resultat" msgstr[1] "Fandt %s andre resultater" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtrér databaser efter navn" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Ryd Hurtig/Fast-filter" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtrér elementer efter navn" @@ -7450,17 +7515,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Kun strukturen" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Kun data" @@ -7858,8 +7923,7 @@ msgstr "Vis MIME-typer" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Vært" @@ -8451,7 +8515,7 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabel" @@ -8963,7 +9027,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9663,7 +9727,7 @@ msgstr "Tilføj præfiks til tabel" msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10008,7 +10072,7 @@ msgstr "Skift mellem små/store" msgid "Toggle relation lines" msgstr "Slå relationslinjer til eller fra" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF-opstilling" @@ -10074,31 +10138,31 @@ msgstr "Side er blevet oprettet" msgid "Page creation failed" msgstr "Sideoprettelse fejlede" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Side" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importer fra valgt side" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Eksporter til valgt side" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Opret en side og eksporter til den" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nyt sidenavn: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "anbefalet" @@ -10217,15 +10281,11 @@ msgstr "Filen eksisterer ikke" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Filer" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Trunker viste forespørgsler" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -10309,7 +10369,7 @@ msgstr "Modul" msgid "Library" msgstr "Bibliotek" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Version" @@ -10367,10 +10427,6 @@ msgstr "Master server ændret til %s" msgid "This server is configured as master in a replication process." msgstr "Denne server er konfigureret som master i en replikationsproces." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Vis master status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Vis forbundne slaver" @@ -10510,131 +10566,99 @@ msgstr "" "Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Netværkstrafik siden startup: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Forespørgsel-mellemlager" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Denne MySQL-server har kørt i %1$s. Den startede op den %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Tråde" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Denne MySQL server fungerer som master og slave i en " +"replikationsproces." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Midlertidige data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Denne MySQL server fungerer som master i en replikationsproces." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Forsinkede inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Denne MySQL server fungerer som slave i en replikationsproces." -#: server_status.php:663 -msgid "Key cache" -msgstr "Nøglemellemlager" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"For yderligere information om replikationsstatus på serveren gå til replication section." -#: server_status.php:664 -msgid "Joins" -msgstr "Joins" +#: server_status.php:122 +msgid "Replication status" +msgstr "Status for replikation" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortering" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"På en travl server er der risiko for at bytetællerne løber over, så disse " +"statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaktionskoordinator" +#: server_status.php:149 +msgid "Received" +msgstr "Modtaget" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (luk) alle tabeller" +#: server_status.php:168 +msgid "Sent" +msgstr "Sendt" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Vis åbne tabeller" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Maks. samtidige forbindelser" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Vis slaveværter" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Mislykkede forsøg" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Vis slavestatus" +#: server_status.php:253 +msgid "Aborted" +msgstr "Afbrudt" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Tøm forespørgsel-mellemlager" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Runtime-information" +#: server_status.php:329 +msgid "Command" +msgstr "Kommando" -#: server_status.php:830 -msgid "All status variables" -msgstr "Alle statusvariable" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitorering" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Rådgiver" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Antal datapunkter: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Opdateringsrate: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtre" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Indeholdende ordet:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Vis kun alert-værdier" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrer efter kategori..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Vis uformatterede værdier" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Relaterede links:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Kør analysator" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instruktioner/Opsætning" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10642,7 +10666,7 @@ msgstr "" "Rådgiversystemet kan give anbefalinger om servervariabler ved at analysere " "serverens statusvariabler." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10651,7 +10675,7 @@ msgstr "" "Bemærk dog, at dette system giver anbefalinger baseret på simple beregninger " "og tommelfingerregler, som ikke nødvendigvis passer med dit system." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10661,7 +10685,7 @@ msgstr "" "dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have " "en meget negativ effekt på ydeevnen." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10671,824 +10695,39 @@ msgstr "" "gangen, observere og teste din database og annullere ændringen, hvis der " "ingen klart synlig forskel var." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Forespørgsler siden startup: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Forespørgsler" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Netværkstrafik siden startup: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Denne MySQL-server har kørt i %1$s. Den startede op den %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Denne MySQL server fungerer som master og slave i en " -"replikationsproces." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Denne MySQL server fungerer som master i en replikationsproces." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Denne MySQL server fungerer som slave i en replikationsproces." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"For yderligere information om replikationsstatus på serveren gå til replication section." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Status for replikation" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"På en travl server er der risiko for at bytetællerne løber over, så disse " -"statistikker som rapporteret af MySQL-serveren kan være forkerte." - -#: server_status.php:1191 -msgid "Received" -msgstr "Modtaget" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Sendt" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Maks. samtidige forbindelser" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Mislykkede forsøg" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Afbrudt" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Kommando" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " -"lukke forbindelsen rigtigt." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." - -#: server_status.php:1529 -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 "" -"Antal transaktioner der brugte det midlertidige binære log mellemlager, men " -"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " -"gemme statements fra transaktionen." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Antal transaktioner der brugte det midlertidige binære log mellemlager." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." - -#: server_status.php:1532 -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 "" -"Antal midlertidige tabeller på disken oprettet automatisk af serveren under " -"udførelse af statements. Hvis Created_tmp_disk_tables er stor, skal du " -"overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " -"hukommelses-baserede i stedet for disk-baserede." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Hvor mange midlertidige filer mysqld har oprettet." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " -"under udførelse af statements." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " -"der opstod fejl (sandsynligvis dublerede nøgler)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " -"hvorpå en bruger INSERT DELAYED får sin egen tråd." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Antallet af INSERT DELAYED rækker skrevet." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Antallet af udførte FLUSH statements." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Antallet af interne COMMIT statements." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Antallet af gange en række blev slettet fra en tabel." - -#: server_status.php:1541 -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 "" -"MySQL serveren kan spørge en NDB Cluster storage engine om den kender til en " -"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " -"antallet af gange tabeller er blevet opdaget." - -#: server_status.php:1542 -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 "" -"Antallet af gange første indlæg blev læst fra et indeks. Hvis denne er høj, " -"antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " -"col1 FROM foo, antagende at col1 er indekseret." - -#: server_status.php:1543 -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 "" -"Antallet af anmodninger om at læse en række baseret på en nøgle. Hvis denne " -"er høj, er det en god indikation af at dine forespørgsler og tabeller er " -"ordentligt indekserede." - -#: server_status.php:1544 -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 "" -"Antallet af anmodninger om at læse næste række i nøgleorden. Denne forøges " -"hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " -"du udfører et indeks scan." - -#: server_status.php:1545 -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 "" -"Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " -"læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Antallet af anmodninger om at læse en række baseret på en fast position. " -"Denne er høj hvis du laver mange forespørgsler der kræver sortering af " -"resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " -"scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." - -#: server_status.php:1547 -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 "" -"Antallet af anmodninger om læsning af næste række i datafilen. Denne er høj " -"hvis du laver mange tabelscanninger. Generelt antyder dette at dine tabeller " -"enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " -"skrevet til at drage fordel af de indeks du har." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Antallet af interne ROLLBACK statements." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Antallet af anmodninger om at opdatere en række i en tabel." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Antallet af anmodninger om at indsætte en række i en tabel." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Antallet af sider der indeholder data (beskidte eller rene)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Antallet af såkaldt beskidte sider." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Antallet af frie sider." - -#: server_status.php:1555 -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 "" -"Antallet af eksklusivt låste (latched) sider i InnoDB buffer pool. Dette er " -"sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " -"fjernes af andre årsager." - -#: server_status.php:1556 -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 "" -"Antallet af travle sider fordi de er blevet allokeret til administrativ " -"overhead så som rækkelåse eller det adaptive hash indeks. Denne værdi kan " -"også beregnes som Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Total størrelse på buffer pool, i sider." - -#: server_status.php:1558 -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 "" -"Antallet af \"tilfældige\" read-aheads InnoDB initierede. Dette sker når en " -"forespørgsel skal scanne en større del af en tabel men i tilfældig " -"rækkefølge." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " -"InnoDB laver en sekventiel fuld tabelscanning." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Antallet af logiske read anmodninger InnoDB har lavet." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " -"pool og måtte lave en enkelt-side read." - -#: server_status.php:1562 -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 "" -"Normalt sker skrivninger til InnoDB buffer poolen i baggrunden. Men, hvis " -"der er brug for at læse eller oprette en side og der ikke er nogen rene " -"sider tilgængelige, er det nødvendigt at vente på at der bliver flushet " -"sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " -"pool størrelsen er sat ordentligt, skulle denne værdi være lille." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Antallet af skrivninger til InnoDB buffer poolen." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Antallet af fsync() operationer indtil nu." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Nuværende antal ventende fsync() operationer." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Nuværende antal af ventende reads." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Nuværende antal af ventende writes." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Mængden af data læst indtil nu, i bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Det totale antal af data reads." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Det totale antal af data writes." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Mængden af data skrevet indtil nu, i bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Antallet af doublewrite skrivninger der er udført og antallet af sider der " -"er blevet skrevet til dette formål." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Antallet af doublewrite skrivninger der er udført og antallet af sider der " -"er blevet skrevet til dette formål." - -#: server_status.php:1574 -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 "" -"Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " -"vente på at den blev flushed før vi kunne fortsætte." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Antallet af log write anmodninger." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Antallet af fysiske skrivninger til log filen." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Antallet af fsyncs skrivninger lavet til logfilen." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Antallet af ventende log fil fsyncs." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Ventende log fil skrivninger." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Antallet af bytes skrevet til log filen." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Antallet af sider oprettet." - -#: server_status.php:1582 -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 "" -"Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " -"tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Antallet af sider læst." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Antallet af sider skrevet." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Antallet af rækkelåse der ventes på i øjeblikket." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Antallet af gange der skulle ventes på en rækkelås." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Antallet af rækker slettet fra InnoDB tabeller." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Antallet af rækker indsat i InnoDB tabeller." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Antallet af rækker læst fra InnoDB tables." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Antallet af rækker opdateret i InnoDB tabeller." - -#: server_status.php:1594 -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 "" -"Antallet af nøgleblokeringer i nøglemellemlageret der har ændret sig men " -"endnu ikke er blevet flushet til disk. Det hed tidligere " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " -"til at fastslå hvor meget af nøglemellemlagere der er i brug." - -#: server_status.php:1596 -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 "" -"Antallet af brugte blokke i nøglemellemlageret. Denne værdi er et højvande-" -"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " -"været i brug på en gang." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." - -#: server_status.php:1599 -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 "" -"Antallet af fysiske læsninger af en nøgleblok fra disk. Hvis Key_reads er " -"stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " -"raten kan beregnes som Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Missede nøgle-mellemlagringer beregnet som raten af fysiske læsninger " -"sammenlignet med læse-forespørgsler (beregnet værdi)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Procentdel af fysiske skrivninger sammenlignet med skrive-forespørgsler " -"(beregnet værdi)" - -#: server_status.php:1604 -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 "" -"Totale omkostninger for den seneste kompilerede forespørgsel som beregnet af " -"forespørgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger " -"på forskellige forespørgselsplaner for den samme forespørgsel. En " -"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " -"endnu." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Det maksimale antal forbindelser, som har været i brug samtidigt, siden " -"serveren startede." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " -"dit tabelmellemlager sandsynligvis for lille." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Antallet af filer der er åbne." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Antallet af tabeller der er åbne." - -#: server_status.php:1611 -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 "" -"Antallet af frie hukommelsesblokke i forespørgselsmellemlageret. Høje tal " -"kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " -"kommando." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Antallet af mellemlager hits." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Antallet af forespørgsler tilføjet til mellemlageret." - -#: server_status.php:1615 -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 "" -"Antallet af forespørgsler der er blevet fjernet fra mellemlageret for at " -"rydde hukommelse til mellemlagring af nye forespørgsler. Denne information " -"kan hjælpe dig med at tune forespørgselsmellemlagerets størrelse. " -"Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " -"at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " -"eller ikke mellemlagret grundet query_cache_type indstillingen)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Antallet af forespørgsler registreret i mellemlageret." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Totalt antal blokke i forespørgsels-mellemlageret." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." - -#: server_status.php:1620 -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 "" -"Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " -"nøje tjekke indeksene på dine tabeller." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "Antallet af joins der brugte en range søgning på en reference tabel." - -#: server_status.php:1622 -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 "" -"Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " -"(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " -"kritisk selvom tallet er stort.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Antallet af joins som lavede en fuld scan af den første tabel." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" -"forsøgt transaktioner." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Dette er TIL hvis denne server er en slave der er forbundet til en master." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Antallet af tråde der har taget mere end slow_launch_time sekunder at " -"oprette." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Antallet af forespørgsler der har taget mere end long_query_time sekunder." - -#: server_status.php:1630 -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 "" -"Antallet af sammenlægningskørsler sorteringsalgoritmen skulle lave. Hvis " -"denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " -"systemvariablen." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Antallet af sorteringer lavet med ranges." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Antallet af sorterede rækker." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Antallet af sorteringer udført ved scanning af tabellen." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." - -#: server_status.php:1635 -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 "" -"Antallet af gange en tabellås ikke kunne fås øjeblikkeligt og en wait var " -"nødvendig. Hvis denne er høj, og du har ydelsesproblemer, bør du først " -"optimere dine forespørgsler, og derefter enten opdele din tabel eller " -"tabeller, eller bruge replikation." - -#: server_status.php:1636 -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 "" -"Antallet af tråde i tråd-mellemlageret. Mellemlager-hitraten kan udregnes " -"som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " -"thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Antallet af i øjeblikket åbne forbindelser." - -#: server_status.php:1638 -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 "" -"Antallet af tråde oprettet til at håndtere forbindelser. Hvis " -"Threads_created er stor, kan du vælge at forøge thread_cache_size værdien. " -"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " -"tråd-implementering.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Frekvens for hits i trådmellemlager (beregnet værdi)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Antallet af tråde, der ikke sover." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Start monitorering" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instruktioner/Opsætning" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Færdig med at omordne/redigere diagrammer" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Tilføj diagram" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Omordne/rediger diagrammer" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Diagramkolonner" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Diagramopstilling" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11496,15 +10735,15 @@ msgstr "" "Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " "muligt at eksportere den, hvis man har en kompleks opstilling." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Gendan standardværdi" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Monitorinstruktioner" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11518,7 +10757,7 @@ msgstr "" "og at slow_query_log eller general_log aktiveres. Bemærk dog, at\n" "general_log genererer en mængde data og forøger server load med op til 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11530,11 +10769,11 @@ msgstr "" "tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " "bruge funktionerne for serverdiagrammer." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Brug af monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11545,7 +10784,7 @@ msgstr "" "'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " "cog på det relevante diagram." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11557,11 +10796,11 @@ msgstr "" "Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, " "hvor man kan klikke på en given SELECT-forespørgsel for at analysere det." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Bemærk venligst:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11573,92 +10812,825 @@ msgstr "" "tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " "tømme dens tabel, når der ikke er behov for den længere." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Foruddefineret diagram" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Statusvariabel/-ble" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Vælg serie:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Almindeligt overvåget" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "eller indtast variabelnavn:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Vis som forskelsværdi" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Anvend divisor" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Tilføj enhed til dataværdier" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Tilføj denne serie" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Slet serie" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Serier i diagram:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Logstatistik" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Valgt tidsinterval:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Resultaterne er grupperet af forespørgselstekst." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Forespørgselsanalysator" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutter" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Forespørgsler siden startup: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Forespørgsler" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtre" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Indeholdende ordet:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Vis kun alert-værdier" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrer efter kategori..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Vis uformatterede værdier" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Relaterede links:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " +"lukke forbindelsen rigtigt." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." + +#: server_status_variables.php:334 +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 "" +"Antal transaktioner der brugte det midlertidige binære log mellemlager, men " +"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " +"gemme statements fra transaktionen." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Antal transaktioner der brugte det midlertidige binære log mellemlager." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." + +#: server_status_variables.php:346 +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 "" +"Antal midlertidige tabeller på disken oprettet automatisk af serveren under " +"udførelse af statements. Hvis Created_tmp_disk_tables er stor, skal du " +"overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " +"hukommelses-baserede i stedet for disk-baserede." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Hvor mange midlertidige filer mysqld har oprettet." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " +"under udførelse af statements." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " +"der opstod fejl (sandsynligvis dublerede nøgler)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " +"hvorpå en bruger INSERT DELAYED får sin egen tråd." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Antallet af INSERT DELAYED rækker skrevet." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Antallet af udførte FLUSH statements." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Antallet af interne COMMIT statements." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Antallet af gange en række blev slettet fra en tabel." + +#: server_status_variables.php:381 +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 "" +"MySQL serveren kan spørge en NDB Cluster storage engine om den kender til en " +"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " +"antallet af gange tabeller er blevet opdaget." + +#: server_status_variables.php:387 +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 "" +"Antallet af gange første indlæg blev læst fra et indeks. Hvis denne er høj, " +"antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " +"col1 FROM foo, antagende at col1 er indekseret." + +#: server_status_variables.php:393 +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 "" +"Antallet af anmodninger om at læse en række baseret på en nøgle. Hvis denne " +"er høj, er det en god indikation af at dine forespørgsler og tabeller er " +"ordentligt indekserede." + +#: server_status_variables.php:398 +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 "" +"Antallet af anmodninger om at læse næste række i nøgleorden. Denne forøges " +"hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " +"du udfører et indeks scan." + +#: server_status_variables.php:403 +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 "" +"Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " +"læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Antallet af anmodninger om at læse en række baseret på en fast position. " +"Denne er høj hvis du laver mange forespørgsler der kræver sortering af " +"resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " +"scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." + +#: server_status_variables.php:414 +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 "" +"Antallet af anmodninger om læsning af næste række i datafilen. Denne er høj " +"hvis du laver mange tabelscanninger. Generelt antyder dette at dine tabeller " +"enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " +"skrevet til at drage fordel af de indeks du har." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Antallet af interne ROLLBACK statements." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Antallet af anmodninger om at opdatere en række i en tabel." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Antallet af anmodninger om at indsætte en række i en tabel." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Antallet af sider der indeholder data (beskidte eller rene)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Antallet af såkaldt beskidte sider." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Antallet af frie sider." + +#: server_status_variables.php:443 +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 "" +"Antallet af eksklusivt låste (latched) sider i InnoDB buffer pool. Dette er " +"sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " +"fjernes af andre årsager." + +#: server_status_variables.php:448 +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 "" +"Antallet af travle sider fordi de er blevet allokeret til administrativ " +"overhead så som rækkelåse eller det adaptive hash indeks. Denne værdi kan " +"også beregnes som Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Total størrelse på buffer pool, i sider." + +#: server_status_variables.php:458 +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 "" +"Antallet af \"tilfældige\" read-aheads InnoDB initierede. Dette sker når en " +"forespørgsel skal scanne en større del af en tabel men i tilfældig " +"rækkefølge." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " +"InnoDB laver en sekventiel fuld tabelscanning." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Antallet af logiske read anmodninger InnoDB har lavet." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " +"pool og måtte lave en enkelt-side read." + +#: server_status_variables.php:474 +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 "" +"Normalt sker skrivninger til InnoDB buffer poolen i baggrunden. Men, hvis " +"der er brug for at læse eller oprette en side og der ikke er nogen rene " +"sider tilgængelige, er det nødvendigt at vente på at der bliver flushet " +"sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " +"pool størrelsen er sat ordentligt, skulle denne værdi være lille." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Antallet af skrivninger til InnoDB buffer poolen." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Antallet af fsync() operationer indtil nu." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Nuværende antal ventende fsync() operationer." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Nuværende antal af ventende reads." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Nuværende antal af ventende writes." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Mængden af data læst indtil nu, i bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Det totale antal af data reads." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Det totale antal af data writes." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Mængden af data skrevet indtil nu, i bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Antallet af doublewrite skrivninger der er udført og antallet af sider der " +"er blevet skrevet til dette formål." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Antallet af doublewrite skrivninger der er udført og antallet af sider der " +"er blevet skrevet til dette formål." + +#: server_status_variables.php:516 +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 "" +"Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " +"vente på at den blev flushed før vi kunne fortsætte." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Antallet af log write anmodninger." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Antallet af fysiske skrivninger til log filen." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Antallet af fsyncs skrivninger lavet til logfilen." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Antallet af ventende log fil fsyncs." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Ventende log fil skrivninger." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Antallet af bytes skrevet til log filen." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Antallet af sider oprettet." + +#: server_status_variables.php:541 +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 "" +"Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " +"tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Antallet af sider læst." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Antallet af sider skrevet." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Antallet af rækkelåse der ventes på i øjeblikket." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Antallet af gange der skulle ventes på en rækkelås." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Antallet af rækker slettet fra InnoDB tabeller." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Antallet af rækker indsat i InnoDB tabeller." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Antallet af rækker læst fra InnoDB tables." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Antallet af rækker opdateret i InnoDB tabeller." + +#: server_status_variables.php:579 +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 "" +"Antallet af nøgleblokeringer i nøglemellemlageret der har ændret sig men " +"endnu ikke er blevet flushet til disk. Det hed tidligere " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " +"til at fastslå hvor meget af nøglemellemlagere der er i brug." + +#: server_status_variables.php:588 +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 "" +"Antallet af brugte blokke i nøglemellemlageret. Denne værdi er et højvande-" +"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " +"været i brug på en gang." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." + +#: server_status_variables.php:599 +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 "" +"Antallet af fysiske læsninger af en nøgleblok fra disk. Hvis Key_reads er " +"stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " +"raten kan beregnes som Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Missede nøgle-mellemlagringer beregnet som raten af fysiske læsninger " +"sammenlignet med læse-forespørgsler (beregnet værdi)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Procentdel af fysiske skrivninger sammenlignet med skrive-forespørgsler " +"(beregnet værdi)" + +#: server_status_variables.php:619 +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 "" +"Totale omkostninger for den seneste kompilerede forespørgsel som beregnet af " +"forespørgsels-optimeringsrutinen. Brugbart til at sammenligne omkostninger " +"på forskellige forespørgselsplaner for den samme forespørgsel. En " +"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " +"endnu." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Det maksimale antal forbindelser, som har været i brug samtidigt, siden " +"serveren startede." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " +"dit tabelmellemlager sandsynligvis for lille." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Antallet af filer der er åbne." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Antallet af tabeller der er åbne." + +#: server_status_variables.php:645 +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 "" +"Antallet af frie hukommelsesblokke i forespørgselsmellemlageret. Høje tal " +"kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " +"kommando." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Antallet af mellemlager hits." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Antallet af forespørgsler tilføjet til mellemlageret." + +#: server_status_variables.php:659 +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 "" +"Antallet af forespørgsler der er blevet fjernet fra mellemlageret for at " +"rydde hukommelse til mellemlagring af nye forespørgsler. Denne information " +"kan hjælpe dig med at tune forespørgselsmellemlagerets størrelse. " +"Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " +"at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " +"eller ikke mellemlagret grundet query_cache_type indstillingen)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Antallet af forespørgsler registreret i mellemlageret." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Totalt antal blokke i forespørgsels-mellemlageret." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." + +#: server_status_variables.php:679 +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 "" +"Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " +"nøje tjekke indeksene på dine tabeller." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "Antallet af joins der brugte en range søgning på en reference tabel." + +#: server_status_variables.php:686 +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 "" +"Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " +"(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " +"kritisk selvom tallet er stort.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Antallet af joins som lavede en fuld scan af den første tabel." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" +"forsøgt transaktioner." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Dette er TIL hvis denne server er en slave der er forbundet til en master." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Antallet af tråde der har taget mere end slow_launch_time sekunder at " +"oprette." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Antallet af forespørgsler der har taget mere end long_query_time sekunder." + +#: server_status_variables.php:717 +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 "" +"Antallet af sammenlægningskørsler sorteringsalgoritmen skulle lave. Hvis " +"denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " +"systemvariablen." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Antallet af sorteringer lavet med ranges." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Antallet af sorterede rækker." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Antallet af sorteringer udført ved scanning af tabellen." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." + +#: server_status_variables.php:734 +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 "" +"Antallet af gange en tabellås ikke kunne fås øjeblikkeligt og en wait var " +"nødvendig. Hvis denne er høj, og du har ydelsesproblemer, bør du først " +"optimere dine forespørgsler, og derefter enten opdele din tabel eller " +"tabeller, eller bruge replikation." + +#: server_status_variables.php:740 +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 "" +"Antallet af tråde i tråd-mellemlageret. Mellemlager-hitraten kan udregnes " +"som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " +"thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Antallet af i øjeblikket åbne forbindelser." + +#: server_status_variables.php:748 +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 "" +"Antallet af tråde oprettet til at håndtere forbindelser. Hvis " +"Threads_created er stor, kan du vælge at forøge thread_cache_size værdien. " +"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " +"tråd-implementering.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Frekvens for hits i trådmellemlager (beregnet værdi)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Antallet af tråde, der ikke sover." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Variablen blev ikke sat" @@ -11947,8 +11919,8 @@ msgid "" msgstr "" "Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %" "sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret " -"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder " -"med mange tusinde brugere." +"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med " +"mange tusinde brugere." #: setup/lib/index.lib.php:316 #, php-format @@ -12249,26 +12221,26 @@ msgstr "Begrænsning på fremmednøgle" msgid "Tracking report for table `%s`" msgstr "Sporings rapport for tabel `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sporing af %1$s blev deaktiveret i version %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sporing af %1$s blev aktiveret i version %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL-sætninger udført." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12276,117 +12248,117 @@ msgstr "" "Du kan udføre eksporten ved at oprette og bruge en midlertidig database. " "Sørg venligst for at du har privilegier til at gøre det." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-sætninger eksporteres. Kopier venligst dump eller udfør den." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL kode)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Sporing af data definition slettet" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Forespørgselsfejl" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulerede sporingsdata slettet" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Sporingskommandoer" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %1$s med datoer fra %2$s til %3$s for brugeren %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Slet sporingsdatarække fra rapport" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Ingen data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Datadefinitionsudstryk" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Data manipuleringsudtryk" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL-udtræk (hentning af fil)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Denne indstilling vil erstatte din tabel og dens indeholdte data." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL-kørsel" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Vis versioner" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiver sporing af %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deaktiver nu" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Aktiver sporing af %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktiver nu" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Opret version %1$s af %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Spor disse datadefinitionskommandoer:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulations-forespørgsler:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Opret version" @@ -12542,11 +12514,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time er i øjeblikket sat til %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Logning af langsomme forespørgsler" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Logning af langsommme forspørgsler er deaktiveret." @@ -12562,36 +12534,54 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries er sat til 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Aktiver logning af langsomme forespørgsler ved at sætte {log_slow_queries} " +"til 'ON'. Dette vil hjælpe til med at fejlsøge langsomme forespørgsler." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries er sat til 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Udgivelsesserie" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Versionen af MySQL-serveren er lavere end 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" "Du bør opgradere, da MySQL 5.1 har forbedret ydeevne og MySQL 5.5 endnu mere." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Aktuel version: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Underversion" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Versionen er mindre end 5.1.30 (den første GA-udgivelse i 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12599,26 +12589,26 @@ msgstr "" "Du bør opgradere, da nyere versioner af MySQL 5.1 har forbedret ydeevne og " "MySQL 5.5 endnu mere." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Version mindre end 5.5.8 (den første GA-udgivelse i 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Du burde opdatere til en stabil version af MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribution" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Denne version er oversat fra kildefiler, ikke en officiel binær MySQL " "version." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12629,40 +12619,40 @@ msgstr "" "MySQL binære filer, ikke for pakker fra distributioner som RedHat, Debian/" "Ubuntu osv." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' fundet i version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL manualen er kun korrekt for officielle MySQL binære filer." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona dokumentation findes i http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' fundet i version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle dokumentation er i http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Versionstreng (%s) passer med Drizzle versionsformat" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL arkitektur" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL er ikke oversat som en 64-bit pakke." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12672,20 +12662,20 @@ msgstr "" "så MySQL kan måske ikke anvende al din hukommelse. Du bør overveje at " "installere 64-bit versionen af MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Tilgængelig hukommelse på denne maskine: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Forespørgsel-mellemlager deaktiveret" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Forespørgsel-mellemlager er ikke aktiveret." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12697,19 +12687,19 @@ msgstr "" "cifret MiB værdi og sætte {query_cache_type} til 'ON'. OBS: Hvis der " "bruges memcached, så ignorer denne anbefaling." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size er sat til 0 eller query_cache_type er sat til 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Metode for forespørgsels-mellemlager" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Suboptimal metode for mellemlager." -#: libraries/advisory_rules.txt:157 +#: 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 i stedet for MySQL " "forespørgselsmellemlager, særligt hvis du har flere slaver." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12731,35 +12721,35 @@ msgstr "" "pr sekund. Denne regel aktiveres, hvis der er mere end 100 forespørgsler pr " "sekund." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Effektiviteten af forespørgselsmellemlager (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "Forespørgselsmellemlageret kører ikke effektivt. Det har en lav hitrate." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Overvej at forøge {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Den aktuelle hitrate %s%% for forespørgselsmellemlager er under 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Brug af forespørgselmellemlager" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Mindre end 80%% af forespørgselsmellemlageret er udnyttet." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12767,7 +12757,7 @@ msgstr "" "Dette kan skyldes, at {query_cache_limit} er for lav. Tømning af " "forespørgselsmellemlageret kan også hjælpe." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12776,15 +12766,15 @@ msgstr "" "Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. " "Det bør være over 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Fragmentering af forespørgselmellemlager" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Forespørgselsmellemlageret er meget fragmenteret." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12804,7 +12794,7 @@ msgstr "" "mellemlagret ved at bruge denne formel: (query_cache_size - " "qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12815,11 +12805,11 @@ msgstr "" "at forespørgselmellemlageret er et skiftende mønster af frie og ubrugte " "blokke. Denne værdi bør være under 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Udrensninger ved lav hukommelse i forespørgselmellemlager" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -12827,7 +12817,7 @@ msgstr "" "Mellemlagrede forespørgsler er fjernet pga. lav hukommelse i " "forespørgselmellemlageret." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12837,7 +12827,7 @@ msgstr "" "vedligeholde lageret forøges med dets størrelse, så gør det lidt ad gangen " "og check resultatet." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12846,11 +12836,11 @@ msgstr "" "Andelen af fjernede forespørgsler til indsatte forespørgsler er %s%%. Jo " "mindre denne værdi er des bedre. (Denne regels aktiveringsgrænse: 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maks størrelse af forespørgselmellemlager" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12858,30 +12848,30 @@ msgstr "" "Forespørgselmellemlageret er over 128 MiB. Et stort forespørgselmellemlager " "kan give serveren betydeligt arbejde med at vedligeholde lageret." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "" "Afhængig af installationen kan ydeevnen forøges ved reduktion af denne værdi." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Aktuel størrelse af forespørgselmellemlager: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Minimum resultatstørrelse i forespørgselmellemlager" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Den makimale størrelse af resultatsættet i forespørgselmellemlageret er " "standardværdien 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12902,19 +12892,19 @@ msgstr "" "for mellemlagring (ofte invalideret pga tabelopdateringer), kan en forøgelse " "af {query_cache_limit} reducere ydeevnen." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit er sat til 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Procentdel af sorteringer, som bruger midlertidige tabeller" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "For mange sorteringer bruger midlertidige tabeller." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12922,7 +12912,7 @@ msgstr "" "Overvej at forøge sort_buffer_size og/eller read_rnd_buffer_size afhængig af " "størrelsen af serverens hukommelse" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12931,11 +12921,11 @@ msgstr "" "%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være " "mindre end 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Andel af sorteringer, som bruger midlertidige tabeller" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -12943,15 +12933,15 @@ msgstr "" "Gennemsnit af midlertidige tabeller: %s. Denne værdi bør være mindre end 1 " "pr time." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sorter rækker" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Der er mange rækker, der sorteres." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12963,20 +12953,20 @@ msgstr "" "indekserede kolonner i klausulen ORDER BY, da dette vil resultere i en meget " "hurtigere sortering" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Gennemsnit af sorterede rækker: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Frekvens af joins uden indeks" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Der er for mange joins uden indeks." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -12985,20 +12975,20 @@ msgstr "" "indeks for kolonner, der bruges i join-betingelserne vil forøge hastigheden " "af tabel-joins" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "Gennemsnitlig joins: %s. Denne værdi bør være mindre end 1 pr time" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Frekvensen af læsning af første indeksindgang" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Frekvensen af læsning af første indeksindgang er høj." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13014,21 +13004,21 @@ msgstr "" "indeksskanninger hurtigere. Alternativt må man omskrive forespørgsler for at " "reducere fulde indeksskanninger." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Gennemsnit for indeksskan: %s. Denne værdi bør være mindre end 1 pr time" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Frekvens af læsning af fast position" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Frekvensen af læsning af data fra fast position er høj." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13038,7 +13028,7 @@ msgstr "" "foretager fulde tabelskanninger inklusive join-forespørgsler, som ikke " "bruger indeks. Tilføj indeks, hvor det er relevant." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13047,15 +13037,15 @@ msgstr "" "Gennemsnit for læsning af fast position: %s. Denne værdi bør være mindre end " "1 pr time" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Frekvens af læsning af næste tabelrække" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Frekvensen af læsning af den næste tabelrække er høj." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13063,7 +13053,7 @@ msgstr "" "Dette indikerer, at mange forespørgsler foretager fulde tabelskanninger. " "Tilføj indeks, hvor det er passende." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13071,15 +13061,15 @@ msgstr "" "Frekvens af læsning af næste tabelrække: %s. Denne værdi bør være mindre end " "1 pr time" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size op imod max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size og max_heap_table_size er ikke ens." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13090,16 +13080,16 @@ msgstr "" "at bestemme den maksimale størrelse af tabeller i hukommelse. Så hvis man " "ønsker at forøge grænsen for tabeller i hukommelse, så skal begge forøges." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Aktuelle værdier er tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Procentdel af midlertidige tabeller på disk" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13107,7 +13097,7 @@ msgstr "" "Mange midlertidige tabeller skrives til disk i stedet for at blive i " "hukommelsen." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13125,7 +13115,7 @@ msgstr "" "href=\"http://dev.mysql.com/doc/refman/5.5/en/internal-temporary-tables.html" "\">MySQL Documentation" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13134,11 +13124,11 @@ msgstr "" "%s%% af alle midlertidige tabeller skrives til disk. Denne værdi bør være " "under 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Frekvens af midlertidig disk" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13156,7 +13146,7 @@ msgstr "" "MySQL Documentation" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13165,17 +13155,17 @@ msgstr "" "Frekvens af midlertidige tabeller som skrives til disk: %s. Denne værdi bør " "være mindre end 1 pr time" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM nøglebufferstørrelse" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Nøglebuffer er ikke initialiseret. Ingen MyISAM indeks vil blive lagret i " "mellemlager." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13183,21 +13173,21 @@ msgstr "" "Sæt {key_buffer_size} afhængig af størrelsen af dine MyISAM indeks. 64M er " "en god begyndelse." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size er 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Maksimal %% MyISAM nøglebuffer nogensinde brugt" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM nøglebuffer (indeksmellemlager) %% brugt er lav." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13207,7 +13197,7 @@ msgstr "" "fjernede indeks eller undersøge forespørgsler og forventninger om, hvilke " "indeks der bruges." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13215,42 +13205,42 @@ msgstr "" "maksimal %% MyISAM-nøglebuffer som nogensinde bruges: %s%%. Denne værdi bør " "være over 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Procentdel brugt af MyISAM nøglebuffer" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "%% MyISAM-nøglebuffer som bruges: %s%%. Denne værdi bør være over 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Procentdel af indekslæsninger fra hukommelse" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "Procentdelen af indeks, der bruger MyISAM nøglebuffer er lav." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Du bør måske forøge {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Indekslæsninger fra hukommelse: %s%%. Denne værdi bør være over 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Frekvens af tabelåbninger" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Frekvensen af tabelåbninger er høj." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13258,17 +13248,17 @@ msgstr "" "Åbning af tabeller kræver disk I/O, som er kostbart. Ved forøgelse af " "{table_open_cache} kan dette undgås." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Frekvens af tabelåbning: %s. Denne værdi bør være mindre end 10 pr time" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Procentdel af grænse for brugte åbne filer" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13276,7 +13266,7 @@ msgstr "" "Antallet af åbne filer nærmer sig det maksimale antal åbne filer. Du kan få " "en \"Too many open files\" fejl." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13284,60 +13274,60 @@ msgstr "" "Overvej at forøge {open_files_limit} og check fejlloggen, når der genstartes " "efter ændringen." -#: libraries/advisory_rules.txt:332 +#: 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 "Antallet af åbne filer er på %s%% af grænsen. Den bør være under 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Frekvens af åbne filer" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Frekvensen af filåbninger er høj." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Frekvens af filåbninger: %s. Denne værdi bør være mindre end 5 pr time" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Omgående tabellåse %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "For mange tabellåse blev ikke givet øjeblikkeligt." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimer forespørgsler og/eller brug InnoDB for at reducere ventetid på låse." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Omgående tabellåse: %s%%. Denne værdi bør være over 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Frekvens af venten på tabellås" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Frekvens af venten på tabellås: %s. Denne værdi bør være mindre end 1 per " "time" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Trådmellemlager" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13345,42 +13335,42 @@ msgstr "" "Trådmellemlageret er deaktiveret, hvilket resulterer i mere arbejde ved nye " "forbindelser til MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Aktiver trådmellemlager ved at sætte {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Trådmellemlager er sat til 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Frekvens for hits i trådmellemlager %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Trådmellemlageret er ikke effektivt." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Forøg {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Frekvens for hits i trådmellemlager: %s%%. Denne værdi bør være over 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Tråde som er langsomme til at starte" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Der er for mange tråde, som starter for langsomt." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13388,20 +13378,20 @@ msgstr "" "Dette sker i tilfælde af generel systemoverbelastning, da det er temmelig " "simple operationer. Det anbefales at overvåge systemets belastning." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s tråd(e) tog længere end %s sekunder for at starte. Det burde være 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Langsom starttid" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads er over 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13409,23 +13399,23 @@ msgstr "" "Sæt slow_launch_time til 1s eller 2s for korrekt at tælle tråde, der er " "langsomme til at starte" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time er sat til %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Procentdel af brugte forbindelser" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" "Det maksimale antal brugte forbindelser er tæt på værdien af max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13435,22 +13425,22 @@ msgstr "" "lukker database handlers ordentligt bliver afbrudt tidligere. Sørg for, at " "programkode lukker database handlers ordentligt." -#: libraries/advisory_rules.txt:390 +#: 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 er på %s%% af max_connections. Den bør være under 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Procentdel af aborterede forbindelser" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "For mange forbindelser er aborterede." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Denne artikel kan måske hjælpe dig med at " "finde årsagen." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% af alle forbindelser er aborteret. Denne værdi bør være under 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Frekvens af aborterede forbindelser" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13479,15 +13469,15 @@ msgstr "" "Frekvensen af aborterede forbindelser er %s. Denne værdi bør være mindre end " "1 per time" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Procentdel af aborterede klienter" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "For mange klienter er aborterede." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13497,43 +13487,43 @@ msgstr "" "ordentligt. Dette kan skyldes netværksproblemer eller programkode, der ikke " "lukker database handlers ordentligt. Check netværk og programkode." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% af alle klienter er aborteret. Denne værdi bør være under 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Frekvens af aborterede klienter" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Frekvensen af aborterede klienter er %s. Denne værdi bør være mindre end 1 " "per time" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Er InnoDB deaktiveret?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB er ikke aktiveret." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB er sædvanligvis et bedre valg for tabelformat." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb er sat til 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB logstørrelse" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13541,7 +13531,7 @@ msgstr "" "InnoDB logstørrelsen er ikke en passende størrelse set i relation til InnoDB " "buffer poolen." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13563,7 +13553,7 @@ msgstr "" "Se også dette blogindlæg" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13572,15 +13562,15 @@ msgstr "" "Din InnoDB logstørrelse er %s%% i relation til InnoDB buffer pool " "størrelsen. Den bør ikke være under 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maksimal InnoDB logstørrelse" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB logfilen er utilstrækkelig stor." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13603,20 +13593,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">dette blogindlæg" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Din absolutte InnoDB-logstørrelse er %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB buffer pool størrelse" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Din InnoDB buffer pool er temmelig lille." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13640,7 +13630,7 @@ msgstr "" "www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">denne artikel" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13653,15 +13643,15 @@ msgstr "" "fuldstændigt tilstrækkeligt for dette system, hvis der ikke er mange InnoDB " "tabeller, eller der kører andre ting på maskinen." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM samtidige inserts" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Aktiver concurrent_insert ved at sætte den til 1" -#: libraries/advisory_rules.txt:456 +#: 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" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB sendt siden forrige visning" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB modtaget siden forrige visning" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Server-trafik (i KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Forbindelser siden sidste visning" + +#~ msgid "Questions since last refresh" +#~ msgstr "Spørgsmål siden sidste visning" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Spørgsmål (eksekverede forespørgsler på serveren)" + +#~ msgid "Runtime Information" +#~ msgstr "Runtime-information" + +#~ msgid "Number of data points: " +#~ msgstr "Antal datapunkter: " + +#~ msgid "Refresh rate: " +#~ msgstr "Opdateringsrate: " + +#~ msgid "Run analyzer" +#~ msgstr "Kør analysator" + #~ msgid "Show more actions" #~ msgstr "Vis flere operationer" diff --git a/po/de.po b/po/de.po index f6592abab9..3b1205cbb5 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-05 17:33+0200\n" "Last-Translator: J. M. \n" "Language-Team: German Einstellungen Menü auf die " "Standardwerte zurück." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Abfragen-Zwischenspeicher Effizienz" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Abfragen-Zwischenspeichernutzung" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Abfragen-Zwischenspeicher benutzt" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "CPU-Auslastung" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Arbeitsspeicher" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Auslagerungsspeicher" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Durchschnittliche Auslastung" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Gesamter Speicher" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Zwischenspeicher" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Gepufferter Speicher" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Freier Speicher" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Verwendeter Speicher" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Gesamt Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Zwischengespeicherter Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Benutzer Swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Freier Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes gesendet" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Verbindungen" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prozesse" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d Tabelle(n)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Anfragen" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Einstellungen" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Skala entfernen" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Titel und Beschriftungen bearbeiten" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Skala dem Raster hinzufügen" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "keine" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Überwachung fortsetzen" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Überwachung pausieren" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log und slow_query_log sind aktiviert." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log ist aktiviert." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log ist aktiviert." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log und general_log sind deaktiviert." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output ist nicht auf TABLE eingestellt." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output ist auf TABLE eingestellt." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1315,12 +1288,12 @@ msgstr "" "die länger als %d ausgeführt wurden. Es ist ratsam, den Wert long_query_time " "auf 0-2 Sekunden einzustellen, abhängig vom System." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ist auf %d Sekunde(n) eingestellt." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1329,30 +1302,30 @@ msgstr "" "Neustart auf ihre Ursprungswerte zurückgesetzt:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Setze log_output auf %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktiviere %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Deaktiviere %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Setze long_query_time auf %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1360,54 +1333,54 @@ msgstr "" "Sie können diese Variablen nicht ändern. Bitte melden Sie sich mit einem " "Root-Benutzer an, oder kontaktieren Sie Ihren Datenbank-Administrator." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Einstellungen ändern" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Schaubild-Titel" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Unterschied" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Geteilt durch %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Einheit" # Eigenname der MySQL-Funktion -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Vom slow Log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Vom allgemeinen Log" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analysiere Protokolle" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analysiere und lade Protokolle. Dies kann eine Weile dauern." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Abfrage abbrechen" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1417,7 +1390,7 @@ msgstr "" "wurden. Jedoch wird nur der SQL-Text verglichen, daher kann die Angabe von " "anderen Werten der Abfrage, wie die Startzeit, unterschiedlich sein." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1427,101 +1400,101 @@ msgstr "" "Befehle in die gleiche Tabelle zusammengefasst, unabhängig von den " "eingefügten Daten." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Protokoll-Daten geladen. Innerhalb dieses Zeitaums ausgeführte Abfragen:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Springe zur Protokoll-Tabelle" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Keine Daten gefunden" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Das Protokoll wurde analysiert, es wurden jedoch keine Daten für den " "angegebenen Zeitraum gefunden." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analysieren…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Ausgabe erklären" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Zeit" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Gesamt Zeit:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profiler Ergebnisse" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabelle" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagramm" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Diagramm bearbeiten" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Reihe" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Filteroptionen für Protokoll-Tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Abfragen durch Wort/Regulären Ausdruck filtern:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppiere die Abfragen und ignoriere Werte in WHERE-Abfragen" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Anzahl der gruppierten Datensätze:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Insgesamt:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Lade Protokolle" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Aktualisierung der Überwachung fehlgeschlagen" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1531,258 +1504,260 @@ msgstr "" "Das ist vermutlich passiert, weil Ihre Sitzung abgelaufen ist. Es sollte " "helfen, wenn Sie die Seite aktualisieren und sich erneut anmelden." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Neu laden" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Betroffene Zeilen:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Das Einlesen der Konfigurationsdatei ist fehlgeschlagen. Es scheint sich " "nicht um eine gültige JSON-Kodierung zu handeln." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Setze auf Standardeinstellungen zurück…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Konfiguration des Importmonitors" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Bitte wählen Sie die Datei, die Sie importieren möchten" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Anfrage analysieren" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Ratgebersystem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mögliche Performance-Probleme" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Empfehlung" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Regel-Details" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Ausrichtung" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Benutzte Variable/Formel" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Laden" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Bearbeite Anfrage" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Fehlercode: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Fehlertext: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Spalte wird gelöscht" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Primärschlüssel wird hinzugefügt" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Hier klicken um diese Meldung zu schließen" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Datenbanken werden umbenannt" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Datenbank neu laden" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Datenbank wird kopiert" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Zeichensatz wird geändert" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Die Tabelle muss mindestens eine Spalte haben" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Tabelle einfügen" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Indexes verbergen" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Indexes anzeigen" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Fremdschlüsselüberprüfung:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Aktiviert)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Deaktiviert)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Suche" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Suchergebnisse ausblenden" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Suchergebnisse anzeigen" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Durchsehen" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Löschen" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Werte für die Spalte %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Werte für eine neue Spalte" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Geben Sie jeden Wert in einem eigenen Feld ein" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d Wert(e) hinzufügen" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Hinweis: Wenn die Datei mehrere Tabellen enthält, werden diese in einer " "einzigen Tabelle zusammengefasst" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "SQL-Querybox ausblenden" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Bearbeiten" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Ausführungszeit der Abfrage" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1791,93 +1766,93 @@ msgstr "%d ist keine gültige Zeilennummer." msgid "Save" msgstr "Speichern" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Suche" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Jeder Punkt stellt eine Datenreihe dar." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" "Zum Hineinzoomen markieren Sie mit der Maus einen Abschnitt des Diagramms." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Auf \"Zoom zurücksetzen\" klicken, um zum Original zurückzukehren." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Auf einen Datenpunkt klicken, um eine Datenzeile anzuzeigen bzw. zu " "editieren." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Die Größe der Darstellung kann durch Ziehen in die rechte untere Ecke " "verändert werden." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Zwei Spalten auswählen" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Abfrageergebnisse" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopieren" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Spalten hinzufügen" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1885,15 +1860,20 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren " "wenn Sie nicht speichern. Möchten Sie fortfahren?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Option hinzufügen zu Spalte " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Drücken Sie ESC um das Bearbeiten abzubrechen" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1901,29 +1881,29 @@ msgstr "" "Sie haben Daten verändert und noch nicht gespeichert. Sind Sie sicher, dass " "Sie diese Seite ohne zu speichern verlassen möchten?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Zur Umsortierung ziehen" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Zur Anordnung anklicken" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klicken zum aus- bzw. abwählen" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Doppelklicken Sie um den Spaltenname zu kopieren" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte " "umzustellen" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1933,7 +1913,7 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1941,61 +1921,61 @@ msgstr "" "Sie können die meisten Spalten auch bearbeiten,
indem Sie auf ihren " "Inhalt doppelklicken." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Sie können die meisten Spalten bearbeiten
indem Sie auf den Inhalt " "klicken." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Gehe zur Verknüpfung" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Spaltennamen kopieren" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klicken Sie auf den Spaltennamen, um ihn in die Zwischenablage zu kopieren." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Zeige Daten Zeile(n)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generieren" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mehr" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Panel anzeigen" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Panel ausblenden" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Die angeforderte Seite wurde nicht im Verlauf gefunden, sie könnte " "abgelaufen sein." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2005,266 +1985,266 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "auf dem neuesten Stand" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Fertig" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Heute" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Januar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Februar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "März" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "April" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "August" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dez" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Montag" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Freitag" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Wo" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Stunde" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minute" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekunde" @@ -2317,16 +2297,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Unerwartetes Zeichen in Zeile %1$s. Tab erwartet, aber \"%2$s\" gefunden" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "pro Sekunde" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "pro Minute" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "pro Stunde" @@ -2354,7 +2334,7 @@ msgstr "Schriftgröße" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Aufsteigend" @@ -2363,7 +2343,7 @@ msgstr "Aufsteigend" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Absteigend" @@ -2477,7 +2457,7 @@ msgstr "Treffer für Tabelle %s löschen?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Löschen" @@ -2647,7 +2627,7 @@ msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Beenden" @@ -2708,12 +2688,13 @@ msgstr "Alle auswählen" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" @@ -2721,7 +2702,7 @@ msgstr "Exportieren" msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2808,16 +2789,16 @@ msgstr "Die hochgeladene (verschobene) Datei kann nicht gelesen werden." msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript muss ab hier aktiviert sein" @@ -2829,21 +2810,21 @@ msgstr "Kein Index definiert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indizes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalität" @@ -2853,13 +2834,13 @@ msgstr "Kardinalität" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Kollation" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentar" @@ -2904,7 +2885,7 @@ msgstr "Ansicht" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -2977,34 +2958,35 @@ msgstr "Ereignisse" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Benutzer" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binäres Protokoll" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikation" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Erweiterungen" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Formate" @@ -3052,6 +3034,104 @@ msgstr "Letzte Tabellen" msgid "There are no recent tables" msgstr "Es gibt keine letzten Tabellen" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-Befehl" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Bezeichner" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Abfragen-Zwischenspeicher" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Prozesse" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Temporäre Daten" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Verzögertes Einfügen (delayed inserts)" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Schlüssel-Zwischenspeicher" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Tabellenverknüpfungen (joins)" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortierung" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabellen" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaktions-Koordinator" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Dateien" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Alle Tabellen aktualisieren (und schließen)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Zeige alle offenen Tabellen" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Zeige alle Slave-Hosts" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Zeige den Master-Status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Zeige den Slave-Status" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Den Abfragen-Zwischenspeicher leeren. (FLUSH)" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB-Status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Abfrage-Statistiken" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Alle Status Variablen" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Überwachung" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Ratgeber" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3149,7 +3229,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Wert" @@ -3604,11 +3684,6 @@ msgstr "Eine Aufzählung, gewählt aus der Liste definierter Werte" msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-Befehl" - #: libraries/Util.class.php:710 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:292 @@ -3643,7 +3718,7 @@ msgid "Create PHP Code" msgstr "PHP-Code erzeugen" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Aktualisieren" @@ -3740,13 +3815,6 @@ msgstr "Drucken" msgid "shared" msgstr "freigegeben" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabellen" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3787,11 +3855,11 @@ msgstr "Überprüft die Rechte für die Datenbank "%s"." msgid "Check Privileges" msgstr "Rechte überprüfen" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Fehler beim Lesen der Konfigurationsdatei" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3799,12 +3867,12 @@ msgstr "" "Dies bedeutet im Allgemeinen, dass sich ein Syntax-Fehler eingeschlichen " "hat. Bitte überprüfen Sie die unten angezeigten Fehler." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3812,40 +3880,40 @@ msgstr "" "Das [code]$cfg['PmaAbsoluteUri'][/code] Verzeichnis MUSS in Ihrer " "Konfigurationsdatei angegeben werden!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Fehler: Token stimmen nicht überein" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS Überschreibversuch" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "Mögliche Ausnutzung" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "Numerischer Schlüssel entdeckt" @@ -6075,8 +6143,8 @@ msgstr "" "Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben " "(Standard ist [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Benutzername" @@ -6732,10 +6800,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB-Status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Auslastung des Puffer-Pools" @@ -7431,16 +7495,16 @@ msgid_plural "%s other results found" msgstr[0] "%s weiteres Ergebnis gefunden" msgstr[1] "%s weitere Ergebnisse gefunden" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "Datenbanken nach Namen filtern" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Schnellfilter löschen" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "Elemente nach Namen filtern" @@ -7538,17 +7602,17 @@ msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Nur Struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur und Daten" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Nur Daten" @@ -7950,8 +8014,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8566,7 +8629,7 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variable" @@ -9091,7 +9154,7 @@ msgstr "Attribute" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9800,7 +9863,7 @@ msgstr "Prefix der Tabelle voranstellen" msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "kein(e)" @@ -10146,7 +10209,7 @@ msgstr "Wechseln klein/groß" msgid "Toggle relation lines" msgstr "Beziehungen anzeigen an/aus" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" @@ -10212,31 +10275,31 @@ msgstr "Seite wurde erstellt" msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Seite" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Import von ausgewählter Seite" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Export zu der ausgewählten Seite" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Eine Seite anlegen und dahin exportieren" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Name der neuen Seite: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Export/Import skalieren" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "empfohlen" @@ -10358,15 +10421,11 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Dateien" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -10450,7 +10509,7 @@ msgstr "Modul" msgid "Library" msgstr "Bibliothek" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Version" @@ -10510,10 +10569,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Zeige den Master-Status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Zeige verbundene Slaves" @@ -10658,12 +10713,12 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Thread %s wurde erfolgreich abgebrochen." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10671,119 +10726,89 @@ msgstr "" "phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status.php:657 -msgid "Handler" -msgstr "Bezeichner" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Netzwerk-Datenverkehr seit Start: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Abfragen-Zwischenspeicher" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Dieser MySQL-Server läuft bereits %1$s. Er wurde am %2$s gestartet." -#: server_status.php:659 -msgid "Threads" -msgstr "Prozesse" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Master und Slave im " +"Replikations-Prozess." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Temporäre Daten" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Master im Replikations-" +"Prozess." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Verzögertes Einfügen (delayed inserts)" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:663 -msgid "Key cache" -msgstr "Schlüssel-Zwischenspeicher" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Für weitere Informationen über den Replikations-Status auf dem Server siehe " +"Abschnitt Replikation." -#: server_status.php:664 -msgid "Joins" -msgstr "Tabellenverknüpfungen (joins)" +#: server_status.php:122 +msgid "Replication status" +msgstr "Replikations-Status" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortierung" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Auf stark frequentierten Server können die Byte-Zähler überlaufen, d.h. " +"wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " +"ausgegeben werden, falsch sein." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaktions-Koordinator" +#: server_status.php:149 +msgid "Received" +msgstr "Empfangen" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Alle Tabellen aktualisieren (und schließen)" +#: server_status.php:168 +msgid "Sent" +msgstr "Gesendet" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Zeige alle offenen Tabellen" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Zeige alle Slave-Hosts" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Fehlversuche" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Zeige den Slave-Status" +#: server_status.php:253 +msgid "Aborted" +msgstr "Abgebrochen" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Den Abfragen-Zwischenspeicher leeren. (FLUSH)" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Laufzeit-Informationen" +#: server_status.php:329 +msgid "Command" +msgstr "Befehl" -#: server_status.php:830 -msgid "All status variables" -msgstr "Alle Status Variablen" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Überwachung" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Ratgeber" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Anzahl der Datenpunkte: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Aktualisierungs-Intervall: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filter" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Beinhalten das Wort:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Zeige nur Warn-Werte" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Nach Kategorie filtern..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Zeige unformatierte Werte" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Verwandte Links:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Analyse durchführen" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Einführung" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10791,7 +10816,7 @@ msgstr "" "Der Ratgeber kann Empfehlungen zu Server-Variablen durch Analyse der Server-" "Status-Variablen geben." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10801,7 +10826,7 @@ msgstr "" "Berechnungen und Faustregeln basieren und nicht umbedingt auf Ihrem System " "funktionieren müssen." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10811,7 +10836,7 @@ msgstr "" "was Sie ändern und wie Sie die Änderungen rückgängig machen können. Falsche " "Optimierungen können sehr negative Effekte hervorrufen." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10821,854 +10846,39 @@ msgstr "" "einmal zu ändern, die Leistungsfähigkeit der Datenbank zu testen und die " "Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Verbindungen seit Start: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Angaben" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Netzwerk-Datenverkehr seit Start: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Dieser MySQL-Server läuft bereits %1$s. Er wurde am %2$s gestartet." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Master und Slave im " -"Replikations-Prozess." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Master im Replikations-" -"Prozess." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Für weitere Informationen über den Replikations-Status auf dem Server siehe " -"Abschnitt Replikation." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Replikations-Status" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Auf stark frequentierten Server können die Byte-Zähler überlaufen, d.h. " -"wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " -"ausgegeben werden, falsch sein." - -#: server_status.php:1191 -msgid "Received" -msgstr "Empfangen" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Gesendet" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "max. gleichzeitige Verbindungen" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Fehlversuche" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Abgebrochen" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Befehl" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " -"Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." - -#: server_status.php:1529 -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 "" -"Anzahl der Transaktionen die den Binarylog-Zwischenspeicher verwendet, aber " -"die Größe des Binarylog-Zwischenspeichers (binlog_cache_size) überschritten " -"und eine temporäre Datei verwendet haben um die Statements der Transaktion " -"zu speichern." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " -"verwendet haben." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" -"Server." - -#: server_status.php:1532 -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 "" -"Anzahl der (implizit) auf der Platte erzeugten temporären Tabellen bei der " -"Ausführung von Statements. Wenn Created_tmp_disk_tables hoch ist, sollten " -"Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " -"Tabellen im Speicher erzeugt werden statt auf der Festplatte." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " -"der Ausführung von Statements." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " -"denen ein Fehler auftrat (z. B. duplicate key)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " -"Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Anzahl der ausgeführten FLUSH-Befehle." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." - -#: server_status.php:1541 -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 "" -"Anzahl der gesuchten und gefundenen (discovered) Tabellen. Der MySQL-Server " -"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " -"kennt. Dieser Vorgang wird "discovery" genannt." - -#: server_status.php:1542 -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 "" -"Wie oft der erste Eintrag aus einem Index gelesen wurde. Ein hoher Wert hier " -"deutet darauf hin, dass der Server viele komplette Index-Scans macht (zum " -"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " -"ist)." - -#: server_status.php:1543 -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 "" -"Anzahl der Anfragen, eine Zeile basierend auf einem Schlüssel zu lesen. Wenn " -"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " -"Tabellen korrekt indiziert sind." - -#: server_status.php:1544 -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 "" -"Anzahl der Anfragen, die nächste Zeile in der Reihenfolge des Schlüssels zu " -"lesen. Dieser Wert wird herauf gezählt, wenn Sie eine Index-Spalte mit einer " -"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " -"wenn Sie einen Index-Scan durchführen." - -#: server_status.php:1545 -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 "" -"Anzahl der Anfragen, die vorhergehende Zeile in der Reihenfolge des " -"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " -"von ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Anzahl der Anfragen, eine Zeile basierend auf einer festen Position zu " -"lesen. Dieser Wert wird hoch sein, wenn Sie viele Anfragen ausführen, die " -"erfordern, dass das Ergebnis sortiert wird. Wenn Handler_read_rnd hoch ist, " -"haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " -"zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." - -#: server_status.php:1547 -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 "" -"Anzahl der Anfragen, die nächste Zeile in der Daten-Datei zu lesen. Dieser " -"Wert wird hoch sein, wenn Sie viele Tabellen-Scans durchführen. Im " -"Allgemeinen weist das darauf hin, dass Ihre Tabellen nicht korrekt indiziert " -"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " -"aus den Indexen ziehen, die Sie haben." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" -"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Anzahl der als "dirty" markierten Seiten." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Anzahl der unbenutzten Seiten." - -#: server_status.php:1555 -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 "" -"Anzahl der belegten Seiten. Diese Seiten werden gerade gelesen oder " -"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " -"entfernt werden können." - -#: server_status.php:1556 -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 "" -"Anzahl der durch administrativen Overhead, wie z. B. Zeilensperren oder den " -"adaptiven Hash-Index ausgelasteten Seiten. Dieser Wert errechnet sich auch " -"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Die Größe des Puffer-Pools in Seiten." - -#: server_status.php:1558 -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 "" -"Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " -"einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " -"eine Tabelle komplett sequentiell durchsucht." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " -"konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." - -#: server_status.php:1562 -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 "" -"Normalerweise geschehen Schreibvorgänge im InnoDB Zwischenspeicher im " -"Hintergrund. Abber wenn es nötig ist eine Seite zu lesen oder zu erstellen " -"und es ist keine saubere Seite verfügbar dann ist es notwendig darauf zu " -"warten das Seiten weggeschrieben werden. Dieser Wert gibt wieder wie oft das " -"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " -"sollte dieser Wert klein sein." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Bisher ausgeführte fsync()-Operationen." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Momentan anstehende fsync()-Operationen." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Momentan anstehende Lesezugriffe." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Momentan anstehende Schreizugriffe." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Wieviel Daten bisher gelesen wurden, in Byte." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Wie oft Daten gelesen wurden." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Wie oft Daten geschrieben wurden." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " -"Seiten die dafür geschrieben wurden." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Anzahl der ausgeführten doublewrite Zugriffe." - -#: server_status.php:1574 -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 "" -"Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " -"war und deshalb gewartet wurde das er geleert wird." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Anstehende fsyncs für die Protokoll-Datei." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Anzahl erstellter Seiten." - -#: server_status.php:1582 -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 "" -"Die fest kompilierte InnnoDB Seitengröße (Standard 16 KiB). Viele Werte " -"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " -"umzurechnen." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Anzahl gelesener Seiten." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Anzahl geschriebener Seiten." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Momentan anstehende Zeilen-Sperren." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" -"Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " -"Millisekunden." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" -"Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" -"Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." - -#: server_status.php:1594 -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 "" -"Schlüssel-Blöcke im Schlüssel-Zwischenspeicher, die verändert wurden, aber " -"noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " -"als Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Zwischenspeicher. " -"Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " -"zu bestimmen." - -#: server_status.php:1596 -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 "" -"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" -"Zwischenspeicher." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" -"Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" -"Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " -"lesen." - -#: server_status.php:1599 -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 "" -"Die Anzahl physikalischer Lesezugriffe eines Schlüssel-Blocks von der " -"Platte. Wenn key_reads hoch ist, ist Ihr key_cache wahrscheinlich zu klein. " -"Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " -"berechnet werden." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " -"physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" -"Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " -"schreiben." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" -"Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" -"Anfragen (berechneter Wert)" - -#: server_status.php:1604 -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 "" -"Die Kosten für die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer " -"berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " -"vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " -"benutzt wurden." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " -"geschrieben zu werden." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " -"Ihre table_cache-Variable wahrscheinlich zu niedrig." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Anzahl der geöffneten Dateien." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Anzahl der geöffneten Tabellen." - -#: server_status.php:1611 -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 "" -"Die Anzahl der Freien Speicher Bläcken im Abfragen-Zwischenspeicher. Hohe " -"Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " -"CACHE - Abfrage beseitigt werden können." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Freier Speicher im Abfragen-Zwischenspeicher." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." - -#: server_status.php:1615 -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 "" -"Die Anzahl der Abfragen die aus dem Zwischenspeicher entfernt wurden, um " -"Speicher für neue Abfragen frei zu geben. Dieser Wert kann helfen die " -"Abfrage-Zwischenspeicher-Größe zu optimieren. Der Abfrage-Zwischenspeicher " -"arbeitet nach der LRU-Strategie (least recently used), d. h. es wird " -"stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " -"lag." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " -"möglich, oder aufgrund der query_cache_type Einstellung)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Die Anzahl der Abfragen im Zwischenspeicher." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Der Status der ausfallsicheren Replikation." - -#: server_status.php:1620 -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 "" -"Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " -"Indizes der Tabellen sorgfältig überprüft werden." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " -"fand." - -#: server_status.php:1622 -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 "" -"Anzahl der Joins ohne Schlüssel, bei denen nach jeder Zeile auf " -"Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " -"Indizes der Tabellen sorgfältig überprüft werden.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " -"(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " -"wiederversuchten Transaktionen." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " -"verbunden ist." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " -"verbinden." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." - -#: server_status.php:1630 -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 "" -"Anzahl der Verschmelzungen (Merge), die von einem Sortiervorgang benötigt " -"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " -"sort_buffer herauf zu setzen." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Anzahl der sortierten Datensätze." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" -"Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " -"gescannt wurde." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." - -#: server_status.php:1635 -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 "" -"Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet " -"werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, " -"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" -"(n) zerteilen oder Replikation benutzen." - -#: server_status.php:1636 -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 "" -"Anzahl der Prozesse im Prozess-Zwischenspeicher. Die Zwischenspeicher-" -"Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " -"dieser Wert rot ist, sollte der thread_cache_size erhöht werden." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Anzahl der momentan offenen Verbindungen." - -#: server_status.php:1638 -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 "" -"Anzahl der Prozesse, die zur Handhabung von Verbindungen erzeugt wurden. " -"Wenn Threads_created hoch ist, sollten Sie eventuell die Thread_cache_size-" -"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " -"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Anzahl der Prozesse, die nicht schlafen." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Überwachung starten" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Einführung/Einrichtung" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Umordnen/bearbeiten der Schaubilder beendet" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Schaubild hinzufügen" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Schaubilder umordnen/bearbeiten" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11677,15 +10887,15 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Zurücksetzen" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Einführung zur Überwachung" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11700,7 +10910,7 @@ msgstr "" "general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " "erhöhen kann." -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11712,11 +10922,11 @@ msgstr "" "mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und " "höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Verwendung der Überwachung:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11727,7 +10937,7 @@ msgstr "" "Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " "das Zahnrad-Icon des entsprechenden Schaubilds verwenden." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11740,11 +10950,11 @@ msgstr "" "gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " "um diese weiter zu analysieren." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Bitte beachten Sie:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11756,95 +10966,856 @@ msgstr "" "aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " "auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Vordefiniertes Diagramm" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Status Variable(n)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Serie auswählen:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Allgemein-überwacht" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "oder Variablen-Namen eingeben:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Den Wert als Unterschied zeigen" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Divisor hinzufügen" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Einheiten an Datenwerte anfügen" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Diese Serie hinzufügen" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Serien löschen" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Serien im Schaubild:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Protokoll Statistik" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Ausgewählte Zeit-Spanne:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden " "sollen." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Query Analyzer" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d Sekunde" msgstr[1] "%d Sekunden" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d Minute" msgstr[1] "%d Minuten" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Verbindungen seit Start: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Angaben" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filter" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Beinhalten das Wort:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Zeige nur Warn-Werte" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Nach Kategorie filtern..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Zeige unformatierte Werte" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Verwandte Links:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " +"Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." + +#: server_status_variables.php:334 +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 "" +"Anzahl der Transaktionen die den Binarylog-Zwischenspeicher verwendet, aber " +"die Größe des Binarylog-Zwischenspeichers (binlog_cache_size) überschritten " +"und eine temporäre Datei verwendet haben um die Statements der Transaktion " +"zu speichern." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " +"verwendet haben." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" +"Server." + +#: server_status_variables.php:346 +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 "" +"Anzahl der (implizit) auf der Platte erzeugten temporären Tabellen bei der " +"Ausführung von Statements. Wenn Created_tmp_disk_tables hoch ist, sollten " +"Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " +"Tabellen im Speicher erzeugt werden statt auf der Festplatte." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " +"der Ausführung von Statements." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " +"denen ein Fehler auftrat (z. B. duplicate key)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " +"Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Anzahl der ausgeführten FLUSH-Befehle." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." + +#: server_status_variables.php:381 +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 "" +"Anzahl der gesuchten und gefundenen (discovered) Tabellen. Der MySQL-Server " +"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " +"kennt. Dieser Vorgang wird "discovery" genannt." + +#: server_status_variables.php:387 +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 "" +"Wie oft der erste Eintrag aus einem Index gelesen wurde. Ein hoher Wert hier " +"deutet darauf hin, dass der Server viele komplette Index-Scans macht (zum " +"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " +"ist)." + +#: server_status_variables.php:393 +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 "" +"Anzahl der Anfragen, eine Zeile basierend auf einem Schlüssel zu lesen. Wenn " +"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " +"Tabellen korrekt indiziert sind." + +#: server_status_variables.php:398 +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 "" +"Anzahl der Anfragen, die nächste Zeile in der Reihenfolge des Schlüssels zu " +"lesen. Dieser Wert wird herauf gezählt, wenn Sie eine Index-Spalte mit einer " +"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " +"wenn Sie einen Index-Scan durchführen." + +#: server_status_variables.php:403 +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 "" +"Anzahl der Anfragen, die vorhergehende Zeile in der Reihenfolge des " +"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " +"von ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Anzahl der Anfragen, eine Zeile basierend auf einer festen Position zu " +"lesen. Dieser Wert wird hoch sein, wenn Sie viele Anfragen ausführen, die " +"erfordern, dass das Ergebnis sortiert wird. Wenn Handler_read_rnd hoch ist, " +"haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " +"zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." + +#: server_status_variables.php:414 +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 "" +"Anzahl der Anfragen, die nächste Zeile in der Daten-Datei zu lesen. Dieser " +"Wert wird hoch sein, wenn Sie viele Tabellen-Scans durchführen. Im " +"Allgemeinen weist das darauf hin, dass Ihre Tabellen nicht korrekt indiziert " +"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " +"aus den Indexen ziehen, die Sie haben." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" +"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Anzahl der als "dirty" markierten Seiten." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Anzahl der unbenutzten Seiten." + +#: server_status_variables.php:443 +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 "" +"Anzahl der belegten Seiten. Diese Seiten werden gerade gelesen oder " +"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " +"entfernt werden können." + +#: server_status_variables.php:448 +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 "" +"Anzahl der durch administrativen Overhead, wie z. B. Zeilensperren oder den " +"adaptiven Hash-Index ausgelasteten Seiten. Dieser Wert errechnet sich auch " +"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Die Größe des Puffer-Pools in Seiten." + +#: server_status_variables.php:458 +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 "" +"Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " +"einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " +"eine Tabelle komplett sequentiell durchsucht." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " +"konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." + +#: server_status_variables.php:474 +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 "" +"Normalerweise geschehen Schreibvorgänge im InnoDB Zwischenspeicher im " +"Hintergrund. Abber wenn es nötig ist eine Seite zu lesen oder zu erstellen " +"und es ist keine saubere Seite verfügbar dann ist es notwendig darauf zu " +"warten das Seiten weggeschrieben werden. Dieser Wert gibt wieder wie oft das " +"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " +"sollte dieser Wert klein sein." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Bisher ausgeführte fsync()-Operationen." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Momentan anstehende fsync()-Operationen." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Momentan anstehende Lesezugriffe." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Momentan anstehende Schreizugriffe." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Wieviel Daten bisher gelesen wurden, in Byte." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Wie oft Daten gelesen wurden." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Wie oft Daten geschrieben wurden." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " +"Seiten die dafür geschrieben wurden." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Anzahl der ausgeführten doublewrite Zugriffe." + +#: server_status_variables.php:516 +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 "" +"Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " +"war und deshalb gewartet wurde das er geleert wird." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Anstehende fsyncs für die Protokoll-Datei." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Anzahl erstellter Seiten." + +#: server_status_variables.php:541 +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 "" +"Die fest kompilierte InnnoDB Seitengröße (Standard 16 KiB). Viele Werte " +"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " +"umzurechnen." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Anzahl gelesener Seiten." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Anzahl geschriebener Seiten." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Momentan anstehende Zeilen-Sperren." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" +"Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " +"Millisekunden." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" +"Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" +"Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." + +#: server_status_variables.php:579 +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 "" +"Schlüssel-Blöcke im Schlüssel-Zwischenspeicher, die verändert wurden, aber " +"noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " +"als Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Zwischenspeicher. " +"Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " +"zu bestimmen." + +#: server_status_variables.php:588 +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 "" +"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" +"Zwischenspeicher." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" +"Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" +"Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " +"lesen." + +#: server_status_variables.php:599 +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 "" +"Die Anzahl physikalischer Lesezugriffe eines Schlüssel-Blocks von der " +"Platte. Wenn key_reads hoch ist, ist Ihr key_cache wahrscheinlich zu klein. " +"Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " +"berechnet werden." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " +"physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" +"Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " +"schreiben." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" +"Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" +"Anfragen (berechneter Wert)" + +#: server_status_variables.php:619 +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 "" +"Die Kosten für die zuletzt verarbeitete Abfrage wie vom Abfrage-Optimierer " +"berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " +"vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " +"benutzt wurden." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " +"geschrieben zu werden." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " +"Ihre table_cache-Variable wahrscheinlich zu niedrig." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Anzahl der geöffneten Dateien." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Anzahl der geöffneten Tabellen." + +#: server_status_variables.php:645 +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 "" +"Die Anzahl der Freien Speicher Bläcken im Abfragen-Zwischenspeicher. Hohe " +"Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " +"CACHE - Abfrage beseitigt werden können." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Freier Speicher im Abfragen-Zwischenspeicher." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." + +#: server_status_variables.php:659 +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 "" +"Die Anzahl der Abfragen die aus dem Zwischenspeicher entfernt wurden, um " +"Speicher für neue Abfragen frei zu geben. Dieser Wert kann helfen die " +"Abfrage-Zwischenspeicher-Größe zu optimieren. Der Abfrage-Zwischenspeicher " +"arbeitet nach der LRU-Strategie (least recently used), d. h. es wird " +"stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " +"lag." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " +"möglich, oder aufgrund der query_cache_type Einstellung)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Die Anzahl der Abfragen im Zwischenspeicher." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Der Status der ausfallsicheren Replikation." + +#: server_status_variables.php:679 +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 "" +"Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " +"Indizes der Tabellen sorgfältig überprüft werden." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " +"fand." + +#: server_status_variables.php:686 +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 "" +"Anzahl der Joins ohne Schlüssel, bei denen nach jeder Zeile auf " +"Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " +"Indizes der Tabellen sorgfältig überprüft werden.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " +"(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " +"wiederversuchten Transaktionen." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " +"verbunden ist." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " +"verbinden." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." + +#: server_status_variables.php:717 +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 "" +"Anzahl der Verschmelzungen (Merge), die von einem Sortiervorgang benötigt " +"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " +"sort_buffer herauf zu setzen." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Anzahl der sortierten Datensätze." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" +"Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " +"gescannt wurde." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." + +#: server_status_variables.php:734 +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 "" +"Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet " +"werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, " +"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" +"(n) zerteilen oder Replikation benutzen." + +#: server_status_variables.php:740 +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 "" +"Anzahl der Prozesse im Prozess-Zwischenspeicher. Die Zwischenspeicher-" +"Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " +"dieser Wert rot ist, sollte der thread_cache_size erhöht werden." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Anzahl der momentan offenen Verbindungen." + +#: server_status_variables.php:748 +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 "" +"Anzahl der Prozesse, die zur Handhabung von Verbindungen erzeugt wurden. " +"Wenn Threads_created hoch ist, sollten Sie eventuell die Thread_cache_size-" +"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " +"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Anzahl der Prozesse, die nicht schlafen." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Setzen der Variable fehlgeschlagen" @@ -12448,26 +12419,26 @@ msgstr "Beschränkung für auswärtige Schlüssel" msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s deaktiviert." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s aktiviert." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12476,118 +12447,118 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnappschuss (SQL code)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Verfolgungsdatendefinition erfolgreich gelöscht" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Abfrage-Fehler" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Verfolgungsdatenmanipulation erfolgreich gelöscht" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Befehle verfolgen" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zeige %1$s mit Datum von %2$s bis %3$s und Benutzer %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Lösche die Verlaufsdaten des Datensatzes" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Keine Daten" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "DDL Befehl" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "DML Befehl" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL Dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL Ausführung" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Versionen anzeigen" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Verlaufs-Report für %s deaktivieren" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Verlaufs-Report für %s aktivieren" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Jetzt aktivieren" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Version %1$s von %2$s erzeugen" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Diese Datenbeschreibungsbefehle (DDL) verfolgen:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Diese Datenbearbeitungsbefehle (DML) verfolgen:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Erzeuge Version" @@ -12740,11 +12711,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time ist auf %d Sekunde(n) eingestellt." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Langsame Anfragen Überwachung" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Die Überwachung langsamer Anfragen ist deaktiviert." @@ -12760,15 +12731,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries ist deaktiviert" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Loggen von langsamen Abfragen einschalten, indem {log_slow_queries} auf 'ON' " +"gesetzt wird. Das hilft beim Erkennen von grauenhaft langsamen Abfragen." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries ist deaktiviert" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Release Reihe" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Die MySQL-Server-Version ist kleiner als 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12776,22 +12765,22 @@ msgstr "" "Sie sollten aktualisieren, denn MySQL 5.1 hat verbesserte Leistung, und " "MySQL 5.5 sogar noch mehr." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Aktuelle Version: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Unterversion" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "Version kleiner als 5.1.30 (die erste allgemein verfügbare Freigabe von 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12799,26 +12788,26 @@ msgstr "" "Sie sollten aktualisieren, denn aktuelle Versionen von MySQL 5.1 haben " "verbesserte Leistung und MySQL 5.5 sogar noch mehr." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" "Version kleiner als 5.5.8 (die erste allgemein verfügbare Freigabe von 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Sie sollten auf eine stabile MySQL Version der 5.5-Reihe aktualisieren" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribution" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Version ist aus Quellen übersetzt, keine offizielle MySQL-Binärversion." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12829,42 +12818,42 @@ msgstr "" "Dokumentation ist nur für offizielle MySQL Binaries gültig, nicht für Paket-" "Distributionen (z.B. RedHat, Debian/Ubuntu, etc)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' in version_comment gefunden" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "Die MySQL-Anleitung ist nur für offizielle MySQL-Binärversionen akkurat." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "Die Percona-Dokumentation finden Sie unter http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' in version_comment gefunden" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Die Drizzle-Dokumentation finden Sie unter http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Versions-Zeichenkette (%s) passt auf Drizzle Versionierungs-Schema" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL Architektur" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL wurde nicht als 64-bit Programm übersetzt." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12875,20 +12864,20 @@ msgstr "" "Speicher benutzen. Es wird empfohlen, dass Sie die 64-bit Version von MySQL " "installieren." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Verfügbarer Specher auf diesem Rechner: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Abfragen-Zwischenspeicher deaktiviert" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Der Abfragen-Zwischenspeicher ist nicht aktiviert." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12900,19 +12889,19 @@ msgstr "" "zweistelligen MiB-Wert und {query_cache_type} auf 'ON' setzen. Beachten " "Sie: Ignorieren Sie diese Empfehlung, wenn Sie memcached benutzen." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size ist auf 0 oder query_cache_type ist auf 'OFF' gesetzt" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Abfragen-Zwischenspeicher-Methode" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Suboptimale Zwischenspeicher-Methode." -#: libraries/advisory_rules.txt:157 +#: 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 statt MySQL Query Cache " "verwenden vor allem, wenn Sie mehrere Slaves einsetzen." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12934,34 +12923,34 @@ msgstr "" "Sekunde. Diese Regel wird aktiv, wenn es mehr als 100 Abfragen pro Sekunde " "gibt." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Anfragen-Zwischenspeicher Effizienz (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Abfragecache läuft nicht effizient, er hat eine niedrige Trefferrate." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Erwägen Sie, {query_cache_limit} zu erhöhen." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Die aktuelle Abfragecache-Trefferrate von %s%% ist niedriger als 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Abfragen-Zwischenspeicher Ausnutzung" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Weniger als 80%% des Abfragen-Zwischenspeichers werden benutzt." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12969,7 +12958,7 @@ msgstr "" "Das könnte daher kommen, dass {query_cache_limit} zu niedrig ist. Auch das " "Leeren des Abfragecaches könnte helfen." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12978,15 +12967,15 @@ msgstr "" "Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des " "gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Abfragen-Zwischenspeicher Fragmentierung" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Der Abfragecache ist beträchtlich fragmentiert." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13007,7 +12996,7 @@ msgstr "" "Abfragen im Cache einstellen mithilfe dieser Formel: (query_cache_size - " "qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13018,11 +13007,11 @@ msgstr "" "dass der Abfrage-Cache ein abwechselndes Muster von freien und belegten " "Blöcke ist. Dieser Wert sollte unter 20%% liegen." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Abfrage-Cache Leerungen wegen zu wenig Speicher" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13030,7 +13019,7 @@ msgstr "" "Zwischengespeicherte Abfragen werden aufgrund von mangelndem Speicherplatz " "des Abfragen-Zwischenspeichers entfernt." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13040,7 +13029,7 @@ msgstr "" "das der Aufwand für das Beibehalten des Caches mit seiner Größe erhöht. " "Erhöhen Sie den Wert in kleinen Schritten und beobachten Sie das Ergebnis." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13049,11 +13038,11 @@ msgstr "" "Das Verhältnis von entfernten Abfragen zu eingefügten Abfragen ist %s%%. Je " "niedriger dieser Wert ist, desto besser (diese Regeln löst aus bei 0,1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maximale Abfragen-Zwischenspeicher Größe" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13062,7 +13051,7 @@ msgstr "" "können erheblichen Mehraufwand verursachen, der für das Unterhalten des " "Caches nötig ist." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13070,23 +13059,23 @@ msgstr "" "Abhängig von Ihrer Umgebung könnte es die Leistung steigern, diesen Wert " "niedriger zu setzen." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Aktuelle Abfragen-Zwischenspeicher Größe: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Minimale Abfragen-Zwischenspeicher Größe" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Die maximale Größe des Ergebnissets im Abfragecache ist 1 MiB, wie " "standardmäßig." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13107,19 +13096,19 @@ msgstr "" "(oft aufgrund von Aktualisierungen der Tabelle ungültig) ein Erhöhen von " "{query_cache_limit} die Effizienz reduzieren kann." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit ist auf 1 MiB gesetzt" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Erlaubt das Erstellen temporärer Tabellen" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Zu viele Sortierungen verursachen temporäre Tabellen." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13127,7 +13116,7 @@ msgstr "" "Ziehen Sie in Betracht sort_buffer_size und/oder record_rnd_buffer zu " "erhöhen, je nach verfügbaren Speicher Ihres Systems" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13136,11 +13125,11 @@ msgstr "" "%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte " "kleiner als 10%% sein." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Prozentwert der Sortierungen, die temporäre Tabellen verursachen" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13148,15 +13137,15 @@ msgstr "" "Durchschnitt temporäre Tabellen: %s, dieser Wert sollte kleiner als 1 pro " "Stunde sein." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Zeilen sortieren" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Es werden viele Zeilen sortiert." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13168,20 +13157,20 @@ msgstr "" "indizierten Spalten in der ORDER BY-Klausel verwenden, da dies in viel " "schnelleren Sortierergebnissen resultiert" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Durchschnitt sortierte Zeilen: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Rate von Joins ohne Indizes" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Es werden zu viele Joins ohne die Benutzung von Indizes durchgeführt." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13190,22 +13179,22 @@ msgstr "" "Hinzufügen von Indizes für die Spalten die in der Join-Bedingungen " "eingesetzt werden resultiert in viel schnelleren Tabellenverknüpfungen" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Durchschnitt Tabellen-Joins: %s, dieser Wert sollte kleiner als 1 pro Stunde " "sein" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Lese-Rate erster Indexeintrag" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Die Lese-Rate des ersten Indexeintrag ist hoch." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13223,21 +13212,21 @@ msgstr "" "können vollständige Indexscans nur durch umschreiben der Abfragen reduziert " "werden." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Durchschnitt Indexscans: %s, dieser Wert sollte kleiner als 1 pro Stunde sein" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Lese-Rate fester Positionen" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Die Lese-Rate fester Positionen ist hoch." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13247,7 +13236,7 @@ msgstr "" "Tabellen-Scan benötigen, einschließlich Join-Abfragen die keine Indizes " "verwenden. Fügen Sie Indizes hinzu wo zutreffend." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13256,15 +13245,15 @@ msgstr "" "Durchschnittliche Lese-Rate fester Positionen: %s, dieser Wert sollte " "kleiner als 1 pro Stunde sein" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Lese-Rate nächste Tabellenzeile" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Lese-Rate nächste Tabellenzeile ist hoch." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13272,7 +13261,7 @@ msgstr "" "Dies deutet darauf hin, dass viele Abfragen Full Table Scans durchführen. " "Fügen Sie Indizes hinzu wo zutreffend." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13280,15 +13269,15 @@ msgstr "" "Lese-Rate nächste Tabellenzeile: %s, dieser Wert sollte kleiner als 1 pro " "Stunde sein" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size vs. max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size und max_heap_table_size sind nicht identisch belegt." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13300,16 +13289,16 @@ msgstr "" "Arbeitsspeicher zu bestimmen. Wenn Sie die Tabelle im Arbeitsspeicher " "erhöhen möchten müssen Sie den anderen Wert auch erhöhen." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Aktuelle Belegungen sind: tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Prozentsatz der temporären Tabellen auf der Festplatte" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13317,7 +13306,7 @@ msgstr "" "Viele temporäre Tabellen werden auf die Festplatte geschrieben, anstelle im " "Speicher gehalten zu werden." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13336,7 +13325,7 @@ msgstr "" "\"http://www.facebook.com/note.php?note_id=10150111255065841&comments" "\">Artikel der Pythian Group erwähnt wird" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13345,11 +13334,11 @@ msgstr "" "%s%% aller temporären Tabellen werden auf die Festplatte geschrieben, dieser " "Wert sollte unter 25%% liegen" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Temp Disk Rate" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13368,7 +13357,7 @@ msgstr "" "doc/refman/5.5/en/internal-temporary-tables.html\">MySQL-Dokumentation " "erwähnt wird" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13377,16 +13366,16 @@ msgstr "" "Rate auf Festplatte geschriebener temporärer Tabellen: %s, dieser Wert " "sollte kleiner als 1 pro Stunde sein" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Größe des MyISAM Schlüssel-Cache" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Schlüssel-Cache nicht initialisiert. Es werden keine MyISAM Indizes gecached." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13394,21 +13383,21 @@ msgstr "" "Setze {key_buffer_size} auf einen Wert, abhängig von Deinen MyISAM Indizes. " "64M ist ein guter Anfang." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size ist 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Max %% des MyISAM Schlüssel-Cache jemals benutzt" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM Schlüssel-Cache (Indize Cache) %% benutz ist niedrig." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13418,7 +13407,7 @@ msgstr "" "Sie Ihre Tabellen um zu sehen ob Indizes entfernt wurden oder Überprüfen Sie " "Abfragen und Erwartungen um zu sehen welche Indizes verwendet werden." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13426,47 +13415,47 @@ msgstr "" "maximal wurden %% des MyISAM Sortierungspuffers benutzt: %s%%, dieser Wert " "sollte über 95%% liegen" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Prozentwert des verwendeten MyISAM-Schlüsselpuffers" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% verwendeter MyISAM-Schlüsselpuffer: %s%%, dieser Wert sollte größer als " "95%% sein" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Prozentsatz der aus dem Speicher gelesenen Indize" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" "Der %% von Indizes, die den MyISAM Schlüsselpuffer verwenden ist gering." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Sie müssen möglicherweise {Key_buffer_size} erhöhen." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Prozentsatz der aus dem Speicher gelesenen Indize: %s%%, dieser Wert sollte " "größer als 95%% sein" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Häufigkeit von Tabellenöffnungen" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Hohe Anzahl an Tabellen-Öffnungen." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13474,18 +13463,18 @@ msgstr "" "Öffnen von Tabellen erfordert Festplatten I/O, welches langsam ist. Erhöhung " "von {Table_open_cache} könnte dies vermeiden." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Häufigkeit von Tabellenöffnungen: %s, dieser Wert sollte weniger als 10 pro " "Stunde sein" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Prozentsatz der verwendeten offene Dateien Grenze" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13493,7 +13482,7 @@ msgstr "" "Die Anzahl der offene Dateien nähert sich die maximale Anzahl von geöffneten " "Dateien. Möglicherweise erhalten Sie \"Too many open files\"-Fehler." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13501,7 +13490,7 @@ msgstr "" "Sie sollten {open_files_limit} erhöhen, und überprüfen Sie das " "Fehlerprotokoll beim Neustart nach der Änderung von open_files_limit." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13509,56 +13498,56 @@ msgstr "" "Die Anzahl der geöffneten Dateien ist %s%% des Maximalwerts. Dieser Wert " "sollte unter 85%% liegen" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Anzahl der Datei-Öffnungen" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Die Anzahl der Datei-Zugriffe ist hoch." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Geöffnete Dateien Rate: %s, dieser Wert sollte kleiner als 5 pro Stunde sein" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Sofortige Tabellensperren %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Zu viele Tabellensperren wurden nicht sofort gewährt." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimieren Sie die Abfragen und/oder verwenden InnoDB, um Wartezeit aufgrund " "von Sperren zu reduzieren." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sofortige Tabellensperren: %s%%, dieser Wert sollte über 95%% liegen" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Tabellen Sperre Warte Rate" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Tabellen Sperre Warte Rate: %s, dieser Wert sollte weniger als 1 pro Stunde " "sein" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Prozess-Zwischenspeicher" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13566,45 +13555,45 @@ msgstr "" "Prozess-Zwischenspeicher ist deaktiviert, dieses führt zu mehr Overhead bei " "neuen Verbindungen zu MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Aktivieren Sie den Prozess-Zwischenspeicher, indem Sie {thread_cache_size} > " "0 setzen." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Der Prozess-Zwischenspeicher ist auf 0 gesetzt" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Prozess-Zwischenspeicher Trefferrate %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Ineffizienter Prozess-Zwischenspeicher." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "{thread_cache_size} erhöhen." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Prozess-Zwischenspeicher Trefferrate: %s%%, dieser Wert sollte über 80%% " "liegen" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Prozesse die langsam zu starten" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Es gibt zu viele Prozesse die langsam starten." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13613,22 +13602,22 @@ msgstr "" "ziemlich einfache Operation ist. Sie sollten Ihre Systemauslastung " "sorgfältig überwachen." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s Pozes(se) brauchten länger als %s Sekunden um zu starten, es sollten 0 " "sein" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Langsame Startzeit" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "slow_launch_threads ist über 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13636,16 +13625,16 @@ msgstr "" "Setzen Sie slow_launch_time auf 1s oder 2s um korrekt Prozesse zu zählen die " "langsam starten" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time ist auf %s eingestellt" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Prozentsatz der benutzten Verbindungen" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13653,7 +13642,7 @@ msgstr "" "Die maximale Menge der verwendeten Verbindungen nähert sich dem Wert von " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13664,7 +13653,7 @@ msgstr "" "werden. Stellen Sie sicher, dass der Code Datenbank-Handler ordnungsgemäß " "schlisst." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13672,15 +13661,15 @@ msgstr "" "Max_used_connections ist %s%% von max_connections, es sollte unter 80%% " "liegen" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Prozentsatz der abgebrochenen Verbindungen" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Zu viele Verbindungen werden abgebrochen." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Dieser Artikel könnte " "Ihnen helfen der Quelle auf die Spur zu kommen." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% aller Verbindungen werden abgebrochen. Dieser Wert sollte unter 1%% " "liegen" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Rate der abgebrochenen Verbindungen" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13711,15 +13700,15 @@ msgstr "" "Die Rate der abgebrochenen Verbindungen ist %s, dieser Wert sollte weniger " "als 1 pro Stunde sein" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Prozentualen Anteil der abgebrochenen Clienten" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Zu viele Clienten werden abgebrochen." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13730,44 +13719,44 @@ msgstr "" "Quellcode der Datenbank-Handler nicht ordnungsgemäß schließen passieren. " "Überprüfen Sie Ihre Netzwerk und Quellcode." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% aller Clienten werden abgebrochen. Dieser Wert sollte unter 2%% liegen" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Rate der abgebrochenen Clienten" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Die Rate der abgebrochene Clienten ist %s, dieser Wert sollte kleiner als 1 " "pro Stunde sein" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Ist InnoDB deaktiviert?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB ist nicht aktiviert." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB ist in der Regel die bessere Wahl für Tabelle Designer." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb ist auf 'value' eingestellt" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB Protokollgröße" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13775,7 +13764,7 @@ msgstr "" "Die InnoDB Protokollgröße ist nicht angemessen in Bezug zu der InnoDB " "Pufferpoolgröße." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13800,7 +13789,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">diesen Blog-Eintrag" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13809,15 +13798,15 @@ msgstr "" "Ihre InnoDB-Protokollgröße ist %s%% in Bezug auf die InnoDB Pufferpoolgröße, " "es sollte nicht unter 20%% liegen" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Max InnoDB Protokollgröße" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Die InnoDB Protokollgröße ist nicht ausreichend groß." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13841,20 +13830,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">diesen Blog-Eintrag" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Ihre absolute InnoDB Protokollgröße ist %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Größe des InnoDB Puffer-Pools" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Ihr InnoDB Pufferpool ist recht klein." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13881,7 +13870,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">diesen Artikel" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13894,15 +13883,15 @@ msgstr "" "völlig ausreichend für Ihr System sein, wenn Sie nicht viel InnoDB Tabellen " "haben oder anderen Diensten auf demselben Computer ausgeführt werden." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM gleichzeitige Einfügeoperationen" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Aktivieren Sie concurrent_insert, indem Sie es auf 1 setzen" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL Dokumentation" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB seit der letzten Aktualisierung gesendet" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB seit der letzten Aktualisierung empfangen" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Server-Datenverkehr (in KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Verbindungen seit der letzten Aktualisierung" + +#~ msgid "Questions since last refresh" +#~ msgstr "Anfragen seit der letzten Aktualisierung" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Anfragen (Serverseitig ausgeführte SQL-Befehle)" + +#~ msgid "Runtime Information" +#~ msgstr "Laufzeit-Informationen" + +#~ msgid "Number of data points: " +#~ msgstr "Anzahl der Datenpunkte: " + +#~ msgid "Refresh rate: " +#~ msgstr "Aktualisierungs-Intervall: " + +#~ msgid "Run analyzer" +#~ msgstr "Analyse durchführen" + #~ msgid "Show more actions" #~ msgstr "Weitere Aktionen anzeigen" diff --git a/po/el.po b/po/el.po index edc798c998..bfaa0f6d8d 100644 --- a/po/el.po +++ b/po/el.po @@ -3,18 +3,18 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +46,7 @@ msgstr "" msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +76,21 @@ msgstr "Αναζήτηση" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Περιγραφή" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Σχόλια πίνακα" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,12 +137,12 @@ msgstr "Σχόλια πίνακα" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Στήλη" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Στήλη" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Τύπος" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Τύπος" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Κενό" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Κενό" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Προεπιλογή" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Προεπιλογή" msgid "Links to" msgstr "Σύνδεση με" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Σχόλια" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Όχι" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Όχι" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ναι" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Πίνακας" @@ -337,7 +337,7 @@ msgstr "Μέγεθος" msgid "in use" msgstr "σε χρήση" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -345,7 +345,7 @@ msgstr "σε χρήση" msgid "Creation" msgstr "Δημιουργία" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -353,7 +353,7 @@ msgstr "Δημιουργία" msgid "Last update" msgstr "Τελευταία ενημέρωση" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -405,7 +405,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Βάση" @@ -413,17 +413,17 @@ msgstr "Βάση" msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Κατάσταση" @@ -438,7 +438,7 @@ msgstr "Ενέργεια" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Εμφάνιση" @@ -454,11 +454,11 @@ msgstr "Διαγραφή δεδομένων παρακολούθησης για msgid "Drop" msgstr "Διαγραφή" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "ενεργή" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "μη ενεργή" @@ -466,11 +466,11 @@ msgstr "μη ενεργή" msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" @@ -538,45 +538,45 @@ msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Γεωμετρία" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Υ" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Σημείο %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Προσθήκη σημείου" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Εξωτερικός δακτύλιος" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Εσωτερικός δακτύλιος" @@ -584,15 +584,15 @@ msgstr "Εσωτερικός δακτύλιος" msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Πολύγωνο" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Προσθήκη πολυγώνου" @@ -731,8 +731,9 @@ msgstr "Περισσότερες ρυθμίσεις" msgid "Database server" msgstr "Διακομιστής βάσης δεδομένων" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Διακομιστής" @@ -751,7 +752,7 @@ msgstr "Έκδοση πρωτοκόλλου" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Χρήστης" @@ -998,12 +999,12 @@ msgstr "Επαναφόρτωση δικαιωμάτων" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1013,15 +1014,15 @@ msgstr "Κλείσιμο" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Διάγραμμα τρέχοντος ερωτήματος" @@ -1032,13 +1033,14 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Άλλα" @@ -1053,48 +1055,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "σταλθέντα KB από την τελευταία ανανέωση" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "ληφθέντα KB από την τελευταία ανανέωση" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Κυκλοφορία Διακομιστή (σε KB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Συνδέσεις από την τελευταία ανανέωση" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Διεργασίες" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Συνδέσεις / Διεργασίες" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Ερωτήσεις από την τελευταία ανανέωση" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Στατιστικά ερωτήματος" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Ασύμβατη η ρύθμιση τοπικής εποπτείας" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1106,196 +1074,201 @@ msgstr "" "εποπτείας.Είναι πολύ πιθανό ότι η τρέχουσα ρύθμιση δεν θα λειτουργεί πλέον. " "Επαναφέρτε τις ρυθμίσεις σας στις προεπιλεγμένες στο μενού Ρυθμίσεις." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Αποτελεσματικότητα λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Χρήση λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Χρησιμοποιημένη λανθάνουσα μνήμη ερωτήματος" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Χρήση CPU Συστήματος" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Μνήμη συστήματος" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Αδράνεια συστήματος" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Μέσο φορτίο" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Συνολική μνήμη" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Λανθάνουσα μνήμη" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Ρυθμισμένη μνήμη" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Ελεύθερη μνήμη" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Χρησιμοποιημένη μνήμη" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Σύνολο Αδράνειας" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Λανθασμένη Αδράνεια" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Χρησιμοποιημένη Αδράνεια" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Ελεύθερη Αδράνεια" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Σταλθέντα Bytes" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Συνδέσεις" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Διεργασίες" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d πίνακας(ες)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Απομάκρυνση διαγράμματος" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Επεξεργασία τίτλου και ετικετών" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Προσθήκη διαγράμματος στο πλέγμα" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Καμία" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Επανεκίννηση εποπτείας" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Παύση εποπτείας" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "Το general_log και το slow_query_log είναι ενεργοποιημένα." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "Το general_log είναι ενεργοποιημένο." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "Το slow_query_log είναι ενεργοποιημένο." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "Το slow_query_log και το general_log είναι απενεργοποιημένα." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "Το log_output δεν έχει οριστεί στο TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "Το log_output έχει οριστεί στο TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1307,12 +1280,12 @@ msgstr "" "ορίσετε το long_query_time μεταξύ 0-2 δευτερόλεπτα, κάτι που εξαρτάται από " "το σύστημά σας." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1321,30 +1294,30 @@ msgstr "" "προεπιλογές με την επανεκκίνηση του διακομιστή:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Ορισμός του log_output σε %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Ενεργοποίηση %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Απενεργοποίηση %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Ορισμός του long_query_time σε %dδ" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1353,53 +1326,53 @@ msgstr "" "Συνδεθείτε ως λογαριασμός root ή επικοινωνήστε με τον διαχειριστή της βάσης " "δεδομένων σας." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Αλλαγή ρυθμίσεων" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Διαφορικός" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Διαίρεση με %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Μονάδα" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Από την αργή καταγραφή" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Από την γενική καταγραφή" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Ανάλυση καταγραφών" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Ανάλυση & φόρτωση καταγραφών. Αυτό ίσως διαρκέσει λίγο." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Ακύρωση αιτήματος" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1410,7 +1383,7 @@ msgstr "" "ομαδοποίησης, έτσι οι άλλες ιδιότητες των ερωτημάτων, όπως ο χρόνος " "εκκίνησης, μπορεί να διαφέρουν." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1419,102 +1392,102 @@ msgstr "" "Αφού επιλέχθηκε η ομαδοποίηση των εντολών INSERT, τα ερωτήματα INSERT εντός " "του ίδιου πίνακα επίσης ομαδοποιηούνται ανεξάρτητα από εισαγόμενα δεδομένα." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Τα δεδομένα καταγραφής φορτώθηκαν. Τα ερωτήματα που εκτελέστηκαν σε αυτή την " "επέκταση χρόνου:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Μετάβαση στον πίνακα Καταγραφής" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Δεν βρέθηκαν δεδομένα" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Η καταγραφή αναλύθηκε αλλά δεν βρέθηκαν δεδομένα σε αυτή την επέκταση χρόνου." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Ανάλυση…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Χρόνος" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Συνολικός χρόνος:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Αποτελέμσατα προφίλ" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Πίνακας" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Διάγραμμα" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Επεξεργασία διαγράμματος" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Σειρές" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Επιλογές φιλτραρίσματος πίνακα καταγραφής" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Φίλτρο" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Φιλτράρισμα ερωτημάτων ανά λέξη/κανονική έκφραση:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Ομαδοποίηση ερωτημάτων, αγνοώντας τα δεδομένα μεταβλητής στις δηλώσεις WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Άθροισμα ομαδοποιημένων γραμμών:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Σύνολο:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Φόρτωση καταγραφών" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Η ανανέωση της εποπτείας απέτυχε" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1525,254 +1498,256 @@ msgstr "" "επαναφόρτωση της σελίδας και η επανεισαγωγή των διαπιστευτηρίων σας θα " "βοηθήσουν." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Επαναφόρτωση σελίδας" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Επηρρεαζόμενες εγγραφές:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Αποτυχία ανάλυσης αρχείου config. Δεν φαίνεται να είναι έγκυρος κώδκας JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Εισαγωγή ρύθμισης εποπτείας" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Ελέγξτε το αρχείο που θέλετε να εισάγετε" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Ανάλυση Ερωτήματος" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Σύστημα σύμβουλου" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Πιθανά θέματα απόδοσης" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Θέμα" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Πρόταση" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Λεπτομέρειες ρόλου" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Δικαιολόγηση" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Έλεγχος" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Φόρτωση" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Προώθηση Αιτήματος" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Σφάλμα στην Προώθηση του Αιτημάτος" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Κωδικός σφάλματος: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Κείμενο σφάλματος: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Διαγραφή Στήλης" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Εντάξει" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Πατήστε γαι να παραλείψετε αυτή την ειδοποίηση" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Μετονομασία βάσεων δεδομένων" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Επαναφόρτωση βάσεων δεδομένων" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Αντιγραφή βάσης δεδομένων" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Αλλαγή Συνόλου χαρακτήρων" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Εισαγωγή Πίνακα" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Απόκρυψη ευρετηρίων" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Εμφάνιση ευρετηρίων" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Έλεγχος μη διακριτού κλειδιού:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Ενεργοποιημένη)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Απενεργοποιημένη)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Αναζήτηση" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Αναζήτηση" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Τιμές για τη στήλη %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Τιμές για νέα στήλη" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Προσθήκη %d τιμής(ών)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Αλλαγή" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Χρόνος εκτέλεσης ερωτήματος" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1781,93 +1756,93 @@ msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γ msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Εστιασμένη Αναζήτηση" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Κάθε σημείο αναπαρειστά μια εγγραφή δεδομένων." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Για να εστιάσετε, επιλέξτε ένα τομέα της εκτύπωσης με το ποντίκι." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Πατήστε το κουμπί επαναφοράς εστίασης για να επιστρέψετε στην αρχική " "κατάσταση." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη " "γραμμή δεδομένων." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Επιλογή δύο στηλών" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Επιλογή δύο διαφορετικών στηλών" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Ααποτελέσματα ερωτήματος" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Αντιγραφή" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Προσθήκη στηλών" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1875,15 +1850,20 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Προσθήκη επιλογής για τη στήλη " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1891,27 +1871,27 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Πατήστε για ταξινόμηση" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Πατήστε για εναλλαγή επισήμανσης" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1920,7 +1900,7 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1928,58 +1908,58 @@ msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες στήλες
πατώντας " "κατευθείαν στα περιεχόμενά τους." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε στήλες
πατώντας κατευθείαν στα " "περιεχόμενά τους." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Μετάβαση στο σύνδεσμο" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Αντιγραφή ονόματος στήλης" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Προβολή γραμμής(ών) δεδομένων" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Εμφάνιση Πίνακα" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Απόκρυψη Πίνακα" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1989,266 +1969,266 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "ενημερωμένο" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Απριλίου" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Μαΐου" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Δευτερόλεπτο" @@ -2302,16 +2282,16 @@ msgstr "" "Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε «%2" "$s»" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "ανά λεπτό" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "ανά ώρα" @@ -2339,7 +2319,7 @@ msgstr "Μέγεθος γραμματοσειράς" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Αύξουσα" @@ -2348,7 +2328,7 @@ msgstr "Αύξουσα" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Φθίνουσα" @@ -2462,7 +2442,7 @@ msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τ #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Διαγραφή" @@ -2632,7 +2612,7 @@ msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Τερματισμός" @@ -2689,12 +2669,13 @@ msgstr "Επιλογή όλων" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" @@ -2702,7 +2683,7 @@ msgstr "Εξαγωγή" msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2789,16 +2770,16 @@ msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχ msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Πατήστε στη γραμμή για να μεταβείτε στην κορυφή της σελίδας" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένη την Javascript" @@ -2810,21 +2791,21 @@ msgstr "Δεν ορίστηκε ευρετήριο!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Μοναδικότητα" @@ -2834,13 +2815,13 @@ msgstr "Μοναδικότητα" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Σύνθεση" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Σχόλιο" @@ -2885,7 +2866,7 @@ msgstr "Προβολή" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Δομή" @@ -2958,34 +2939,35 @@ msgstr "Συμβάντα" msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Χρήστες" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Αναπαραγωγή" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Πρόσθετα" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Μηχανές" @@ -3033,6 +3015,104 @@ msgstr "Πρόσφατοι πίνακες" msgid "There are no recent tables" msgstr "Δεν υπάρχουν πρόσφατοι πίνακες" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Εντολή SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Χειριστής" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Λανθάνουσα μνήμη ερωτήματος" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Διεργασίες" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Προσωρινά δεδομένα" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Καθυστερημένες εισαγωγές" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Λανθάνουσα μνήμη κλειδιού" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Ενώσεις" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Ταξινόμηση" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Πίνακες" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Συντονιστής κινήσεων" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Αρχεία" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Εμφάνιση ανοιχτών πινάκων" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Εμφάνιση δευτερευόντων διακομιστών" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Προβολή κατάστασης πρωτεύοντος" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Εμφάνιση κατάστασης δευτερεύοντος" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Κατάσταση InnoDB" + +#: 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." @@ -3132,7 +3212,7 @@ msgstr "Τελεστής" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Τιμή" @@ -3585,11 +3665,6 @@ msgstr "Μια απαρίθμηση, η οποία έχει επιλεγεί α msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Εντολή SQL" - #: libraries/Util.class.php:710 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:292 @@ -3624,7 +3699,7 @@ msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Ανανέωση" @@ -3722,13 +3797,6 @@ msgstr "Εκτύπωση" msgid "shared" msgstr "κοινόχρηστο" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Πίνακες" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3769,11 +3837,11 @@ msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3781,12 +3849,12 @@ msgstr "" "Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα " "σφάλματα που εμφανίζονται παρακάτω." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3794,40 +3862,40 @@ msgstr "" "Η πδηγία [code]$cfg['PmaAbsoluteUri'][/code] ΠΡΕΠΕΙ να οριστεί στο αρχείο " "ρυθμίσεων!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "προσπάθεια επανεγγραφής GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "δυνατή αξιοποίηση" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" @@ -6064,8 +6132,8 @@ msgstr "" "Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Όνομα χρήστη" @@ -6725,10 +6793,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Κατάσταση InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Χρήση Buffer Pool" @@ -7427,16 +7491,16 @@ msgid_plural "%s other results found" msgstr[0] "%s άλλο αποτέλεσμα βρέθηκε" msgstr[1] "%s άλλα αποτελέσματα βρέθηκαν" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "φιλτράρισμα βάσεων δεδομενων κατά όνομα" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Εκκαθάριση Γρήγορου Φίλτρου" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "φιλτράρισμα αντικειμένων κατά όνομα" @@ -7532,17 +7596,17 @@ msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Μόνο η δομή" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Δομή και δεδομένα" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Μόνο τα δεδομένα" @@ -7942,8 +8006,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Φιλοξενητής" @@ -8547,7 +8610,7 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Μεταβλητή" @@ -9066,7 +9129,7 @@ msgstr "Χαρακτηριστικά" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Πρόσθετα" @@ -9773,7 +9836,7 @@ msgstr "Προσθήκη προθέματος στον πίνακα" msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Καμία" @@ -10118,7 +10181,7 @@ msgstr "Εναλλαγή μικρά/μεγάλα" msgid "Toggle relation lines" msgstr "Εναλλαγή γραμμών συσχέτισης" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" @@ -10184,31 +10247,31 @@ msgstr "Η σελίδα δημιουργήθηκε" msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Σελίδα" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Εισαγωγή από επιλεγμένη σελίδα" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Εξαγωγή σε επιλεγμένη σελίδα" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Δημιουργία μιας σελίδας και εξαγωγή σε αυτή" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Νέο όνομα σελίδα: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "προτείνεται" @@ -10330,15 +10393,11 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Αρχεία" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -10422,7 +10481,7 @@ msgstr "Πρότυπο" msgid "Library" msgstr "Βιβλιοθήκη" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Έκδοση" @@ -10483,10 +10542,6 @@ msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Προβολή κατάστασης πρωτεύοντος" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" @@ -10631,12 +10686,12 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10644,119 +10699,90 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status.php:657 -msgid "Handler" -msgstr "Χειριστής" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Λανθάνουσα μνήμη ερωτήματος" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %1$s. Ξεκίνησε στις %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Διεργασίες" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " +"μια αναπαραγωγική διαδικασία." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Προσωρινά δεδομένα" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Καθυστερημένες εισαγωγές" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " +"αναπαραγωγική διαδικασία." -#: server_status.php:663 -msgid "Key cache" -msgstr "Λανθάνουσα μνήμη κλειδιού" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " +"επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:664 -msgid "Joins" -msgstr "Ενώσεις" +#: server_status.php:122 +msgid "Replication status" +msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:666 -msgid "Sorting" -msgstr "Ταξινόμηση" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" -msgstr "Συντονιστής κινήσεων" +#: server_status.php:149 +msgid "Received" +msgstr "Ελήφθησαν" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" +#: server_status.php:168 +msgid "Sent" +msgstr "Εστάλησαν" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Εμφάνιση ανοιχτών πινάκων" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Εμφάνιση δευτερευόντων διακομιστών" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Εμφάνιση κατάστασης δευτερεύοντος" +#: server_status.php:253 +msgid "Aborted" +msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" +#: server_status.php:313 +msgid "ID" +msgstr "Κωδικός" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Πληροφορίες εκτέλεσης" +#: server_status.php:329 +msgid "Command" +msgstr "Εντολή" -#: server_status.php:830 -msgid "All status variables" -msgstr "Όλες οι μεταβλητές κατάστασης" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Εποπτεία" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Σύμβουλος" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Αριθμός σημείων δεδομένων: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Ρυθμός ανανέωσης: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Φίλτρα" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Να περιλαμβάνει τη λέξη:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Φιλτράρισμα ανά κατηγορία..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Εμφάνιση μη διαμορφομένων τιμών" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Σχετικοί σύνδεσμοι:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Αναλυτής εκτέλεσης" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Οδηγίες" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10764,7 +10790,7 @@ msgstr "" "Το σύστημα Συμβούλου μπορεί να παρέχει προτάσεις για μεταβλητές διακομιστή " "αναλύοντας τις μεταβλητές κατάστασης διακομιστή." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10773,7 +10799,7 @@ msgstr "" "Σημειώστε ότι αυτό το σύστημα παρέχει προτάσεις βάσει σε απλούς υπολογισμούς " "και βασικούς κανόνες που μπορεί να μην εφαρμόζονται στο σύστημά σας." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10783,7 +10809,7 @@ msgstr "" "τεημνρίωση) και πως να αναιρέσετε την αλλαγή. Εσφαλμένη ρύθμιση ίσως έχει " "σοβαρή επίδραση στην απόδοση." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10793,858 +10819,39 @@ msgstr "" "ρύθμιση κάθε φορά, να παρατηρείτε τη βάση δεδομένων και αναιρέστε την αλλαγή " "αν δεν υπήρχε ουσιαστική βελτίωση." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Ερωτήσεις από την εκκίνηση: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Δηλώσεις" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %1$s. Ξεκίνησε στις %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " -"μια αναπαραγωγική διαδικασία." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " -"αναπαραγωγική διαδικασία." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " -"επισκεφτείτε τον τομέα αναπαραγωγής." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Κατάσταση αναπαραγωγής" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Ελήφθησαν" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Εστάλησαν" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Αποτυχημένες προσπάθειες" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Ακυρωμένες συνδέσεις" - -#: server_status.php:1322 -msgid "ID" -msgstr "Κωδικός" - -#: server_status.php:1338 -msgid "Command" -msgstr "Εντολή" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " -"κλείσει σωστά τη σύνδεση." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." - -#: server_status.php:1529 -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 "" -"Ο αριθμός των συναλλαγών που χρησιμοποιούν την προσωρινή δυαδική λανθάνουσα " -"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " -"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " -"μνήμη καταγραφής." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " -"MySQL." - -#: server_status.php:1532 -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 "" -"Ο αριθμός των προσωρινών πινάκων στο δίσκο που δημιουργήθηκαν αυτόματα από " -"τον διακομιστή κατά την εκτέλεση δηλώσεων. Αν το Created_tmp_disk_tables " -"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " -"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " -"τον διακομιστή κατά την εκτέλεσε δηλώσεων." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " -"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Ο αριθμός των διεργασιών χειριστή της εντολής INSERT DELAYED σε χρήση. Κάθε " -"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " -"DELAYED χρησιμοποιεί της δική του διεργασία." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." - -#: server_status.php:1541 -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 "" -"Ο διακομιστής MySQL μπορεί να ρωτήσει τη μηχανή αποθήκευσης συμπλέγματος " -"NDB, αν γνωρίζει σχετικά με έναν πίνακα με δοθέν όνομα. Αυτό καλείται " -"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " -"βρέθηκαν." - -#: server_status.php:1542 -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 "" -"Οι φορές που αναγνώστηκε η πρώτη εισαγωγή από ένα ευρετήριο. Αν ο αριθμός " -"είναι υψηλός, αύτο σημαίνει ότι ο διακομιστής κάνει πολλές πλήρεις σαρώσεις " -"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " -"ευρετήριο." - -#: server_status.php:1543 -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 "" -"Ο αριθμός των αιτήσεων να αναγνωστεί μια γραμμή με βάση ένα κλειδί. Αν αυτός " -"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " -"σας έχουν κάνει σωστά ευρετήρια." - -#: server_status.php:1544 -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 "" -"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής σε ταξινόμηση " -"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " -"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." - -#: server_status.php:1545 -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 "" -"Ο αριθμός των αιτήσεων που ανέγνωσαν την προηγούμενη γραμμή ανά κλειδί. Αυτή " -"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " -"ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Ο αριθμός των αιτήσεων ανάγνωσης μιας γραμμής βασισμένων σε μια σταθερή " -"θέση. Αύτός είναι υψηλός αν κάνετε πολλά ερωτήματα που απαιτούν ταξινόμηση " -"αποτελέσματος. Ίσως έχετε πολλά ερωτήματα που απαιτούν από τη MySQL να " -"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " -"κλειδιά." - -#: server_status.php:1547 -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 "" -"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής στο αρχείο δεδομένων. " -"Αυτός είναι υψηλός, αν κάνετε αρκετές σαρώσεις πινάκων. Γενικά αυτό σημαίνει " -"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " -"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Ο αριθμός των μη καθαρώ σελίδων." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " -"εκκαθάριση." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Ο αριθμός των ελεύθερων σελίδων." - -#: server_status.php:1555 -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 "" -"Ο αριθμός των κλειδωμένων σελίδων στο buffer pool της InnoDB. Υπάρχουν " -"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " -"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." - -#: server_status.php:1556 -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 "" -"Ο αριθμός των απασχολούμενων σελίδων γιατί έχουν δεσμευτεί για διαχειριστική " -"υπερκεφαλή όπως κλειδώματα γραμμής ή το υιοθετημένο ευρετήριο μνήμης. Αυτή η " -"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." - -#: server_status.php:1558 -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 "" -"Ο αριθμός των «τυχαίων» αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " -"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " -"με τυχαία σειρά." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " -"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " -"από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." - -#: server_status.php:1562 -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 "" -"Κανονικά, οι εγγραφές συμβαίνουν στο υπόβαθρο του buffer pool της InnoDB. " -"Ωστόσο, αν είναι απαραίτητο να διαβάσετε ή να δημιουργήσετε μια σελίδα δεν " -"υπάρχουν διαθέσιμες σελίδες, είναι απαραίτητό να περιμένετε πρώτα την " -"εκκαθάριση των σελίδων. Αυτός ο μετρητής μετράει συμβάντα αυτών των " -"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " -"πρέπει να είναι μικρή." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " -"που γράφτηκαν για αυτό το σκοπό." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " -"που γράφτηκαν για αυτό το σκοπό." - -#: server_status.php:1574 -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 "" -"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " -"καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" -"Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." - -#: server_status.php:1582 -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 "" -"Το μέγεθος μεταφρασμένης σελίδας της InnoDB (προεπιλογή: 16KB). Πολλές τιμές " -"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " -"μετατροπή σε bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Ο αριθμός των αναγνωσμένων σελίδων." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" -"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" -"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " -"χιλιοστοδευτερόλεπτα." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" -"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." - -#: server_status.php:1594 -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 "" -"Ο αριθμός των μπλοκ κλειδιού στη λανθάνουσα μνήμη κλειδιού που έχει αλλάξει " -"αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Ο αριθμός των μη χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. " -"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " -"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." - -#: server_status.php:1596 -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 "" -"Ο αριθμός των χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. Αυτή η " -"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " -"σε χρήση με μια φορά." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" -"Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" -"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." - -#: server_status.php:1599 -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 "" -"Ο αριθμός των φυσικών αναγνώσεων ενός μπλοκ κλειδιού από το δίσκο. Αν το " -"Key_reads είναι μεγάλο, τότε η τιμή key_buffer_size είναι πιθανόν πολύ " -"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " -"Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " -"σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" -"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" - -#: server_status.php:1604 -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 "" -"Το συνολικό κόστος του τελευταίου μεταφρασμένου ερωτήματος όπως υπολογίστηκε " -"από τον βελτιοποιητή ερωτήματος. Είναι χρήσιμο για σύγκριση κόστους " -"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " -"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " -"του διακομιστή." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " -"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " -"καταγραφή)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." - -#: server_status.php:1611 -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 "" -"Ο αριθμός των ελεύθερων μπλόκς στη λανθάνουσα μνήμη ερωτημάτων. Υψηλές τιμές " -"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " -"την εντολή FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." - -#: server_status.php:1615 -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 "" -"Ο αριθμός των ερωτημάτων που έχουν απομακρυνθεί από τη λανθάνουσα μνήμη για " -"την απελευθέρωση της μνήμης για την απομνημόνευση νέων ερωτημάτων. Αυτή η " -"πληροφορία σας βοηθάει να ρυθμίσετε το μέγεθος της λανθάνουσας μνήμης " -"ερωτήματος. Η λανθάνουσα μνήμη ερωτημάτων χρησιμοποιεί μια τελευταία " -"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " -"απομακρύνει από τη λανθάνουσα μνήμη." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " -"απομνημονεύονται λόγω της ρύθμισης query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." - -#: server_status.php:1620 -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 "" -"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " -"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " -"παραπομπής." - -#: server_status.php:1622 -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 "" -"Ο αριθμός των ενώσεων χωρίς κλειδιά που ελέγχουν τη χρήση κλειδιού μετά από " -"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " -"ευρετήρια των πινάκων σας.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " -"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " -"συνεργασία SQL." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " -"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " -"πρωτεύωντα." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " -"δευτερόλεπτα να δημιουργηθούν." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " -"δευτερόλεπτα." - -#: server_status.php:1630 -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 "" -"Ο αριθμός των συνόλων περασμάτων που έπρεπε να κάνει ο αλγόριθμός " -"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " -"μεταβλητής συστήματος sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Ο αριθμός των ταξινομημένων γραμμών." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." - -#: server_status.php:1635 -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 "" -"Οι φορές που ένα κλείδωμα πίνακα δεν μπόρεσε να ληφθεί αμέσως και ήταν " -"απαραίτητη μια αναμονή. Αν ο αριθμός είναι υψηλός, και έχετε προβλήματα " -"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " -"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." - -#: server_status.php:1636 -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 "" -"Ο αριθμός των διεργασιών στη λανθάνουσα μνήμη διεργασιών. Ο βαθμός χρήσης " -"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " -"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." - -#: server_status.php:1638 -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 "" -"Ο αριθμός των διεργασιών που δημιουργήθηκαν για το χειρισμό συνδέσεων. Αν το " -"Threads_created είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή " -"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " -"αν έχετε μια καλή εφαρμογή διεργασίας.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Έναρξη Εποπτείας" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Οδηγίες/Εγκατάσταση" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Προσθήκη διαγράμματος" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Στήλες διαγράμματος" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Διευθέτηση διαγράμματος" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11652,15 +10859,15 @@ msgstr "" "Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " "φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Επαναφορά προεπιλογής" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Οδηγίες Εποπτείας" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11675,7 +10882,7 @@ msgstr "" "παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " "15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11688,11 +10895,11 @@ msgstr "" "MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " "χαρακτηριστικά διαγραμμάτων του διακομιστή." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Χρήση της εποπτείας:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11703,7 +10910,7 @@ msgstr "" "ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " "χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11716,11 +10923,11 @@ msgstr "" "επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " "μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Σημειώστε:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11734,94 +10941,858 @@ msgstr "" "απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " "είναι απαραίτητη η εποπτεία." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Προκαθορισμός διαγράμματος" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Μεταβλητή(ές) κατάστασης" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Επιλογή σειρών:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Συχνά εποπτευόμενα" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "ή όνομα τύπου μεταβλητής:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Προβολή ως διαφορική τιμή" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Εφαρμογή διαιρέτη" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Προσθήκη αυτής της σειράς" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Εκκαθάριση σειράς" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Σειρά σε Διάγραμμα:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Στατιστικά καταγραφών" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Επιλεγμένο εύρος χρόνου:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " "ομαδοποιήση" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Αναλυτής ερωτήματος" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d δευτερόλεπτο" msgstr[1] "%d δευτερόλεπτο" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d λεπτά" msgstr[1] "%d λεπτά" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Ερωτήσεις από την εκκίνηση: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Δηλώσεις" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Φίλτρα" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Να περιλαμβάνει τη λέξη:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Φιλτράρισμα ανά κατηγορία..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Εμφάνιση μη διαμορφομένων τιμών" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Σχετικοί σύνδεσμοι:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " +"κλείσει σωστά τη σύνδεση." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." + +#: server_status_variables.php:334 +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 "" +"Ο αριθμός των συναλλαγών που χρησιμοποιούν την προσωρινή δυαδική λανθάνουσα " +"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " +"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " +"μνήμη καταγραφής." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " +"MySQL." + +#: server_status_variables.php:346 +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 "" +"Ο αριθμός των προσωρινών πινάκων στο δίσκο που δημιουργήθηκαν αυτόματα από " +"τον διακομιστή κατά την εκτέλεση δηλώσεων. Αν το Created_tmp_disk_tables " +"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " +"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " +"τον διακομιστή κατά την εκτέλεσε δηλώσεων." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " +"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Ο αριθμός των διεργασιών χειριστή της εντολής INSERT DELAYED σε χρήση. Κάθε " +"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " +"DELAYED χρησιμοποιεί της δική του διεργασία." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." + +#: server_status_variables.php:381 +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 "" +"Ο διακομιστής MySQL μπορεί να ρωτήσει τη μηχανή αποθήκευσης συμπλέγματος " +"NDB, αν γνωρίζει σχετικά με έναν πίνακα με δοθέν όνομα. Αυτό καλείται " +"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " +"βρέθηκαν." + +#: server_status_variables.php:387 +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 "" +"Οι φορές που αναγνώστηκε η πρώτη εισαγωγή από ένα ευρετήριο. Αν ο αριθμός " +"είναι υψηλός, αύτο σημαίνει ότι ο διακομιστής κάνει πολλές πλήρεις σαρώσεις " +"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " +"ευρετήριο." + +#: server_status_variables.php:393 +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 "" +"Ο αριθμός των αιτήσεων να αναγνωστεί μια γραμμή με βάση ένα κλειδί. Αν αυτός " +"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " +"σας έχουν κάνει σωστά ευρετήρια." + +#: server_status_variables.php:398 +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 "" +"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής σε ταξινόμηση " +"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " +"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." + +#: server_status_variables.php:403 +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 "" +"Ο αριθμός των αιτήσεων που ανέγνωσαν την προηγούμενη γραμμή ανά κλειδί. Αυτή " +"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " +"ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Ο αριθμός των αιτήσεων ανάγνωσης μιας γραμμής βασισμένων σε μια σταθερή " +"θέση. Αύτός είναι υψηλός αν κάνετε πολλά ερωτήματα που απαιτούν ταξινόμηση " +"αποτελέσματος. Ίσως έχετε πολλά ερωτήματα που απαιτούν από τη MySQL να " +"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " +"κλειδιά." + +#: server_status_variables.php:414 +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 "" +"Ο αριθμός των αιτήσεων ανάγνωσης της επόμενης γραμμής στο αρχείο δεδομένων. " +"Αυτός είναι υψηλός, αν κάνετε αρκετές σαρώσεις πινάκων. Γενικά αυτό σημαίνει " +"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " +"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Ο αριθμός των μη καθαρώ σελίδων." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " +"εκκαθάριση." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Ο αριθμός των ελεύθερων σελίδων." + +#: server_status_variables.php:443 +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 "" +"Ο αριθμός των κλειδωμένων σελίδων στο buffer pool της InnoDB. Υπάρχουν " +"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " +"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." + +#: server_status_variables.php:448 +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 "" +"Ο αριθμός των απασχολούμενων σελίδων γιατί έχουν δεσμευτεί για διαχειριστική " +"υπερκεφαλή όπως κλειδώματα γραμμής ή το υιοθετημένο ευρετήριο μνήμης. Αυτή η " +"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." + +#: server_status_variables.php:458 +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 "" +"Ο αριθμός των «τυχαίων» αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " +"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " +"με τυχαία σειρά." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " +"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " +"από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." + +#: server_status_variables.php:474 +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 "" +"Κανονικά, οι εγγραφές συμβαίνουν στο υπόβαθρο του buffer pool της InnoDB. " +"Ωστόσο, αν είναι απαραίτητο να διαβάσετε ή να δημιουργήσετε μια σελίδα δεν " +"υπάρχουν διαθέσιμες σελίδες, είναι απαραίτητό να περιμένετε πρώτα την " +"εκκαθάριση των σελίδων. Αυτός ο μετρητής μετράει συμβάντα αυτών των " +"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " +"πρέπει να είναι μικρή." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " +"που γράφτηκαν για αυτό το σκοπό." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " +"που γράφτηκαν για αυτό το σκοπό." + +#: server_status_variables.php:516 +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 "" +"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " +"καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" +"Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." + +#: server_status_variables.php:541 +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 "" +"Το μέγεθος μεταφρασμένης σελίδας της InnoDB (προεπιλογή: 16KB). Πολλές τιμές " +"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " +"μετατροπή σε bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Ο αριθμός των αναγνωσμένων σελίδων." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" +"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" +"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " +"χιλιοστοδευτερόλεπτα." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" +"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." + +#: server_status_variables.php:579 +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 "" +"Ο αριθμός των μπλοκ κλειδιού στη λανθάνουσα μνήμη κλειδιού που έχει αλλάξει " +"αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Ο αριθμός των μη χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. " +"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " +"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." + +#: server_status_variables.php:588 +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 "" +"Ο αριθμός των χρησιμοποιημένων μπλοκς στη λανθάνουσα μνήμη κλειδιού. Αυτή η " +"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " +"σε χρήση με μια φορά." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" +"Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" +"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." + +#: server_status_variables.php:599 +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 "" +"Ο αριθμός των φυσικών αναγνώσεων ενός μπλοκ κλειδιού από το δίσκο. Αν το " +"Key_reads είναι μεγάλο, τότε η τιμή key_buffer_size είναι πιθανόν πολύ " +"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " +"Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " +"σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" +"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" + +#: server_status_variables.php:619 +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 "" +"Το συνολικό κόστος του τελευταίου μεταφρασμένου ερωτήματος όπως υπολογίστηκε " +"από τον βελτιοποιητή ερωτήματος. Είναι χρήσιμο για σύγκριση κόστους " +"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " +"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " +"του διακομιστή." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " +"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " +"καταγραφή)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." + +#: server_status_variables.php:645 +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 "" +"Ο αριθμός των ελεύθερων μπλόκς στη λανθάνουσα μνήμη ερωτημάτων. Υψηλές τιμές " +"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " +"την εντολή FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." + +#: server_status_variables.php:659 +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 "" +"Ο αριθμός των ερωτημάτων που έχουν απομακρυνθεί από τη λανθάνουσα μνήμη για " +"την απελευθέρωση της μνήμης για την απομνημόνευση νέων ερωτημάτων. Αυτή η " +"πληροφορία σας βοηθάει να ρυθμίσετε το μέγεθος της λανθάνουσας μνήμης " +"ερωτήματος. Η λανθάνουσα μνήμη ερωτημάτων χρησιμοποιεί μια τελευταία " +"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " +"απομακρύνει από τη λανθάνουσα μνήμη." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " +"απομνημονεύονται λόγω της ρύθμισης query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." + +#: server_status_variables.php:679 +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 "" +"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " +"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " +"παραπομπής." + +#: server_status_variables.php:686 +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 "" +"Ο αριθμός των ενώσεων χωρίς κλειδιά που ελέγχουν τη χρήση κλειδιού μετά από " +"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " +"ευρετήρια των πινάκων σας.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " +"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " +"συνεργασία SQL." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " +"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " +"πρωτεύωντα." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " +"δευτερόλεπτα να δημιουργηθούν." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " +"δευτερόλεπτα." + +#: server_status_variables.php:717 +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 "" +"Ο αριθμός των συνόλων περασμάτων που έπρεπε να κάνει ο αλγόριθμός " +"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " +"μεταβλητής συστήματος sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Ο αριθμός των ταξινομημένων γραμμών." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." + +#: server_status_variables.php:734 +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 "" +"Οι φορές που ένα κλείδωμα πίνακα δεν μπόρεσε να ληφθεί αμέσως και ήταν " +"απαραίτητη μια αναμονή. Αν ο αριθμός είναι υψηλός, και έχετε προβλήματα " +"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " +"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." + +#: server_status_variables.php:740 +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 "" +"Ο αριθμός των διεργασιών στη λανθάνουσα μνήμη διεργασιών. Ο βαθμός χρήσης " +"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " +"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." + +#: server_status_variables.php:748 +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 "" +"Ο αριθμός των διεργασιών που δημιουργήθηκαν για το χειρισμό συνδέσεων. Αν το " +"Threads_created είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή " +"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " +"αν έχετε μια καλή εφαρμογή διεργασίας.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Ο ορισμός της μεταβλητής απέτυχε" @@ -12426,26 +12397,26 @@ msgstr "Όριο μη διακριτού κλειδιού" msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Παρακολούθηση του %1$s απενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Παρακολούθηση του %1$s ενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12453,118 +12424,118 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Σφάλμα ερωτήματος" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Εμφάνιση %1$s με ημερομηνίες από %2$s έως %3$s από χρήστη %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Δεν υπάρχουν δεδομένα" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Ημερομηνία" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Κάδος SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Απενεργοποιήση παρακολούθησης για το %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Ενεργοποίηση παρακολούθησης για το %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Δημιουργία έκδοσης %1$s του %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Δημιουργία έκδοσης" @@ -12721,11 +12692,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "Το long_query_time έχει οριστεί σε %dδ." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Καταγραφή αργού ερωτήματος" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Η καταγραφή αργού ερωτήματος είναι απενεργοποιημένη." @@ -12741,15 +12712,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "Το log_slow_queries έχει οριστεί σε «ΑΝΕΝΕΡΓΟ»" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Ενεργοποίηση της αργής καταγραφής ερωτήματος ορίζοντας το {log_slow_queries} " +"σε «ΕΝΕΡΓΟ». Αυτό θα βοηθήσει στη κακή εκτέλεση ερωτημάτων." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "Το log_slow_queries έχει οριστεί σε «ΑΝΕΝΕΡΓΟ»" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Σειρές Δημοσίευσης" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Η έκδοση διακομιστή MySQL είναι παλαιότερη της 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12757,21 +12746,21 @@ msgstr "" "Πρέπει να αναβαθμίσετε, καθώς η MySQL 5.1 έχει βελτιώσει την απόδοση και η " "MySQL 5.5 ακόμα περισσότερο." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Τρέχουσα έκδοση: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Μικρή Έκδοση" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Έκδοση μικρότερη από 5.1.30 (η πρώτη GA δημοσίευση της 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12779,26 +12768,26 @@ msgstr "" "Πρέπει να αναβαθμίσετε, καθώς οι πρόσφατες εκδόσεις της MySQL 5.1 έχουν " "βελτιώσει την απόδση και οι MySQL 5.5 ακόμα περισσότερο." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Έκδοση μικρότερη από 5.5.8 (η πρώτη GA δημοσίευση της 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Πρέπει να αναβαθμίσετε σε σταθερή έκδοση της MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Διανομή" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Η έκδοση έχει προέλθει από τον κώδικα κια όχι από το επίσημο εκτελέσιμο της " "MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12809,42 +12798,42 @@ msgstr "" "για τα επίσημα εκτελέσιμα της MySQL και καμιά άλλη διανομή (όπως RedHat, " "Debian/Ubuntu κλπ)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "Βρέθηκη η «προέλευση» στο version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "Το εγχειρίδιο της MySQL είναι έγκυρο μόνο για τα επίσημα εκτελέσιμα της " "MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Η τεκμηρίωση του Percona είναι στο http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "Βρέθηκη η «percona» στο version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Η τεκμηρίωση του Drizzle είναι στο http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Η έκδοση (%s) ταιριάζει με το σχέιδο έκδοσης Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Αρχιτεκτονική MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "Η MySQL δεν δομήθηκε ως πακέτο 64-bit." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12855,20 +12844,20 @@ msgstr "" "τη μνήμη. Ίσως πρέπει να σκεφτείτε να εγκαταστήσετετ την 64-bit έκδοση της " "MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Διαθέσιμη μνήμη σε αυτό το φιλοξενητή: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Η λανθάνουσα μνήμη είναι απενεργοποιημένη" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Η λανθάνουσα μνήμη ερωτήματος δεν είναι ενεργοποιημένη." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12880,20 +12869,20 @@ msgstr "" "{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». " "Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "Το query_cache_size ορίστηκε σε 0 ή το query_cache_type ορίστηκε σε «OFF»" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Μέθοδος λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Ημί βέλτιστη μέθοδος λανθάνουσας μνήμης." -#: libraries/advisory_rules.txt:157 +#: 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 αντί της λανθάνουσας μνήμης Ερωτήματος της MySQL, ειδικά αν " "έχετε πολλούς δευτερεύοντες." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12916,39 +12905,39 @@ msgstr "" "λαμβάνει %d ερωτήματα ανά δευτερόλεπτο. Αυτός ο κανόνας ενεργοποιείται αν " "υπάρχουν περισσότερα από 100 ερωτήματα το δευτερόλεπτο." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Απόδοση λανθάνουσας μνήμης ερωτήματος (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "Η λανθάνουσα μνήμη ερωτήματος δεν λειτουργεί σωστά, έχει χαμηλό βαθμό " "απόδοσης." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Σκεφτείτε την αύξηση {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "Ο τρέχων βαθμός απόδοσης της λανθάνουσας μνήμης ερωτήματος του %s%% είναι " "κάτω από 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Χρήση λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "" "Λιγότερο από το 80%% της λανθάνουσας μνήμης ερωτήματος χρησιμοποιείται." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12956,7 +12945,7 @@ msgstr "" "Αυτό μπορεί να οφείλεται στο ότι το {query_cache_limit} είναι πολύ χαμηλό. Η " "εκκαθάριση της λανθάνουσας μνήμης ερωτήματος μπορεί επίσης να βοηθήσει." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12966,15 +12955,15 @@ msgstr "" "συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο " "από 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Συγκρότηση λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Η λανθάνουσας μνήμης ερωτήματος είναι αρκετά συγκροτημένη." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12996,7 +12985,7 @@ msgstr "" "λανθάνουσα μνήμη χρησιμοποιώντας αυτή τη φόρμουλα: (query_cache_size - " "qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13007,11 +12996,11 @@ msgstr "" "ότι η λανθάνουσα μνήμη ερωτήματος είναι μια εναλλακτική μορφή ελεύθερων και " "χρησιμοποιημένων μπλοκς. Αυτή η τιμή πρέπει να είναι κάτω από 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Χαμηλής μνήμης κλάδοι λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13019,7 +13008,7 @@ msgstr "" "Προγνωστικές αναζητήσεις έχουν διαγραφεί λόγο έλλειψης ελεύθερης λανθάνουσας " "μνήμης ερωτημάτων." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13030,7 +13019,7 @@ msgstr "" "μέγεθός της, για αυτό κάντε το αυτό με μικρές μεταβολές και δείτε τα " "αποτελέσματα." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13040,11 +13029,11 @@ msgstr "" "Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%" "%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Μέγιστο μέγεθος λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13053,7 +13042,7 @@ msgstr "" "μνήμες μπορεί να προκαλέσουν περίσσεια που απαιτείται για τη διατήρηση της " "λανθάνουσας μνήμης." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13061,23 +13050,23 @@ msgstr "" "Ανάλογα με το περιβάλλον σας, ίσως αυξηθεί η απόδοσή του μειώνοντας αυτή την " "τιμή." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Τρέχον μέγεθος λανθάνουσας μνήμης ερωτήματος: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Ελάχιστο μέγεθος λανθάνουσας μνήμης ερωτήματος" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Το μέγιστο μέγεθος του συνόλου αποτελεσμάτων στη λανθάνουσα μνήμη ερωτήματος " "είναι η προεπιλογή του 1ΜΒ." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13099,19 +13088,19 @@ msgstr "" "επικαιροποιημένα λόγω ενημερώσεων πίνακα), η αύξηση του {query_cache_limit} " "ίσως μειώσει την απόδοση." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "Το query_cache_limit ορίστηκε στο 1ΜΒ" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Ποσοστό ταξινομήσεων που δημιουργούν προσωρινούς πίνακες" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Πάρα πολλές ταξινομήσεις δημιουργούν προσωρινούς πίνακες." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13119,7 +13108,7 @@ msgstr "" "Σκεφτείτε να αυξήσετε το sort_buffer_size και/ή το read_rnd_buffer_size, " "ανάλογα με τους περιορισμούς της μνήμης του συστήματός σας" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13128,11 +13117,11 @@ msgstr "" "Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή " "πρέπει να είναι κάτω από 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13140,15 +13129,15 @@ msgstr "" "Μέσος όρος προσωρινών πινάκων: %s, αυτή η τιμή πρέπει να είναι κάτω από 1 " "ανά ώρα." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Ταξινόμηση εγγραφών" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Ταξινομούνται πολλές εγγραφές." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13160,20 +13149,20 @@ msgstr "" "χρησιμοποιήσετε τις ταξινομημένες στήλες στη σύνταξη του ORDER BY, καθώς " "αυτό θα έχει ως αποτέλεσμα πολλή γρηγορότερη ταξινόμηση" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Μέσος όρος ταξινομημένων εγγραφών: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Βαθμός ενώσεων χωρίς ευρετήρια" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Υπάρχουν πολλές ενώσεις χωρίς ευρετήρια." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13182,22 +13171,22 @@ msgstr "" "ευρετηρίων για τις στήλες που χρησιμοποιούνται στις συνθήκες ένωσης θα " "αυξήσει δραματικά τις ενώσεις πινάκων" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Μέσος όρος ενώσεων πινάκων: %s, αυτή η τιμή πρέπει να είναι μικρότερη από 1 " "ανά ώρα" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Βαθμός ανάγνωσης πρώτης εισαγωγής ευρετηρίου" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Ο βαθμός ανάγνωσης της πρώτης εισαγωγής ευρετηρίου είναι υψηλός." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13214,22 +13203,22 @@ msgstr "" "πλήρων σαρώσεων ευρετηρίου. Εκτός από αυτό, οι πλήρεις σαρώσεις ευρετηρίου " "μπορούν να μειωθούν ξαναγράφοντας τα ερωτήματα." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Μέσος όρος σαρώσεων ευρετηρίου: %s, αυτή η τιμή πρέπει να είναι κάτω από 1 " "ανά ώρα" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Βαθμός ανάγνωσης σταθερής θέσης" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Ο βαθμός ανάγνωσης δεδομένων από μια σταθερή θέση είναι υψηλός." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13240,7 +13229,7 @@ msgstr "" "ερωτημάτων που δεν χρησιμοποιούν ευρετήρια. Προσθέστε ευρετήρια όπου " "μπουρούν να εφαρμοστούν." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13249,15 +13238,15 @@ msgstr "" "Μέσος όρος βαθμού ανάγνωσης σταθερής θέσης: %s, αυτή η τιμή πρέπει να είναι " "κάτω από 1 ανά ώρα" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Βαθμός ανάγνωσης επόμενης γραμμής πίνακα" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Ο βαθμός ανάγνωσης της επόμενης εγγραφής του πίνακα είναι υψηλός." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13265,7 +13254,7 @@ msgstr "" "Αυτό δείχνει ότι πολλά ερωτήματα εκτελούν πλήρεις σαρώσεις πινάκων. " "Προσθέστε ευρετήρια όπου μπορούν να εφαρμοστούν." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13273,15 +13262,15 @@ msgstr "" "Βαθμός ανάγνωσης επόμενης εγγραφής πίνακα: %s, αυτό πρέπει να είναι κάτω από " "1 ανά ώρα" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size εναντίον max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "Το tmp_table_size και το max_heap_table_size δεν είναι τα ίδια." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13293,22 +13282,22 @@ msgstr "" "πινάκων. Έτσι, αν επιθυμείτε να αυξήσετε το όριο εσωτερικής μνήμης πινάκων " "θα πρέπει να αυξήσετε και την άλλη τιμή." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Οι τρέχουσες τιμές είναι tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Ποσοστό προσωρινών πινάκων στο δίσκο" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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:266 +#: 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 " @@ -13327,7 +13316,7 @@ msgstr "" "www.facebook.com/note.php?note_id=10150111255065841&comments\">Άρθρου από " "την Ομάδα Pythian" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13336,11 +13325,11 @@ msgstr "" "%s%% όλων των προσωρινών αρχείων εγγράφονται στο δίσκο, αυτή η τιμή πρέπει " "να είναι κάτω από 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Βαθμός προσωρινού δίσκου" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13359,7 +13348,7 @@ msgstr "" "com/doc/refman/5.5/en/internal-temporary-tables.html\">τεκμηρίωση της MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13368,16 +13357,16 @@ msgstr "" "Βαθμός των προσωρινών πινάκων που εγγράφονται στο δίσκο: %s, αυτή η τιμή " "πρέπει να είναι μικρότερη από 1 ανά ώρα" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Μέγεθος buffer κλειδιού MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Το buffer κλειδιού δεν ξεκίνησε. Κανένα ευρετήριο MyISAM δεν θα αποθηκευτεί." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13385,23 +13374,23 @@ msgstr "" "Ορίστε το {key_buffer_size} ανάλογα με το μέγεθος των ευρετηρίων MyISAM. 64M " "είναι μια καλή αρχή." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "Το key_buffer_size είναι 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Μέγιστο %% buffer κλειδιού MyISAM που χρησιμοποιήθηκε" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "" "Το buffer κλειδιού MyISAM (λανθάνουσα ευρετηρίου) %% που χρησιμοποιείτε " "είναι χαμηλό." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13411,7 +13400,7 @@ msgstr "" "τους πινακές σας για να δείτε αν έχουν απομακρυνθεί τα ευρετήρια ή εξετάστε " "τα ερωτήματα και τις προσδοκίες για το ποια ευρετήρια χρησιμοποιούνται." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13419,48 +13408,48 @@ msgstr "" "μέγιστο %% buffer κλειδιού MyISAM που χρησιμοποιήθηκε: %s%%, αυτή η τιμή " "πρέπει να είναι πάνω από 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Ποσοστό buffer κλειδιού MyISAM που χρησιμοποιήθηκε" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% buffer κλειδιού MyISAM χρησιμοποιείται: %s%%, αυτή η τιμή πρέπει να είναι " "πάνω από 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Ποσοστό των αναγνώσεων ευρετηρίων από τη μνήμη" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" "Το %% των ευρετηρίων που χρησιμοποιούν το buffer κλειδιού MyISAM είναι " "χαμηλό." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Ίσως χρειστεί να αυξήσετε το {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Αναγνώσεις ευρετηρίου από τη μνήμη: %s%%, αυτή η τιμή πρέπει να είναι πάνω " "από 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Βαθμός ανοίγματος πίνακα" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Ο βαθμός των ανοιγμένων πινάκων είναι υψηλός." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13468,18 +13457,18 @@ msgstr "" "Το άνοιγμα ερωτημάτων πινάκων απαιτεί I/O δίσκου που κοστίζει. Η αύξηση του " "{table_open_cache} ίσως το αποτρέψει αυτό." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Βαθμός ανοιγμένων πινάκων: %s, αυτή η τιμή πρέπει να είναι μικρότερη από 10 " "ανά ώρα" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Ποσοστό του ορίου χρησιμοποιημένων ανοιχτών αρχείων" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13487,7 +13476,7 @@ msgstr "" "Ο αριθμός των ανοιγμένων αρχείων προσεγγίζει τον μέγιστο αριθμό ανοιγμένων " "αρχείων. Ίσως λάβετ το σφάλμα «Πολλά ανοιχτά αρχεία»." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13495,7 +13484,7 @@ msgstr "" "Σκεφτείτε να αυξήσετε το {open_files_limit}, και ελέξτε την καταγραφή " "σφαλμάτων αφού κάνετε επανεκκίνηση μετά την αλλαγή του open_files_limit." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13503,57 +13492,57 @@ msgstr "" "Ο αριθμός των ανοιγμένων αρχείων είναι στο %s%% του ορίου. Πρέπει να είναι " "κάτω από το 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Βαθμός ανοιχτών αρχείων" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Ο βαθμός των ανοιγμένων αρχείων είναι υψηλός." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Βαθμός ανοιγμένων αρχείων: %s, αυτή η τιμή πρέπει να είναι λιγότερο από 5 " "ανά ώρα" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Άμεσα κλειδώματα πίνακα %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Πολλά κλειδώματα πίνακα δεν έγιναν αποδεκτά αμέσως." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Βελτιστοποίηση ερωτημάτων και/ή χρήση InnoDB για μείωση αναμονής κλειδώματος." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Άμεσα κλειδώματα πίνακα: %s%%, αυτή η τιμή πρέπει να είναι πάνω από 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Βαθμός αναμονής κλειδώματος πίνακα" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Βαθμός αναμονής κλειδώματος πίνακα: %s, αυτή η τιμή πρέπει να είναι κάτω από " "1 ανά ώρα" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Λανθάνουσα μνήμη νήματος" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13561,45 +13550,45 @@ msgstr "" "Η λανθάνουσα μνήμη νήματος είναι απενεργποιημένη με αποτέλεσμα περισσότερη " "περίσσεια από νέες συνδέσεις στη MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Ενεργοποιήστε τη λανθάνουσα μνήμη νήματος ορίζοντας το {thread_cache_size} > " "0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Η λανθάνουσα μνήμη νήματος έχει οριστεί σε 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Βαθμός νήματος λανθάνουσας μνήμης νήματος %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Η λανθάνουσα μνήμη νήματος δεν είναι επαρκής." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Αύξηση του {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Βαθμός λανθάνουσας μνήμης νήματος: %s%%, αυτή η τιμή πρέπει να είναι πάνω " "από 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Νήματα που είναι αργά στην προσπέλαση" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Υπάρχουν πολλές διεργασίες που έχουν αργή προσπέλαση." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13608,22 +13597,22 @@ msgstr "" "είναι απλές διαδικασίες. Ίσως θέλετε να εποπτεύσετε τη φόρτωση του " "συστήματός σας προσεκτικά." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s νήμα(τα) χρειάστηακν περισσότερα από t%s δευτερόλεπτα για να ξεκινήσουν, " "έπρεπε να είναι 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Αργός χρόνος προσπέλασης" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Το Slow_launch_threads είναι πάνω από 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13631,16 +13620,16 @@ msgstr "" "Ορίστε το slow_launch_time σε 1s ή 2s για σωστό μέτρημα νημάτων που είναι " "αργά στην προσπέλαση" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "Το slow_launch_time έχει οριστεί σε %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Ποσοστό χρησιμοποιημένων συνδέσεων" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13648,7 +13637,7 @@ msgstr "" "Ο μέγιστος αριθμός χρησιμοποιημένων συνδέσεων πλησιάζει την τιμή των " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13659,7 +13648,7 @@ msgstr "" "νωρίτερα. Σιγουρευτείτε ότι ο κώδικας κλείνει τους χειριστές βάσεων " "δεδομένων σωστά." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13667,15 +13656,15 @@ msgstr "" "Οι Max_used_connections είναι στο %s%% των max_connections, έπρεπε να είναι " "κάτω από 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Ποσοστό παρατημένων συνδέσεων" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Πάρα πολλές παρατημένες συνδέσεις." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Αυτό το άρθρο ίσως σας βοηθήσει να " "ανιχνεύσετε την προέλευση." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%" "%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Βαθμός παρατημένων συνδέσεων" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13706,15 +13695,15 @@ msgstr "" "Ο βαθμός ματαιωμένων συνδέσεων είναι στο %s, αυτή η τιμή πρέπει να είναι " "κάτω από 1 ανά ώρα" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Ποσοστό παρατημένων πελατών" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Πάρα πολλοί πελάτες ματαιώθηκαν." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13725,44 +13714,44 @@ msgstr "" "όταν δεν κλείνει σωστά ένας χειριστής βάσης δεδομένων. Ελέξτε το δίκτυο και " "τον κώδικά σας." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% όλων των πελατών ματαιώθηκε. Αυτη η τιμή πρέπει να είναι κάτω από 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Βαθμός παρατημένων πελατών" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Ο βαθμός ματαιωμένου πελάτη είναι στο %s, αυτή η τιμή πρέπει να είναι κάτω " "από 1 ανά ώρα" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Είναι απενεργποιημένη η InnoDB;" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Δεν έχετε ενεργοποημένη την InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "Η InnoDB ε΄ναι συνήθς η καλύτερη επιλογή για μηχανές πινάκων." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "Το have_innodb έχει οριστεί σε «τιμή»" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Μέγεθος καταγραφής InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13770,7 +13759,7 @@ msgstr "" "Το μέγεθος αρχείου καταγραφής της InnoDB δεν είναι κατάλληλο μέγεθος, σε " "σχέση με το InnoDB buffer pool." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13795,7 +13784,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">αυτό το άρθρο ιστολογίου" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13804,15 +13793,15 @@ msgstr "" "Το μέγεθος καταγραφής InnoDB είναι στο %s%% σε σχέση με το μέγεθος του " "InnoDB buffer pool, δεν θα πρέπει να είναι κάτω από 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Μέγιστο μέγεθος καταγραφής InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Το μεγεθος του αρχείου καταγραφής της InnoDB είναι ανεπαρκώς μεγάλο." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13837,20 +13826,20 @@ msgstr "" "com/2007/01/increase-innodblogfilesize-proper-way.html\">αυτό το άρθρο " "ιστολογίου" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Το απόλυτο μέγεθος καταγραφής της InnoDB είναι %s MB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Μέγεθος InnoDB buffer pool" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Το InnoDB buffer pool είναι αρκετά μικρό." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13876,7 +13865,7 @@ msgstr "" "επίσης αυτό το άρθρο" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13889,15 +13878,15 @@ msgstr "" "απολύτως επαρκές για το σύστημά σας, αν δεν έχετε πολλούς πίνακες InnoDB ή " "άλλες υπηρεσίες να εκτελούνται στο ίδιο μηχάνημα." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Ταυτόχρονες εισαγωγές MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Ενεργοποιήστε το concurrent_insert ορίζοντας στο 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also τεκμηρίωση της MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "σταλθέντα KB από την τελευταία ανανέωση" + +#~ msgid "KiB received since last refresh" +#~ msgstr "ληφθέντα KB από την τελευταία ανανέωση" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Κυκλοφορία Διακομιστή (σε KB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Συνδέσεις από την τελευταία ανανέωση" + +#~ msgid "Questions since last refresh" +#~ msgstr "Ερωτήσεις από την τελευταία ανανέωση" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)" + +#~ msgid "Runtime Information" +#~ msgstr "Πληροφορίες εκτέλεσης" + +#~ msgid "Number of data points: " +#~ msgstr "Αριθμός σημείων δεδομένων: " + +#~ msgid "Refresh rate: " +#~ msgstr "Ρυθμός ανανέωσης: " + +#~ msgid "Run analyzer" +#~ msgstr "Αναλυτής εκτέλεσης" + #~ msgid "Show more actions" #~ msgstr "Προβολή περισσοτέρων δράσεων" diff --git a/po/en_GB.po b/po/en_GB.po index bf3e8d07c4..b2351fe13e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-08 18:56+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: English (United Kingdom) Settings menu." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Query cache efficiency" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Query cache usage" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Query cache used" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "System CPU Usage" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "System memory" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "System swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Average load" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Total memory" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Cached memory" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Buffered memory" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Free memory" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Used memory" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Total Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Cached Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Used Swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Free Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes sent" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Connections" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processes" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Settings" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Remove chart" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Edit title and labels" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Add chart to grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Please add at least one variable to the series" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "None" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Resume monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pause monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log and slow_query_log are enabled." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log is enabled." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log is enabled." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log are disabled." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output is not set to TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output is set to TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1300,12 +1273,12 @@ msgstr "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is set to %d second(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1314,30 +1287,30 @@ msgstr "" "restart:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Set log_output to %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Enable %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Disable %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Set long_query_time to %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1345,53 +1318,53 @@ msgstr "" "You can't change these variables. Please log in as root or contact your " "database administrator." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Change settings" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Current settings" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Chart Title" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Differential" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Divided by %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unit" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "From slow log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "From general log" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analysing logs" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analysing & loading logs. This may take a while." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancel request" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1401,7 +1374,7 @@ msgstr "" "together. However only the SQL Text is being compared, thus the queries " "other attributes such as start time may differ." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1411,98 +1384,98 @@ msgstr "" "same table are also being grouped together, disregarding of the inserted " "data." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Log data loaded. Queries executed in this time span:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Jump to Log table" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "No data found" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Log analyzed, but no data found in this time span." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyzing…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Explain output" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Time" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Total time:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profiling results" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Chart" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Edit chart" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Series" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Log table filter options" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filter queries by word/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Group queries, ignoring variable data in WHERE clauses" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Sum of grouped rows:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Loading logs" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Monitor refresh failed" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1512,252 +1485,254 @@ msgstr "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Reload page" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Affected rows:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Failed parsing config file. It doesn't seem to be valid JSON code." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Failed building chart grid with imported config. Resetting to default config…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Import monitor configuration" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Please select the file you want to import" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyse Query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Advisor system" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Possible performance issues" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Issue" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recommendation" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Rule details" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justification" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Used variable / formula" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancel" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Loading" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Processing Request" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Error in Processing Request" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "No databases selected." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Dropping Column" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Adding Primary Key" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Click to dismiss this notification" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Renaming Databases" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Reload Database" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copying Database" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Changing Charset" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Table must have at least one column" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Insert Table" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Hide indexes" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Show indexes" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Foreign key check:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Enabled)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Disabled)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Searching" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Hide search results" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Show search results" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Browsing" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Deleting" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "The definition of a stored function must contain a RETURN statement!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Values for column %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Values for a new column" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Enter each value in a separate field" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Add %d value(s)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Note: If the file contains multiple tables, they will be combined into one" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Hide query box" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Show query box" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Change" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Query execution time" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1766,88 +1741,88 @@ msgstr "%d is not valid row number." msgid "Save" msgstr "Save" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoom Search" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Each point represents a data row." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Hovering over a point will show its label." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "To zoom in, select a section of the plot with the mouse." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Click reset zoom button to come back to original state." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Click a data point to view and possibly edit the data row." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "The plot can be resized by dragging it along the bottom right corner." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Select two columns" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Select two different columns" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Query results" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Data point content" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copy" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Add columns" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1855,15 +1830,20 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Add an option for column " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Press escape to cancel editing" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1871,27 +1851,27 @@ msgstr "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Drag to reorder" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Click to sort" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Click to mark/unmark" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Double-click to copy column name" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Click the drop-down arrow
to toggle column's visibility" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1899,7 +1879,7 @@ msgstr "" "This table does not contain a unique column. Features related to the grid " "edit, tick-box, Edit, Copy and Delete links may not work after saving." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1909,57 +1889,57 @@ msgid "" msgstr "" "You can also edit most columns
by clicking directly on their content." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "You can also edit most columns
by clicking directly on their content." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Go to link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copy column name" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Right-click the column name to copy it to your clipboard." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Show data row(s)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generate" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Change Password" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "More" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Show Panel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Hide Panel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "The requested page was not found in the history, it may have expired." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1969,266 +1949,266 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "up to date" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Done" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Today" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "January" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "February" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "March" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "April" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "May" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "June" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "July" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "August" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "October" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Monday" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Friday" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hour" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minute" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Second" @@ -2279,16 +2259,16 @@ msgstr "Unexpected characters on line %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per hour" @@ -2315,7 +2295,7 @@ msgstr "Font size" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascending" @@ -2324,7 +2304,7 @@ msgstr "Ascending" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descending" @@ -2438,7 +2418,7 @@ msgstr "Delete the matches for the %s table?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Delete" @@ -2608,7 +2588,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Kill" @@ -2665,12 +2645,13 @@ msgstr "Check All" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" @@ -2678,7 +2659,7 @@ msgstr "Export" msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2762,16 +2743,16 @@ msgstr "Cannot read (moved) upload file." msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript must be enabled past this point" @@ -2783,21 +2764,21 @@ msgstr "No index defined!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -2807,13 +2788,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Collation" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comment" @@ -2858,7 +2839,7 @@ msgstr "View" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Structure" @@ -2931,34 +2912,35 @@ msgstr "Events" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Users" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binary log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replication" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Engines" @@ -3006,6 +2988,104 @@ msgstr "Recent tables" msgid "There are no recent tables" msgstr "There are no recent tables" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL query" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Query cache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Threads" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Temporary data" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Key cache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sorting" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tables" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaction coordinator" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Files" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Show open tables" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Show slave hosts" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Show master status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Show slave status" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Query statistics" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "All status variables" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitor" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Advisor" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3103,7 +3183,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Value" @@ -3547,11 +3627,6 @@ msgstr "An enumeration, chosen from the list of defined values" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL query" - #: libraries/Util.class.php:710 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:292 @@ -3586,7 +3661,7 @@ msgid "Create PHP Code" msgstr "Create PHP Code" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Refresh" @@ -3682,13 +3757,6 @@ msgstr "Print" msgid "shared" msgstr "shared" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tables" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3729,11 +3797,11 @@ msgstr "Check privileges for database "%s"." msgid "Check Privileges" msgstr "Check Privileges" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Failed to read configuration file" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3741,12 +3809,12 @@ msgstr "" "This usually means there is a syntax error in it, please check any errors " "shown below." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3754,38 +3822,38 @@ msgstr "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS overwrite attempt" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "possible exploit" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numeric key detected" @@ -6036,8 +6104,8 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Username" @@ -6685,10 +6753,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" @@ -7379,20 +7443,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "Filter databases by name" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Clear series" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7506,17 +7570,17 @@ msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Structure only" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Structure and data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Data only" @@ -7910,8 +7974,7 @@ msgstr "Display MIME types" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8501,7 +8564,7 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variable" @@ -9015,7 +9078,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9709,7 +9772,7 @@ msgstr "Add prefix to table" msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "None" @@ -10054,7 +10117,7 @@ msgstr "Toggle small/big" msgid "Toggle relation lines" msgstr "Toggle relation lines" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -10120,31 +10183,31 @@ msgstr "Page has been created" msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Page" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Import from selected page" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Export to selected page" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Create a page and export to it" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "New page name: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recommended" @@ -10262,15 +10325,11 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Files" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -10354,7 +10413,7 @@ msgstr "Module" msgid "Library" msgstr "Library" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Version" @@ -10412,10 +10471,6 @@ msgstr "Master server changed successfully to %s" msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Show master status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Show connected slaves" @@ -10556,131 +10611,98 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Network traffic since startup: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "This MySQL server has been running for %1$s. It started up on %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"This MySQL server works as master and slave in replication process." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"This MySQL server works as master in replication process." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "This MySQL server works as slave in replication process." -#: server_status.php:663 -msgid "Key cache" -msgstr "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"For further information about replication status on the server, please visit " +"the replication section." -#: server_status.php:664 -msgid "Joins" -msgstr "Joins" +#: server_status.php:122 +msgid "Replication status" +msgstr "Replication status" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sorting" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaction coordinator" +#: server_status.php:149 +msgid "Received" +msgstr "Received" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" +msgstr "Sent" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "max. concurrent connections" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Failed attempts" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Show slave status" +#: server_status.php:253 +msgid "Aborted" +msgstr "Aborted" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Flush query cache" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Runtime Information" +#: server_status.php:329 +msgid "Command" +msgstr "Command" -#: server_status.php:830 -msgid "All status variables" -msgstr "All status variables" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitor" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Advisor" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Number of data points: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Refresh rate: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filters" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Containing the word:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Show only alert values" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filter by category..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Show unformatted values" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Related links:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Run analyser" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instructions" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10688,7 +10710,7 @@ msgstr "" "The Advisor system can provide recommendations on server variables by " "analysing the server status variables." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10698,7 +10720,7 @@ msgstr "" "calculations and by rule of thumb which may not necessarily apply to your " "system." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10708,7 +10730,7 @@ msgstr "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10718,811 +10740,39 @@ msgstr "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Questions since startup: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Statements" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Network traffic since startup: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "This MySQL server has been running for %1$s. It started up on %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"This MySQL server works as master and slave in replication process." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"This MySQL server works as master in replication process." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "This MySQL server works as slave in replication process." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"For further information about replication status on the server, please visit " -"the replication section." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Replication status" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." - -#: server_status.php:1191 -msgid "Received" -msgstr "Received" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Sent" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "max. concurrent connections" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Failed attempts" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Aborted" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Command" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "The number of failed attempts to connect to the MySQL server." - -#: server_status.php:1529 -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 "" -"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." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "The number of transactions that used the temporary binary log cache." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"The number of connection attempts (successful or not) to the MySQL server." - -#: server_status.php:1532 -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 "" -"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." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "How many temporary files mysqld has created." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "The number of INSERT DELAYED rows written." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "The number of executed FLUSH statements." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "The number of internal COMMIT statements." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "The number of times a row was deleted from a table." - -#: server_status.php:1541 -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 "" -"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." - -#: server_status.php:1542 -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 "" -"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." - -#: server_status.php:1543 -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 "" -"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." - -#: server_status.php:1544 -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 "" -"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." - -#: server_status.php:1545 -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 "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimise ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"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." - -#: server_status.php:1547 -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 "" -"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." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "The number of internal ROLLBACK statements." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "The number of requests to update a row in a table." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "The number of requests to insert a row in a table." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "The number of pages containing data (dirty or clean)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "The number of pages currently dirty." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"The number of buffer pool pages that have been requested to be flushed." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "The number of free pages." - -#: server_status.php:1555 -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 "" -"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." - -#: server_status.php:1556 -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 "" -"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." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Total size of buffer pool, in pages." - -#: server_status.php:1558 -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 "" -"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." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "The number of logical read requests InnoDB has done." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." - -#: server_status.php:1562 -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 "" -"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." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "The number writes done to the InnoDB buffer pool." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "The number of fsync() operations so far." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "The current number of pending fsync() operations." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "The current number of pending reads." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "The current number of pending writes." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "The amount of data read so far, in bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "The total number of data reads." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "The total number of data writes." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "The amount of data written so far, in bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "The number of pages that have been written for doublewrite operations." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "The number of doublewrite operations that have been performed." - -#: server_status.php:1574 -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 "" -"The number of waits we had because log buffer was too small and we had to " -"wait for it to be flushed before continuing." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "The number of log write requests." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "The number of physical writes to the log file." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsync() writes done to the log file." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "The number of pending log file fsyncs." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Pending log file writes." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "The number of bytes written to the log file." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "The number of pages created." - -#: server_status.php:1582 -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 "" -"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." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "The number of pages read." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "The number of pages written." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "The number of row locks currently being waited for." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "The average time to acquire a row lock, in milliseconds." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "The total time spent in acquiring row locks, in milliseconds." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "The maximum time to acquire a row lock, in milliseconds." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "The number of times a row lock had to be waited for." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "The number of rows deleted from InnoDB tables." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "The number of rows inserted in InnoDB tables." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "The number of rows read from InnoDB tables." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "The number of rows updated in InnoDB tables." - -#: server_status.php:1594 -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 "" -"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." - -#: server_status.php:1595 -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 "" -"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." - -#: server_status.php:1596 -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 "" -"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." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Percentage of used key cache (calculated value)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "The number of requests to read a key block from the cache." - -#: server_status.php:1599 -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 "" -"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." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "The number of requests to write a key block to the cache." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "The number of physical writes of a key block to disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Percentage of physical writes compared to write requests (calculated value)" - -#: server_status.php:1604 -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 "" -"The total cost of the last compiled query as computed by the query " -"optimiser. 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." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "The number of rows waiting to be written in INSERT DELAYED queues." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "The number of files that are open." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "The number of streams that are open (used mainly for logging)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "The number of tables that are open." - -#: server_status.php:1611 -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 "" -"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." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "The amount of free memory for query cache." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "The number of cache hits." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "The number of queries added to the cache." - -#: server_status.php:1615 -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 "" -"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." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "The number of queries registered in the cache." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "The total number of blocks in the query cache." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "The status of failsafe replication (not yet implemented)." - -#: server_status.php:1620 -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 "" -"The number of joins that do not use indexes. If this value is not 0, you " -"should carefully check the indexes of your tables." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "The number of joins that used a range search on a reference table." - -#: server_status.php:1622 -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 "" -"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.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "The number of joins that did a full scan of the first table." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "The number of temporary tables currently open by the slave SQL thread." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "This is ON if this server is a slave that is connected to a master." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"The number of queries that have taken more than long_query_time seconds." - -#: server_status.php:1630 -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 "" -"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." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "The number of sorts that were done with ranges." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "The number of sorted rows." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "The number of sorts that were done by scanning the table." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "The number of times that a table lock was acquired immediately." - -#: server_status.php:1635 -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 "" -"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 optimise your queries, and then either split your table or " -"tables or use replication." - -#: server_status.php:1636 -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 "" -"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." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "The number of currently open connections." - -#: server_status.php:1638 -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 "" -"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.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Thread cache hit rate (calculated value)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "The number of threads that are not sleeping." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instructions/Setup" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Done rearranging/editing charts" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Add chart" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Rearrange/edit charts" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Chart columns" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Chart arrangement" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11530,15 +10780,15 @@ msgstr "" "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." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Reset to default" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Monitor Instructions" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11552,7 +10802,7 @@ msgstr "" "enabled. Note however, that the general_log produces a lot of data and " "increases server load by up to 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11564,11 +10814,11 @@ msgstr "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Using the monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11578,7 +10828,7 @@ msgstr "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11590,11 +10840,11 @@ msgstr "" "confirmed, this will load a table of grouped queries, there you may click on " "any occurring SELECT statements to further analyse them." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Please note:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11606,92 +10856,813 @@ msgstr "" "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." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Preset chart" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Status variable(s)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Select series:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Commonly monitored" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "or type variable name:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Display as differential value" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Apply a divisor" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Append unit to data values" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Add this series" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Clear series" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Series in Chart:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Log statistics" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Selected time range:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remove variable data in INSERT statements for better grouping" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choose from which log you want the statistics to be generated from." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Results are grouped by query text." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Query analyser" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d second" msgstr[1] "%d seconds" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Questions since startup: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Statements" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filters" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Containing the word:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Show only alert values" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filter by category..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Show unformatted values" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Related links:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "The number of failed attempts to connect to the MySQL server." + +#: server_status_variables.php:334 +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 "" +"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." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "The number of transactions that used the temporary binary log cache." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"The number of connection attempts (successful or not) to the MySQL server." + +#: server_status_variables.php:346 +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 "" +"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." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "How many temporary files mysqld has created." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "The number of INSERT DELAYED rows written." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "The number of executed FLUSH statements." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "The number of internal COMMIT statements." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "The number of times a row was deleted from a table." + +#: server_status_variables.php:381 +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 "" +"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." + +#: server_status_variables.php:387 +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 "" +"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." + +#: server_status_variables.php:393 +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 "" +"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." + +#: server_status_variables.php:398 +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 "" +"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." + +#: server_status_variables.php:403 +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 "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimise ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"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." + +#: server_status_variables.php:414 +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 "" +"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." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "The number of internal ROLLBACK statements." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "The number of requests to update a row in a table." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "The number of requests to insert a row in a table." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "The number of pages containing data (dirty or clean)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "The number of pages currently dirty." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"The number of buffer pool pages that have been requested to be flushed." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "The number of free pages." + +#: server_status_variables.php:443 +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 "" +"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." + +#: server_status_variables.php:448 +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 "" +"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." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Total size of buffer pool, in pages." + +#: server_status_variables.php:458 +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 "" +"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." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "The number of logical read requests InnoDB has done." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." + +#: server_status_variables.php:474 +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 "" +"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." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "The number writes done to the InnoDB buffer pool." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "The number of fsync() operations so far." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "The current number of pending fsync() operations." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "The current number of pending reads." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "The current number of pending writes." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "The amount of data read so far, in bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "The total number of data reads." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "The total number of data writes." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "The amount of data written so far, in bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "The number of pages that have been written for doublewrite operations." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "The number of doublewrite operations that have been performed." + +#: server_status_variables.php:516 +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 "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "The number of log write requests." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "The number of physical writes to the log file." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "The number of fsync() writes done to the log file." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "The number of pending log file fsyncs." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Pending log file writes." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "The number of bytes written to the log file." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "The number of pages created." + +#: server_status_variables.php:541 +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 "" +"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." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "The number of pages read." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "The number of pages written." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "The number of row locks currently being waited for." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "The average time to acquire a row lock, in milliseconds." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "The total time spent in acquiring row locks, in milliseconds." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "The maximum time to acquire a row lock, in milliseconds." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "The number of times a row lock had to be waited for." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "The number of rows deleted from InnoDB tables." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "The number of rows inserted in InnoDB tables." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "The number of rows read from InnoDB tables." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "The number of rows updated in InnoDB tables." + +#: server_status_variables.php:579 +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 "" +"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." + +#: server_status_variables.php:584 +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 "" +"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." + +#: server_status_variables.php:588 +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 "" +"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." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Percentage of used key cache (calculated value)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "The number of requests to read a key block from the cache." + +#: server_status_variables.php:599 +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 "" +"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." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "The number of requests to write a key block to the cache." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "The number of physical writes of a key block to disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Percentage of physical writes compared to write requests (calculated value)" + +#: server_status_variables.php:619 +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 "" +"The total cost of the last compiled query as computed by the query " +"optimiser. 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." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "The number of rows waiting to be written in INSERT DELAYED queues." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "The number of files that are open." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "The number of streams that are open (used mainly for logging)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "The number of tables that are open." + +#: server_status_variables.php:645 +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 "" +"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." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "The amount of free memory for query cache." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "The number of cache hits." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "The number of queries added to the cache." + +#: server_status_variables.php:659 +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 "" +"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." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "The number of queries registered in the cache." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "The total number of blocks in the query cache." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "The status of failsafe replication (not yet implemented)." + +#: server_status_variables.php:679 +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 "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "The number of joins that used a range search on a reference table." + +#: server_status_variables.php:686 +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 "" +"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.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "The number of joins that did a full scan of the first table." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "The number of temporary tables currently open by the slave SQL thread." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "This is ON if this server is a slave that is connected to a master." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." + +#: server_status_variables.php:717 +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 "" +"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." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "The number of sorts that were done with ranges." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "The number of sorted rows." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "The number of sorts that were done by scanning the table." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "The number of times that a table lock was acquired immediately." + +#: server_status_variables.php:734 +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 "" +"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 optimise your queries, and then either split your table or " +"tables or use replication." + +#: server_status_variables.php:740 +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 "" +"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." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "The number of currently open connections." + +#: server_status_variables.php:748 +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 "" +"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.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Thread cache hit rate (calculated value)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "The number of threads that are not sleeping." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Setting variable failed" @@ -12280,26 +12251,26 @@ msgstr "Foreign key constraint" msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking for %1$s was deactivated at version %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking for %1$s was activated at version %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL statements executed." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12307,117 +12278,117 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Query error" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking data manipulation successfully deleted" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Tracking statements" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "No data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Date" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Data definition statement" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL execution" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Show versions" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Deactivate tracking for %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deactivate now" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Activate tracking for %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Activate now" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Create version %1$s of %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Create version" @@ -12567,11 +12538,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time is currently set to %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Slow query logging" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "The slow query log is disabled." @@ -12587,15 +12558,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries is set to 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " +"help troubleshooting badly performing queries." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries is set to 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Release Series" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "The MySQL server version less than 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12603,21 +12592,21 @@ msgstr "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Current version: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Minor Version" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Version less than 5.1.30 (the first GA release of 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12625,24 +12614,24 @@ msgstr "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Version less than 5.5.8 (the first GA release of 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "You should upgrade, to a stable version of MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribution" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Version is compiled from source, not a MySQL official binary." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12652,40 +12641,40 @@ msgstr "" "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' found in version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "The MySQL manual only is accurate for official MySQL binaries." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona documentation is at http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' found in version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle documentation is at http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Version string (%s) matches Drizzle versioning scheme" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL Architecture" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL is not compiled as a 64-bit package." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12695,20 +12684,20 @@ msgstr "" "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Available memory on this host: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Query cache disabled" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "The query cache is not enabled." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12720,19 +12709,19 @@ msgstr "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Query caching method" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Suboptimal caching method." -#: libraries/advisory_rules.txt:157 +#: 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." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12753,133 +12742,133 @@ msgstr "" "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." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Query cache efficiency (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Query cache not running efficiently, it has a low hit rate." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Consider increasing {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "The current query cache hit rate of %s%% is below 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Query Cache usage" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Less than 80%% of the query cache is being utilised." -#: libraries/advisory_rules.txt:171 -msgid "" -"This might be caused by {query_cache_limit} being too low. Flushing the " -"query cache might help as well." -msgstr "" -"This might be caused by {query_cache_limit} being too low. Flushing the " -"query cache might help as well." - -#: libraries/advisory_rules.txt:172 -#, php-format -msgid "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" -msgstr "" -"The current ratio of free query cache memory to total query cache size is %s%" -"%. It should be above 80%%" - -#: libraries/advisory_rules.txt:174 -msgid "Query cache fragmentation" -msgstr "Query cache fragmentation" - -#: libraries/advisory_rules.txt:177 -msgid "The query cache is considerably fragmented." -msgstr "The query cache is considerably fragmented." - #: libraries/advisory_rules.txt:178 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" +"This might be caused by {query_cache_limit} being too low. Flushing the " +"query cache might help as well." msgstr "" -"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" +"This might be caused by {query_cache_limit} being too low. Flushing the " +"query cache might help as well." #: libraries/advisory_rules.txt:179 #, 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%%." +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"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%%." +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" #: libraries/advisory_rules.txt:181 -msgid "Query cache low memory prunes" -msgstr "Query cache low memory prunes" +msgid "Query cache fragmentation" +msgstr "Query cache fragmentation" #: libraries/advisory_rules.txt:184 -msgid "" -"Cached queries are removed due to low query cache memory from the query " -"cache." -msgstr "" -"Cached queries are removed due to low query cache memory from the query " -"cache." +msgid "The query cache is considerably fragmented." +msgstr "The query cache is considerably fragmented." #: libraries/advisory_rules.txt:185 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." +"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 "" -"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." +"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" #: libraries/advisory_rules.txt:186 #, 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%%)" +"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 "" -"The ratio of removed queries to inserted queries is %s%%. The lower this " -"value is, the better (This rules firing limit: 0.1%%)" +"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%%." #: libraries/advisory_rules.txt:188 -msgid "Query cache max size" -msgstr "Query cache max size" +msgid "Query cache low memory prunes" +msgstr "Query cache low memory prunes" #: libraries/advisory_rules.txt:191 msgid "" +"Cached queries are removed due to low query cache memory from the query " +"cache." +msgstr "" +"Cached queries are removed due to low query cache memory from the query " +"cache." + +#: 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 "" +"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." + +#: 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 "" +"The ratio of removed queries to inserted queries is %s%%. The lower this " +"value is, the better (This rules firing limit: 0.1%%)" + +#: libraries/advisory_rules.txt:195 +msgid "Query cache max size" +msgstr "Query cache max size" + +#: 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 "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12887,22 +12876,22 @@ msgstr "" "Depending on your environment, it might be performance increasing to reduce " "this value." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Current query cache size: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Query cache min result size" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "The max size of the result set in the query cache is the default of 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12922,19 +12911,19 @@ msgstr "" "(often invalidated due to table updates) increasing {query_cache_limit} " "might reduce efficiency." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit is set to 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Percentage of sorts that cause temporary tables" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Too many sorts are causing temporary tables." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12942,35 +12931,35 @@ msgstr "" "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending " "on your system memory limits" -#: libraries/advisory_rules.txt:209 -#, php-format -msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." -msgstr "" -"%s%% of all sorts cause temporary tables, this value should be lower than 10%" -"%." - -#: libraries/advisory_rules.txt:211 -msgid "Rate of sorts that cause temporary tables" -msgstr "Rate of sorts that cause temporary tables" - #: libraries/advisory_rules.txt:216 #, php-format msgid "" +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." +msgstr "" +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." + +#: libraries/advisory_rules.txt:218 +msgid "Rate of sorts that cause temporary tables" +msgstr "Rate of sorts that cause temporary tables" + +#: libraries/advisory_rules.txt:223 +#, php-format +msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" "Temporary tables average: %s, this value should be less than 1 per hour." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sort rows" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "There are lots of rows being sorted." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12982,20 +12971,20 @@ msgstr "" "indexed fields in the ORDER BY clause, as this will result in much faster " "sorting" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Sorted rows average: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Rate of joins without indexes" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "There are too many joins without indexes." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13003,20 +12992,20 @@ msgstr "" "This means that joins are doing full table scans. Adding indexes for the " "fields being used in the join conditions will greatly speed up table joins" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "Table joins average: %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Rate of reading first index entry" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "The rate of reading the first index entry is high." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13032,70 +13021,70 @@ msgstr "" "scans. Other than that full index scans can only be reduced by rewriting " "queries." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "Index scans average: %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Rate of reading fixed position" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "The rate of reading data from a fixed position is high." -#: libraries/advisory_rules.txt:244 -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 "" -"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." - -#: libraries/advisory_rules.txt:245 -#, php-format -msgid "" -"Rate of reading fixed position average: %s, this value should be less than 1 " -"per hour" -msgstr "" -"Rate of reading fixed position average: %s, this value should be less than 1 " -"per hour" - -#: libraries/advisory_rules.txt:247 -msgid "Rate of reading next table row" -msgstr "Rate of reading next table row" - -#: libraries/advisory_rules.txt:250 -msgid "The rate of reading the next table row is high." -msgstr "The rate of reading the next table row is high." - #: libraries/advisory_rules.txt:251 msgid "" -"This indicates that many queries are doing full table scans. Add indexes " -"where applicable." +"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 "" -"This indicates that many queries are doing full table scans. Add indexes " -"where applicable." +"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." #: 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 "" +"Rate of reading fixed position average: %s, this value should be less than 1 " +"per hour" + +#: libraries/advisory_rules.txt:254 +msgid "Rate of reading next table row" +msgstr "Rate of reading next table row" + +#: libraries/advisory_rules.txt:257 +msgid "The rate of reading the next table row is high." +msgstr "The rate of reading the next table row is high." + +#: libraries/advisory_rules.txt:258 +msgid "" +"This indicates that many queries are doing full table scans. Add indexes " +"where applicable." +msgstr "" +"This indicates that many queries are doing full table scans. Add indexes " +"where applicable." + +#: 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 "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size vs. max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size and max_heap_table_size are not the same." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13107,16 +13096,16 @@ msgstr "" "wish to increase the in-memory table limit you will have to increase the " "other value as well." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Current values are tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Percentage of temp tables on disk" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13124,37 +13113,6 @@ msgstr "" "Many temporary tables are being written to disk instead of being kept in " "memory." -#: libraries/advisory_rules.txt:266 -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 "" -"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" - -#: libraries/advisory_rules.txt:267 -#, php-format -msgid "" -"%s%% of all temporary tables are being written to disk, this value should be " -"below 25%%" -msgstr "" -"%s%% of all temporary tables are being written to disk, this value should be " -"below 25%%" - -#: libraries/advisory_rules.txt:269 -msgid "Temp disk rate" -msgstr "Temp disk rate" - #: libraries/advisory_rules.txt:273 msgid "" "Increasing {max_heap_table_size} and {tmp_table_size} might help. However " @@ -13162,6 +13120,37 @@ msgid "" "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 "" +"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" + +#: 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 "" +"%s%% of all temporary tables are being written to disk, this value should be " +"below 25%%" + +#: libraries/advisory_rules.txt:276 +msgid "Temp disk rate" +msgstr "Temp disk rate" + +#: 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 "" @@ -13173,7 +13162,7 @@ msgstr "" "mentioned in the MySQL Documentation" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13182,15 +13171,15 @@ msgstr "" "Rate of temporary tables being written to disk: %s, this value should be " "less than 1 per hour" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM key buffer size" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "Key buffer is not initialised. No MyISAM indexes will be cached." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13198,21 +13187,21 @@ msgstr "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size is 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Max %% MyISAM key buffer ever used" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM key buffer (index cache) %% used is low." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13222,49 +13211,49 @@ msgstr "" "tables to see if indexes have been removed, or examine queries and " "expectations about what indexes are being used." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Percentage of MyISAM key buffer used" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Percentage of index reads from memory" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "The %% of indexes that use the MyISAM key buffer is low." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "You may need to increase {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Index reads from memory: %s%%, this value should be above 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Rate of table open" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "The rate of opening tables is high." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13272,16 +13261,16 @@ msgstr "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Opened table rate: %s, this value should be less than 10 per hour" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Percentage of used open files limit" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13289,7 +13278,7 @@ msgstr "" "The number of open files is approaching the max number of open files. You " "may get a \"Too many open files\" error." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13297,58 +13286,58 @@ msgstr "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing open_files_limit." -#: libraries/advisory_rules.txt:332 +#: 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 "" "The number of opened files is at %s%% of the limit. It should be below 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Rate of open files" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "The rate of opening files is high." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Opened files rate: %s, this value should be less than 5 per hour" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Immediate table locks %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Too many table locks were not granted immediately." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "Optimise queries and/or use InnoDB to reduce lock wait." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Immediate table locks: %s%%, this value should be above 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Table lock wait rate" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "Table lock wait rate: %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Thread cache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13356,41 +13345,41 @@ msgstr "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Enable the thread cache by setting {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "The thread cache is set to 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Thread cache hit rate %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Thread cache is not efficient." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Increase {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Thread cache hit-rate: %s%%, this value should be above 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Threads that are slow to launch" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "There are too many threads that are slow to launch." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13398,20 +13387,20 @@ msgstr "" "This generally happens in case of general system overload as it is pretty " "simple operations. You might want to monitor your system load carefully." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s thread(s) took longer than %s seconds to start, it should be 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Slow launch time" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads is above 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13419,16 +13408,16 @@ msgstr "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time is set to %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Percentage of used connections" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13436,7 +13425,7 @@ msgstr "" "The maximum amount of used connections is getting close to the value of " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13446,22 +13435,22 @@ msgstr "" "do not close database handlers properly get killed sooner. Make sure the " "code closes database handlers properly." -#: libraries/advisory_rules.txt:390 +#: 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 is at %s%% of max_connections, it should be below 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Percentage of aborted connections" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Too many connections are aborted." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: 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." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% of all connections are aborted. This value should be below 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Rate of aborted connections" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" "Aborted connections rate is at %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Percentage of aborted clients" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Too many clients are aborted." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13507,128 +13496,128 @@ msgstr "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% of all clients are aborted. This value should be below 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Rate of aborted clients" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Aborted client rate is at %s, this value should be less than 1 per hour" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Is InnoDB disabled?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "You do not have InnoDB enabled." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB is usually the better choice for table engines." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb is set to 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB log size" -#: libraries/advisory_rules.txt:432 -msgid "" -"The InnoDB log file size is not an appropriate size, in relation to the " -"InnoDB buffer pool." -msgstr "" -"The InnoDB log file size is not an appropriate size, in relation to the " -"InnoDB buffer pool." - -#: libraries/advisory_rules.txt:433 -#, 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 "" -"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" - -#: libraries/advisory_rules.txt:434 -#, 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 "" -"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " -"it should not be below 20%%" - -#: libraries/advisory_rules.txt:436 -msgid "Max InnoDB log size" -msgstr "Max InnoDB log size" - #: libraries/advisory_rules.txt:439 -msgid "The InnoDB log file size is inadequately large." -msgstr "The InnoDB log file size is inadequately large." +msgid "" +"The InnoDB log file size is not an appropriate size, in relation to the " +"InnoDB buffer pool." +msgstr "" +"The InnoDB log file size is not an appropriate size, in relation to the " +"InnoDB buffer pool." #: libraries/advisory_rules.txt:440 #, 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" +"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 "" -"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" +"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" #: libraries/advisory_rules.txt:441 #, php-format -msgid "Your absolute InnoDB log size is %s MiB" -msgstr "Your absolute InnoDB log size is %s MiB" +msgid "" +"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " +"it should not be below 20%%" +msgstr "" +"Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " +"it should not be below 20%%" #: libraries/advisory_rules.txt:443 -msgid "InnoDB buffer pool size" -msgstr "InnoDB buffer pool size" +msgid "Max InnoDB log size" +msgstr "Max InnoDB log size" #: libraries/advisory_rules.txt:446 -msgid "Your InnoDB buffer pool is fairly small." -msgstr "Your InnoDB buffer pool is fairly small." +msgid "The InnoDB log file size is inadequately large." +msgstr "The InnoDB log file size is inadequately large." #: 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 "" +"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" + +#: libraries/advisory_rules.txt:448 +#, php-format +msgid "Your absolute InnoDB log size is %s MiB" +msgstr "Your absolute InnoDB log size is %s MiB" + +#: libraries/advisory_rules.txt:450 +msgid "InnoDB buffer pool size" +msgstr "InnoDB buffer pool size" + +#: libraries/advisory_rules.txt:453 +msgid "Your InnoDB buffer pool is fairly small." +msgstr "Your InnoDB buffer pool is fairly small." + +#: 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 " @@ -13651,7 +13640,7 @@ msgstr "" "\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-" "innodb_buffer_pool_size/\">this article" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13664,15 +13653,15 @@ msgstr "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM concurrent inserts" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Enable concurrent_insert by setting it to 1" -#: libraries/advisory_rules.txt:456 +#: 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" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB sent since last refresh" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB received since last refresh" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Server traffic (in KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Connections since last refresh" + +#~ msgid "Questions since last refresh" +#~ msgstr "Questions since last refresh" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (executed statements by the server)" + +#~ msgid "Runtime Information" +#~ msgstr "Runtime Information" + +#~ msgid "Number of data points: " +#~ msgstr "Number of data points: " + +#~ msgid "Refresh rate: " +#~ msgstr "Refresh rate: " + +#~ msgid "Run analyzer" +#~ msgstr "Run analyser" + #~ msgid "Show more actions" #~ msgstr "Show more actions" diff --git a/po/es.po b/po/es.po index 8b22ee381c..51604dcfa7 100644 --- a/po/es.po +++ b/po/es.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:59+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Spanish " -"\n" -"Language: es\n" +"Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Buscar" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Continuar" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descripción" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Comentarios de la tabla" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Columna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Predeterminado" msgid "Links to" msgstr "Enlaces a" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Sí" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabla" @@ -338,7 +338,7 @@ msgstr "Tamaño" msgid "in use" msgstr "en uso" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "en uso" msgid "Creation" msgstr "Creación" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Creación" msgid "Last update" msgstr "Última actualización" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "Tablas con seguimiento" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Base de datos" @@ -416,17 +416,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Última versión" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Creado/a" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Estado actual" @@ -441,7 +441,7 @@ msgstr "Acción" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostrar" @@ -457,11 +457,11 @@ msgstr "Borrar los datos de seguimiento para esta tabla" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "activo/a" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "no activo/a" @@ -469,11 +469,11 @@ msgstr "no activo/a" msgid "Versions" msgstr "Versiones" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Informe de seguimiento" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Instantánea de la estructura" @@ -543,45 +543,45 @@ msgstr "Utilizar OpenStreetMaps como capa base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometría" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punto %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Agregar un punto" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Cadena de líneas" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Círculo exterior" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Círculo interior" @@ -589,15 +589,15 @@ msgstr "Círculo interior" msgid "Add a linestring" msgstr "Agregar una cadena de líneas" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Agregar un círculo interior" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Agregar un polígono" @@ -736,8 +736,9 @@ msgstr "Más configuraciones" msgid "Database server" msgstr "Servidor de base de datos" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servidor" @@ -756,7 +757,7 @@ msgstr "Versión del protocolo" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Usuario" @@ -1004,12 +1005,12 @@ msgstr "Recargando Privilegios" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Cerrar" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1019,15 +1020,15 @@ msgstr "Cerrar" msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Gráfico de tráfico en vivo" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Gráfico de procesos/conexiones en vivo" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Gráfico de consultas en vivo" @@ -1038,13 +1039,14 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Otro" @@ -1059,48 +1061,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB enviados desde la última actualización" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB recibidos desde la última actualización" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tráfico del servidor (en KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Connexiones desde la última actualización" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesos" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Conexiones / Procesos" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Preguntas desde la última actualización" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Preguntas (sentencias ejecutadas por el servidor)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Estadísticas de Consulta" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configuración local de monitorización incompatible" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1112,199 +1080,204 @@ msgstr "" "monitorización. Es probable que la configuración no funcione. Reinicie la " "configuración a la predeterminada en el menú Configuración." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Eficiencia del caché de consultas" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Uso del caché de consultas" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Caché de consultas utilizado" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Uso de CPU del sistema" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memoria de sistema" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Intercambio de sistema" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Carga promedio" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memoria de búfers" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memoria utilizada" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Intercambio total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Intercambio en caché" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Intercambio utilizado" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Intercambio libre" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Conexiones" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesos" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" # singular: tabla # plural: tablas -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabla(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Configuración" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Eliminar gráfico" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Editar título y etiquetas" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Agregar gráfico a la grilla" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Agregue al menos una variable a la serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ninguna" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Reanudar monitorización" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pausar monitorización" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» y «slow_query_log» activos." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "«general_log» activo." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "«slow_query_log» activo." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» y «general_log» desactivados." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "«log_output» no está definido como TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "«log_output» está definido como TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1315,12 +1288,12 @@ msgstr "" "más de %d segundos. Es recomendable configurar «long_query_time» entre 0 y 2 " "segundos dependiendo del equipo." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» está configurado a %d segundo(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1329,30 +1302,30 @@ msgstr "" "valores predeterminados al reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Habilitar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Deshabilitar %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Definir «long_query_time» a %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1360,53 +1333,53 @@ msgstr "" "No posee permisos para cambiar estas variables. Inicie sesión con la cuenta " "root o contacte a su administrador de base de datos." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Cambiar configuraciones" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Título del gráfico" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unidad" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Del registro de consultas lentas" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Del registro general" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analizando registros" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analizando y cargando registros. Esto puede demorar." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancelar petición" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1417,7 +1390,7 @@ msgstr "" "agrupar, por lo que los demás atributos de las consultas como el tiempo de " "inicio podría diferir." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1426,101 +1399,101 @@ msgstr "" "Dado que se eligió agrupar consultas INSERT, las consultas INSERT a la misma " "tabla también fueron agrupadas sin importar los datos agregados." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Los datos del registros fueron cargados. Consultas ejecutadas en este " "período de tiempo:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Saltar a la tabla de registros" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "No se encontraron datos" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Registros analizados, pero no se encontraron datos en este período de tiempo." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analizando…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Explicar salida" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tiempo" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Tiempo total:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Perfilando resultados" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabla" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Gráfico" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Editar gráfico" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Series" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opciones de filtros para tablas de registros" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultas por palabra/expresión regular:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultas ignorando datos variables en sentencias WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Suma de filas agrupadas:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Cargando registros" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Falló la actualización del monitorizador" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1530,256 +1503,258 @@ msgstr "" "es probablemente porque expiró la sesión. Cargar la página nuevamente y " "volver a ingresar sus credenciales debería ayudar." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Cargar página nuevamente" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "No se pudo analizar el archivo de configuración. No parece ser código JSON " "válido." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "No se pudo crear la grilla de gráficos con la configuración importada. " "Reiniciando a configuración predeterminada…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importar configuración" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Seleccione el archivo que desea importar" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analizar consulta" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistema de consejos" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Posibles problemas de performance" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problema" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalles de la regla" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justificación" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variable/fórmula utilizada" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Prueba" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Cargando" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Procesando Petición" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Error al Procesar la Petición" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Código de error: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Eliminando Columna" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Añadiendo Clave Primaria" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Pulse para descartar esta notificación" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Renombrando Bases de Datos" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Recargar Base de Datos" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copiando Base de Datos" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Cambiando el Juego de caracteres" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "La tabla debe tener al menos una columna" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Insertar tablas" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Esconder índices" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Revisión de claves foráneas:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Habilitado)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Deshabilitado)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Buscando" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostrar resultados de búsqueda" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Examinando" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Borrando" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "¡La definición de una función almacenada debe contener una sentencia RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valores para la columna %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valores para una nueva columna" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Ingresar cada valor en un campo separado" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Agregar %d valor(es)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Nota: si la fila contiene múltiples tablas, van a ser combinadas en una" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Cambiar" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Tiempo de ejecución de la consulta" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1788,90 +1763,90 @@ msgstr "%d no es un número de fila válido." msgid "Save" msgstr "Guardar" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Búsqueda gráfica" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Cada punto representa una fila de datos." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, seleccione el gráfico." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Pulse el botón de restaurar ampliación para volver al estado original." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Pulse en un punto de datos para ver y posiblemente editar la fila de datos." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gráfico puede redimensionarse arrastrando la esquina inferior derecha." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Seleccionar dos columnas" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Resultados de la consulta" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copiar" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Agregar columnas" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Seleccione la clave primaria o una clave única" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1879,15 +1854,20 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Añadir una opción para la columna " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Presion la tecla de escape para cancelar la edición" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1895,29 +1875,29 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Pulsar para ordenar" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Pulsar para marcar/desmarcar" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Haga doble click para copiar el nombre de la columna" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Pulsa la flecha de la lista desplegable
para conmutar la visibilidad " "de la columna" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1926,7 +1906,7 @@ msgstr "" "la edición de la grilla y los enlaces de copiado, eliminación y edición " "pueden no funcionar luego de guardar." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1934,61 +1914,61 @@ msgstr "" "Puede editar la mayoría de las columnas
pulsando directamente en su " "contenido." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Puede editar la mayoría de las columnas
pulsando directamente en su " "contenido." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ir al enlace" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copie el nombre de la columna" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Haga click con el botón derecho sobre la columna para copiarla en el " "portapapeles." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Mastrar fila(s) de datos" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generar" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Cambar contraseña" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Más" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Mostrar panel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Esconder panel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La página solicitada no se encontró en el historial, puede haber expirado." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1998,266 +1978,266 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "actualizada" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Terminado" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hoy" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Enero" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Febrero" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Marzo" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Abril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mayo" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Junio" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Julio" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agosto" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Septiembre" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Octubre" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Noviembre" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dic" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Lunes" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Viernes" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuto" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Segundo" @@ -2311,16 +2291,16 @@ msgstr "" "Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se " "encontró «%2$s»" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "por hora" @@ -2348,7 +2328,7 @@ msgstr "Tamaño de fuente" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascendente" @@ -2357,7 +2337,7 @@ msgstr "Ascendente" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descendente" @@ -2473,7 +2453,7 @@ msgstr "¿Eliminar las coincidencias para la tabla %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Borrar" @@ -2645,7 +2625,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Matar el proceso" @@ -2702,12 +2682,13 @@ msgstr "Marcar todos" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" @@ -2715,7 +2696,7 @@ msgstr "Exportar" msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2802,16 +2783,16 @@ msgstr "No se puede leer el archivo subido (y movido)." msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Pulse en la barra para deslizarse al tope de la página" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Las cookies deben estar activadas." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Pasado este punto, debe tener Javascript activado" @@ -2823,21 +2804,21 @@ msgstr "¡No se ha definido ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalidad" @@ -2847,13 +2828,13 @@ msgstr "Cardinalidad" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Cotejamiento" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comentario" @@ -2898,7 +2879,7 @@ msgstr "Visualizar" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Estructura" @@ -2971,34 +2952,35 @@ msgstr "Eventos" msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Registro binario" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicación" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Complementos" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motores" @@ -3046,6 +3028,104 @@ msgstr "Tablas recientes" msgid "There are no recent tables" msgstr "No existen tablas recientes" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "consulta SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Gestor" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Cache de consultas" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Procesos" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Datos temporales" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Inserciones demoradas («delayed inserts»)" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Caché de claves" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Vínculos (Joins)" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Ordenación" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tablas" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordinador de transacción" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Archivos" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Vaciar el cache de todas las tablas" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Mostrar las tablas que están abiertas" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Mostrar los hosts esclavos" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Mostrar el estado del maestro" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Mostrar el estado del esclavo" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Vaciar el cache de consultas" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Estado del InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Estadísticas de Consulta" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Todas las variables de estado" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitorizar" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Consejero" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3146,7 +3226,7 @@ msgstr "Operador" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valor" @@ -3608,11 +3688,6 @@ msgstr "Una enumeración, elegida de una lista de valores definidos" msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "consulta SQL" - #: libraries/Util.class.php:710 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:292 @@ -3647,7 +3722,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Actualizar" @@ -3745,13 +3820,6 @@ msgstr "Imprimir" msgid "shared" msgstr "compartido" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tablas" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3792,11 +3860,11 @@ msgstr "Comprobar los privilegios para la base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar los privilegios" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "No se pudo leer el archivo de configuración" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3804,12 +3872,12 @@ msgstr "" "Esto generalmente significa que tiene un error de sintáxis, revisa los " "errores que se muestran a continuación." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No se pudo cargar la configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3817,40 +3885,40 @@ msgstr "" "¡DEBE tener definido [code]$cfg['PmaAbsoluteUri'][/code] en su archivo de " "configuración!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Error: no coincide un «token»" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "intento de sobre-escritura de la variable GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "posible aprovechamiento" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "telado numérico detectado" @@ -6097,8 +6165,8 @@ msgstr "" "Si se posee un nombre de usuario propio, especifícalo aquí (valor por " "defecto: [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Nombre de usuario" @@ -6764,10 +6832,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Estado del InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Uso de la reserva de búfers" @@ -7471,16 +7535,16 @@ msgid_plural "%s other results found" msgstr[0] "Se encontró %s resultado adicional" msgstr[1] "Se encontraron %s resultados adicionales" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtrar bases de datos por nombre" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Vaciar filtro rápido" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtrar elementos por nombre" @@ -7578,17 +7642,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Únicamente la estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Estructura y datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Solamente datos" @@ -7988,8 +8052,7 @@ msgstr "Tipos MIME disponibles" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Servidor" @@ -8594,7 +8657,7 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variable" @@ -9109,7 +9172,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9823,7 +9886,7 @@ msgstr "Agregar prefijo a la tabla" msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Ninguna" @@ -10171,7 +10234,7 @@ msgstr "Alterne entre pequeño y grande" msgid "Toggle relation lines" msgstr "Conmutar líneas de relación" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" @@ -10238,31 +10301,31 @@ msgstr "Se creó la página" msgid "Page creation failed" msgstr "Falló la creación de la página" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Página" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importar de la página seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportar a la página seleccionada" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Crear una página y exportar a ella" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nuevo nombre de página: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exporte/Importe a escala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recomendado" @@ -10386,15 +10449,11 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Archivos" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -10479,7 +10538,7 @@ msgstr "Módulo" msgid "Library" msgstr "Biblioteca" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versión" @@ -10539,10 +10598,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Mostrar el estado del maestro" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Mostrar esclavos conectados" @@ -10687,12 +10742,12 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10700,119 +10755,90 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status.php:657 -msgid "Handler" -msgstr "Gestor" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Cache de consultas" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Este servidor MySQL ha estado activo durante %1$s. Se inició en %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Procesos" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Este servidor MySQL trabaja como maestro y esclavo en un " +"proceso de replicación." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Datos temporales" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Este servidor MySQL trabaja como maestro en un proceso de " +"replicación." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Inserciones demoradas («delayed inserts»)" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Este servidor MySQL trabaja como esclavo en un proceso de " +"replicación." -#: server_status.php:663 -msgid "Key cache" -msgstr "Caché de claves" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Para más información sobre el estado de replicación en el servidor, revise " +"la sección sobre replicación." -#: server_status.php:664 -msgid "Joins" -msgstr "Vínculos (Joins)" +#: server_status.php:122 +msgid "Replication status" +msgstr "Estado de replicación" -#: server_status.php:666 -msgid "Sorting" -msgstr "Ordenación" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"En un servidor que se encuentra ejecutando procesos, los contadores de bytes " +"pueden excederse. Por tanto, las estadísticas reportadas por el servidor " +"MySQL pueden ser incorrectas." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordinador de transacción" +#: server_status.php:149 +msgid "Received" +msgstr "Recibido" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Vaciar el cache de todas las tablas" +#: server_status.php:168 +msgid "Sent" +msgstr "Enviado" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Mostrar las tablas que están abiertas" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Mostrar los hosts esclavos" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Intentos fallidos" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Mostrar el estado del esclavo" +#: server_status.php:253 +msgid "Aborted" +msgstr "Abortado" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Vaciar el cache de consultas" +#: server_status.php:313 +msgid "ID" +msgstr "Identificación" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Información acerca del tiempo de ejecución del proceso principal" +#: server_status.php:329 +msgid "Command" +msgstr "Comando" -#: server_status.php:830 -msgid "All status variables" -msgstr "Todas las variables de estado" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitorizar" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Consejero" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Cantidad de datos: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Velocidad de actualización: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtros" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Que contengan la palabra:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Mostrar sólo valores de alerta" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrar por categoría..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Mostrar valores sin formato" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Enlaces relacionados:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Ejecutar analizador" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instrucciones" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10820,7 +10846,7 @@ msgstr "" "El sistema de consejos puede proveer recomendaciones para las variables del " "servidor analizando las variables de estado del servidor." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10830,7 +10856,7 @@ msgstr "" "cálculos simples y reglas generales que no serán necesariamente válidas en " "su sistema." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10840,7 +10866,7 @@ msgstr "" "cambiando (leyendo la documentación) y cómo revertir el cambio. Ajustes " "incorrectos pueden tener un gran efecto negativo en performance." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10850,100 +10876,252 @@ msgstr "" "la vez, observar y medir la base de datos, y revertir el cambio si no hubo " "una mejora diferenciable." -#: server_status.php:1003 +#: server_status_monitor.php:472 +msgid "Start Monitor" +msgstr "Iniciar monitorización" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "Instrucciones/Configuración" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "Se finalizó la reorganización/edición de gráficos" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Agregar gráfico" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "Reorganizar/editar gráficos" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Velocidad de actualización" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Columnas del gráfico" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "Ordenación de los gráficos" + +#: server_status_monitor.php:524 +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 "" +"La ordenación de los gráficos es almacenada en el almacenamiento local del " +"navegador. Sería recomendable exportarla si tiene una configuración " +"complicada." + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Restaurar valor predeterminado" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "Instrucciones de monitorización" + +#: server_status_monitor.php:546 +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 "" +"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " +"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " +"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " +"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " +"produce mucha información y aumenta la carga en el servidor hasta en un 15%" + +#: server_status_monitor.php:558 +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 "" +"Desafortunadamente, su servidor de base de datos no soporta almacenar " +"registros a una base de datos, lo que es un requisito para analizar " +"registros de la base de datos con phpMyAdmin. Almacenar registros a una " +"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " +"utilizar las funcionalidades para graficación del servidor." + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "Utilizando el monitorizador:" + +#: server_status_monitor.php:576 +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 "" +"El navegador actualizará a intervalos regulares todos los gráficos " +"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " +"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " +"de rueda dentada en cada gráfico." + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" +"Para mostrar las consultas de los registros, seleccione el intervalo de " +"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " +"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " +"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " +"SELECT para analizarla." + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "Notar que:" + +#: server_status_monitor.php:595 +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 "" +"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " +"También esté al tanto que generar estadísticas de los registros es una tarea " +"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " +"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " +"que ya no se necesite monitorizar." + +#: server_status_monitor.php:610 +msgid "Preset chart" +msgstr "Gráfico predefinido" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "Variable(s) de estado" + +#: server_status_monitor.php:617 +msgid "Select series:" +msgstr "Seleccionar serie:" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "Monitorizaciones comunes" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "o ingrese el nombre de variable:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "Mostrar como un valor diferencial" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "Aplicar una división" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "Agregar unidad a los valores" + +#: server_status_monitor.php:659 +msgid "Add this series" +msgstr "Agregar esta serie" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "Vaciar serie" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "Series en el gráfico:" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "Estadísticas de registros" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Rango de tiempo seleccionado:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Elegir el registro del que desea generar estadísticas." + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "Los resultados se agruparán por el texto de la consulta." + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Analizador de consultas" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas desde el inicio: %s" -#: server_status.php:1044 +#: server_status_queries.php:103 msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: server_status.php:1047 +#: server_status_queries.php:106 msgid "#" msgstr "#" -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Tráfico de red desde el inicio: %s" +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtros" -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Este servidor MySQL ha estado activo durante %1$s. Se inició en %2$s." +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Que contengan la palabra:" -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Este servidor MySQL trabaja como maestro y esclavo en un " -"proceso de replicación." +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Mostrar sólo valores de alerta" -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Este servidor MySQL trabaja como maestro en un proceso de " -"replicación." +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrar por categoría..." -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Este servidor MySQL trabaja como esclavo en un proceso de " -"replicación." +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Mostrar valores sin formato" -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Para más información sobre el estado de replicación en el servidor, revise " -"la sección sobre replicación." +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Enlaces relacionados:" -#: server_status.php:1171 -msgid "Replication status" -msgstr "Estado de replicación" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"En un servidor que se encuentra ejecutando procesos, los contadores de bytes " -"pueden excederse. Por tanto, las estadísticas reportadas por el servidor " -"MySQL pueden ser incorrectas." - -#: server_status.php:1191 -msgid "Received" -msgstr "Recibido" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Enviado" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Número máx. de conexiones concurrentes" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Intentos fallidos" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:1322 -msgid "ID" -msgstr "Identificación" - -#: server_status.php:1338 -msgid "Command" -msgstr "Comando" - -#: server_status.php:1527 +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10951,11 +11129,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10965,19 +11143,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10990,11 +11168,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11002,7 +11180,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11010,7 +11188,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11018,23 +11196,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11045,7 +11223,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11056,7 +11234,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11065,7 +11243,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11075,7 +11253,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11084,7 +11262,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11097,7 +11275,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11110,37 +11288,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11150,7 +11328,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11162,11 +11340,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11175,7 +11353,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11183,11 +11361,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11195,7 +11373,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11210,55 +11388,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11266,35 +11444,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11303,52 +11481,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11357,7 +11535,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11365,7 +11543,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11375,15 +11553,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:1597 +#: server_status_variables.php:593 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11394,7 +11572,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11402,22 +11580,22 @@ msgstr "" "Los fallos en el caché de claves es calculado como la tasa de lecturas " "físicas comparadas con los pedidos de lectura (valor calculado)" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor " "calculado)" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11428,7 +11606,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11436,11 +11614,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11448,21 +11626,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:1611 +#: server_status_variables.php:645 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 " @@ -11472,19 +11650,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11497,7 +11675,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11505,20 +11683,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11526,13 +11704,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11541,7 +11719,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11549,19 +11727,19 @@ msgstr "" "El número de vínculos («joins») con rangos en la primera tabla (normalmente " "no es crítico aún cuando sea grande)." -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11569,12 +11747,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11582,14 +11760,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11599,23 +11777,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11627,7 +11805,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11637,11 +11815,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11653,221 +11831,14 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:1639 +#: server_status_variables.php:755 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "Iniciar monitorización" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "Instrucciones/Configuración" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "Se finalizó la reorganización/edición de gráficos" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Agregar gráfico" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "Reorganizar/editar gráficos" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Velocidad de actualización" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Columnas del gráfico" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "Ordenación de los gráficos" - -#: server_status.php:1851 -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 "" -"La ordenación de los gráficos es almacenada en el almacenamiento local del " -"navegador. Sería recomendable exportarla si tiene una configuración " -"complicada." - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Restaurar valor predeterminado" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "Instrucciones de monitorización" - -#: server_status.php:1857 -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 "" -"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " -"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " -"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " -"produce mucha información y aumenta la carga en el servidor hasta en un 15%" - -#: server_status.php:1862 -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 "" -"Desafortunadamente, su servidor de base de datos no soporta almacenar " -"registros a una base de datos, lo que es un requisito para analizar " -"registros de la base de datos con phpMyAdmin. Almacenar registros a una " -"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " -"utilizar las funcionalidades para graficación del servidor." - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "Utilizando el monitorizador:" - -#: server_status.php:1877 -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 "" -"El navegador actualizará a intervalos regulares todos los gráficos " -"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " -"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " -"de rueda dentada en cada gráfico." - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" -"Para mostrar las consultas de los registros, seleccione el intervalo de " -"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " -"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " -"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " -"SELECT para analizarla." - -#: server_status.php:1886 -msgid "Please note:" -msgstr "Notar que:" - -#: server_status.php:1888 -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 "" -"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " -"También esté al tanto que generar estadísticas de los registros es una tarea " -"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " -"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " -"que ya no se necesite monitorizar." - -#: server_status.php:1902 -msgid "Preset chart" -msgstr "Gráfico predefinido" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "Variable(s) de estado" - -#: server_status.php:1908 -msgid "Select series:" -msgstr "Seleccionar serie:" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "Monitorizaciones comunes" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "o ingrese el nombre de variable:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "Mostrar como un valor diferencial" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "Aplicar una división" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "Agregar unidad a los valores" - -#: server_status.php:1944 -msgid "Add this series" -msgstr "Agregar esta serie" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "Vaciar serie" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "Series en el gráfico:" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "Estadísticas de registros" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Rango de tiempo seleccionado:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Elegir el registro del que desea generar estadísticas." - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "Los resultados se agruparán por el texto de la consulta." - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Analizador de consultas" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "Falló la definición de la variable" @@ -12469,26 +12440,26 @@ msgstr "Restricción de clave foránea" msgid "Tracking report for table `%s`" msgstr "Informe de seguimiento para la tabla `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Seguimiento para %1$s desactivado en versión %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Seguimiento de %1$s activado en versión %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Sentencias SQL ejecutadas." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12496,117 +12467,117 @@ msgstr "" "Puede ejecutar el volcado creando y utilizando una base de datos temporal. " "Asegúrese de tener los privilegios para poder hacerlo." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Comenta estas dos líneas si no las necesitas." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Sentencias SQL exportadas. Copia el volcado o ejecútalo." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Errores de consulta" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulación de seguimiento de datos eliminada exitosamente" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Realizando el seguimiento de las sentencias" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Muestra %1$s con fechas de %2$s a %3$s por parte del usuario %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "No hay datos" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Fecha" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Sentencia de definición de datos" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Sentencia de manipulación de datos" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Volcado SQL (descarga de archivo)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Volcado SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Esta opción sustituirá tu tabla y los datos que contiene." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Ejecución SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Mostrar versiones" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar el seguimiento para %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Desactivar ahora" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Activar el seguimiento para %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Activar ahora" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Hacer un seguimiento de estas sentencias de definición de datos:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Crear versión" @@ -12760,11 +12731,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "«long_query_time» está configurado a %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Registros de consultas lentas" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "El registro de consultas lentas está desactivado." @@ -12780,15 +12751,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "«slow_query_log» está definido como 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. " +"Esto ayudará a analizar consultas con mala performance." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "«slow_query_log» está definido como 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Serie de versiones" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "La versión del servidor MySQL es menor a 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12796,22 +12785,22 @@ msgstr "" "Debería actualizar ya que MySQL 5.1 tiene mejor performance, y ésta es aún " "mejor en MySQL 5.5." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versión actual: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versión menor" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "Versión menor a 5.1.30 (la primer versión de 5.1 disponible públicamente)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12819,25 +12808,25 @@ msgstr "" "Debería actualizar ya que versiones más recientes de MySQL 5.1 tienen mejor " "performance, y ésta es aún mejor en MySQL 5.5." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" "Versión menor a 5.5.8 (la primer versión de 5.5 disponible públicamente)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Debería actualizar a una versión estable de MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribución" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Versión compilada de código fuente, no un ejecutable MySQL oficial." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12848,45 +12837,45 @@ msgstr "" "MySQL oficiales, no para los paquetes de las distribuciones (como RedHat, " "Debian/Ubuntu, etc.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" "se encontró 'fuente' («source») en el comentario de la versión " "(«version_comment»)" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "El manual MySQL sólo es preciso para los ejecutables MySQL oficiales." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "La documentación de Percona se encuentra en http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" "se encontró 'percona' en el comentario de la versión («version_comment»)" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "La documentación de Drizzle se encuentra en http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" "La cadena de versión (%s) coincide con el esquema de versionado de Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arquitectura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL no fue compilado como un paquete de 64-bits." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12897,20 +12886,20 @@ msgstr "" "MySQL no pueda acceder a toda la memoria. Podría llegar a desear instalar la " "versión de 64-bits de MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Memoria disponible en este equipo: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Caché de consultas desactivado" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "El caché de consultas no está habilitado." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12922,21 +12911,21 @@ msgstr "" "un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar " "que: si está utilizando memcached ignore esta recomendación." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "«query_cache_size» está definido como 0 o «query_cache_type» está definido " "como 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Método de caché de consultas" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Método de caché sub-óptimo." -#: libraries/advisory_rules.txt:157 +#: 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 en lugar del caché " "de consultas de MySQL, especialmente si tiene muchos esclavos." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12957,36 +12946,36 @@ msgstr "" "El caché de consultas está activado y el servidor recibe %d consultas por " "segundo. Esta regla se dispara si hay más de 100 consultas por segundo." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Eficiencia del caché de consultas (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "El caché de consultas no está ejecutando eficientemente, tiene una baja tasa " "de aciertos." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Considere aumentando «query_cache_limit»." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "La tasa de aciertos actual del caché de consultas %s%% es menor a 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Uso del caché de consultas" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Menos del 80%% del caché de consultas está siendo utilizado." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12994,7 +12983,7 @@ msgstr "" "Esto puede ser porque el valor de «query_cache_limit» es muy pequeño. Vaciar " "el caché de consultas podría ayudar también." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -13003,15 +12992,15 @@ msgstr "" "La tasa actual de memoria libre del caché de consultas respecto del tamaño " "total es %s%%. Debería ser mayor al 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Fragmentación del caché de consultas" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "El caché de consultas está fragmentado considerablemente." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13034,7 +13023,7 @@ msgstr "" "«qcache_queries_in_cache» ((tamaño_caché - memoria_libre_caché) / " "cantidad_consultas_en_caché)" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13045,11 +13034,11 @@ msgstr "" "significa que el caché de consulta es un patrón alternante de bloques " "utilizados y libres. Este valor debería ser menor al 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Reducciones al caché de consultas por falta de memoria" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13057,7 +13046,7 @@ msgstr "" "Las consultas en caché son eliminadas debido a la poca cantidad de memoria " "de caché para el caché de consultas." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13068,7 +13057,7 @@ msgstr "" "por lo que se recomienda hacerlo en pequeñas cantidades y monitorizar los " "resultados." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13077,11 +13066,11 @@ msgstr "" "La tasa de consultas eliminadas respecto de las agregadas es %s%%. Mejor es " "mientras menor sea este valor (el límite de disparo de la regla es: 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Tamaño máximo del caché de consultas" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13089,30 +13078,30 @@ msgstr "" "El tamaño del caché de consultas es mayor a 128 MiB. Grandes cachés pueden " "causar grandes sobrecargas para manterlo." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "" "Dependiendo de su entorno, podría aumentar la performance reducir este valor." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Tamaño del caché de consultas: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Tamaño mínimo de resultado en caché de consultas" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "El tamaño máximo del conjunto de resultados en el caché de consultas es el " "valor predeterminado de 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13133,19 +13122,19 @@ msgstr "" "frecuentemente por actualizaciones a la tabla) aumentar «query_cache_limit» " "podría reducir la eficiencia." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "«query_cache_limit» está definido a 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Porcentaje de ordenaciones que causan tablas temporales" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Demasiadas ordenaciones causan tablas temporales." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13153,7 +13142,7 @@ msgstr "" "Considere aumentar «sort_buffer_size» y/o «read_rnd_buffer_size» dependiendo " "de los límites de memoria del sistema" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13162,11 +13151,11 @@ msgstr "" "%s%% de todas las ordenaciones causan tablas temporales, este valor debería " "de ser menor a 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Tasa de ordenaciones que causan tablas temporales" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13174,15 +13163,15 @@ msgstr "" "Promedio de tablas temporales: %s, este valor debería de ser menor a 1 por " "hora." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Filas ordenadas" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Hay demasiadas filas siendo ordenadas." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13194,20 +13183,20 @@ msgstr "" "de ordenación utilicen campos indexados en la cláusula «ORDER BY», lo que " "resultará en una ordenación más rápida" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Promedio de filas ordenadas: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Tasa de uniones («JOIN») sin índices" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Hay demasiadas uniones («JOIN») sin índices." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13216,22 +13205,22 @@ msgstr "" "completos sobre tablas. Agregar índices a los campos utilizados en las " "condiciones de la unión las acelerarán en gran medida" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a " "1 por hora" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Tasa de lectura del primer índice" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "La tasa de lectura del primer índice es alta." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13248,22 +13237,22 @@ msgstr "" "índices. De otra forma, la cantidad de escrutinios completos de índices sólo " "puede ser reducida re-escribiendo las consultas." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Promedio de escrutinios de índices: %s, este valor debería de ser menor a 1 " "por hora" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Tasa de lectura de una posición fija" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "La tasa de lecutura de datos de una posición fija es alta." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13273,7 +13262,7 @@ msgstr "" "un escrutinio completo de tablas, incluyendo consultas con uniones («JOIN») " "que no utilizan índices. Agregue índices donde sea aplicable." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13282,15 +13271,15 @@ msgstr "" "Tasa de lectura de una posición fija: %s, este valor debería de ser menor a " "1 por hora" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Tasa de lectura de la siguiente fila de una tabla" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "La tasa de lecutra de la siguiente fila de una tabla es alta." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13298,7 +13287,7 @@ msgstr "" "Esto indica que muchas consultas están realizando escrutinios completos de " "tablas. Agregue índices donde sea aplicable." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13306,15 +13295,15 @@ msgstr "" "Tasa de lectura de la siguiente fila de una tabla: %s, este valor debería de " "ser menor a 1 por hora" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "«tmp_table_size» vs. «max_heap_table_size»" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "«tmp_table_size» y «max_heap_table_size» no son iguales." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13326,16 +13315,16 @@ msgstr "" "Si desea aumentar el límite de tamaño de tablas en memoria deberá también " "aumentar el otro valor." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Porcentaje de tablas temporales en disco" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13343,7 +13332,7 @@ msgstr "" "Muchas tablas temporales están siendo escritas la disco en lugar de ser " "mantenidas en memoria." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13361,7 +13350,7 @@ msgstr "" "bytes) como se menciona al comienzo del artículo de Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13370,11 +13359,11 @@ msgstr "" "%s%% de todas las tablas temporales son escritas al disco, este valor " "debería de ser menor a 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Tasa de tablas temporales en el disco" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13392,7 +13381,7 @@ msgstr "" "mayor a 512 bytes) como se menciona en la documentación de MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13401,17 +13390,17 @@ msgstr "" "La tasa de tablas temporales escritas al disco: %s, este valor debería ser " "menor a 1 por hora" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Tamaño de búfer de claves MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "El búfer de claves no fue inicializado. No se utilizará un caché de claves " "MyISAM." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13419,21 +13408,21 @@ msgstr "" "Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es " "un buen comienzo." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "«key_buffer_size» es 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Porcentaje máximo del búfer de claves MyISAM usado en algún momento" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "El porcentaje del búfer de claves MyISAM (caché de índices) es bajo." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13443,7 +13432,7 @@ msgstr "" "nuevamente para ver si se han eliminado índices o sus consultas y las " "expectativas de uso de los índices." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13451,46 +13440,46 @@ msgstr "" "Maxímo %% de búfer de claves MyISAM utilizado en algún momento: %s%%, este " "valor debería ser mayor a 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Porcentaje de búfer de claves MyISAM utilizado" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% de búfer de claves MyISAM utilizado: %s%%, este valor debería ser mayor a " "95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Porcentaje de índices leídos desde memoria" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" "El porcentaje de índices que utilizan el búfer de claves MyISAM es bajo." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Podría necesitar aumentar «key_buffer_size»." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Índices leídos desde memoria: %s%%, este valor debería ser mayor a 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Tasa de apertura de tablas" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "La tasa de apertura de tablas es alta." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13498,19 +13487,19 @@ msgstr "" "Abrir tablas necesita E/S en disco, lo cual es costoso. Aumentar " "«table_open_cache» podría evitarlo." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Tasa de apertura de tablas: %s, este valor debería ser menor a 10 por hora" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Porcentaje de uso del límite de archivos de abiertos" # El mensaje de error llegará de PHP o MySQL por lo que no me parece correcto # traducirlo -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13518,7 +13507,7 @@ msgstr "" "La cantidad de archivos abiertos se acerca al máximo permitido. Podría " "llegar a obtener un error al respecto («Too many open files»)." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13526,64 +13515,64 @@ msgstr "" "Considere aumentar «open_files_limit», y revise el registro de errores al " "reiniciar luego de cambiar esta variable." -#: libraries/advisory_rules.txt:332 +#: 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 "" "La cantidad de archivos abiertos es %s%% del límite. Debería ser menor a 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Tasa de apertura de archivos" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "La tasa de apertura de archivos es alta." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Tasa de apertura de archivos: %s, este valor debería ser menor a 5 por hora" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Porcentaje de bloqueos de tabla inmediatos" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Demasiados bloqueos de tablas no fueron provistos inmediatamente." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimice las consultas y/o utilice InnoDB para reducir el tiempo de espera " "para bloqueos." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Bloqueos de tabla inmediatos: %s%%, este valor debería ser mayor a 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Tasa de espera para bloqueos de tablas" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Tasa de espera para bloqueos de tablas: %s, este valor debería ser menor a 1 " "por hora" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Caché de hilos" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13591,44 +13580,44 @@ msgstr "" "El caché de hilos está desactivado, esto resulta en mayor sobrecarga en las " "nuevas conexiones a MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "El caché de hilos está configurado a 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Porcentaje de efectividad del caché de hilos" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "El caché de hilos no es eficiente." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Aumente «thread_cache_size»." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Tasa de efectividad del caché de hilos: %s%%, este valor debería ser mayor a " "80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Hilos que inician ejecución lentamente" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Hay demasiados hilos que inician ejecución lentamente." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13637,20 +13626,20 @@ msgstr "" "una operación relativamente sencilla. Debería de monitorizar la carga sobre " "el sistema cuidadosamente." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s hilo(s) tardaron más de %s segundos en iniciar, debería de ser 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Tiempo de inicio lento" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "«slow_launch_threads» es mayor a 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13658,16 +13647,16 @@ msgstr "" "Configure «slow_launch_time» a 1 ó 2 segundos para contar correctamente los " "hilos que inician ejecución lentamente" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "«slow_launch_time» está configurado a %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Porcentaje de conexiones utilizadas" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13675,7 +13664,7 @@ msgstr "" "El máximo de conexiones utilizadas simultáneamente está cercano al valor de " "«max_connections»." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13686,22 +13675,22 @@ msgstr "" "más rápido. Asegúrese que su código cierre los manejadores de base de datos " "apropiadamente." -#: libraries/advisory_rules.txt:390 +#: 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» es %s%% de «max_connections», debería ser menor a 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Porcentaje de conexiones abandonadas" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Demasiadas conexiones son abandonadas." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Este artículo podría ser de " "ayuda para rastrear el motivo de las mismas." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% de todas las conexiones son abandonadas. Este valor debería ser menor a " "1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Tasa de conexiones abandonadas" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13732,15 +13721,15 @@ msgstr "" "La tasa de conexiones abandonadas es %s, este valor debería ser menor a 1 " "por hora" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Porcentaje de clientes abandonados" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Demasiados clientes son abandonados." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13751,45 +13740,45 @@ msgstr "" "código no libera el manejador de la base de datos correctamente. Revise su " "conexión de red y código." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%" "%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Tasa de clientes abandonados" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "La tasa de clientes abandonados es %s, este valor debería ser menor a 1 por " "hora" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "¿InnoDB está desactivado?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "No posee InnoDB activado." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB es, usualmente, la mejor opción como motor para tablas." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "«have_innodb» está configurado como 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Tamaño de registro InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13797,7 +13786,7 @@ msgstr "" "El tamaño del archivo de registro InnoDB no parece ser apropiado en relación " "a la reserva de búfers InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13822,7 +13811,7 @@ msgstr "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">este artículo" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13831,15 +13820,15 @@ msgstr "" "El tamaño del archivo de registros InnoDB es %s%% del tamaño de la reserva " "de búfers InnoDB, no debería ser menor a 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Tamaño máximo del registro InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "El tamaño del archivo de registros InnoDB es inadecuadamente grande." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13864,20 +13853,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">este artículo" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "El tamaño absoluto del archivo de registros InnoDB es %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Tamaño de la reserva de búfers InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Su reserva de búfers InnoDB es relativamente pequeña." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13903,7 +13892,7 @@ msgstr "" "Revise también este artículo" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13916,15 +13905,15 @@ msgstr "" "esto puede ser perfectamente adecuado para su sistema si no posee muchas " "tablas InnoDB o tiene otros servicios en el mismo equipo." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Inserciones MyISAM concurrentes" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Active «concurrent_insert» definiéndolo como 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also documentación MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB enviados desde la última actualización" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB recibidos desde la última actualización" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tráfico del servidor (en KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Connexiones desde la última actualización" + +#~ msgid "Questions since last refresh" +#~ msgstr "Preguntas desde la última actualización" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Preguntas (sentencias ejecutadas por el servidor)" + +#~ msgid "Runtime Information" +#~ msgstr "Información acerca del tiempo de ejecución del proceso principal" + +#~ msgid "Number of data points: " +#~ msgstr "Cantidad de datos: " + +#~ msgid "Refresh rate: " +#~ msgstr "Velocidad de actualización: " + +#~ msgid "Run analyzer" +#~ msgstr "Ejecutar analizador" + #~ msgid "Show more actions" #~ msgstr "Mostrar más acciones" diff --git a/po/et.po b/po/et.po index d3695c9fc4..637a7e3440 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-21 15:53+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Estonian Sätete menüüst." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Päringu vahemälu kasutegur" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Päringu vahemälu kasutus" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Kasutatud päringu vahemälu" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Süsteemi CPU kasutus" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Süsteemimälu" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Süsteemisaale" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Keskmine koormus" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Kogumälu" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Puhverdatud mälu" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Puhverdatud mälu" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Vaba mälu" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Kasutatud mälu" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Kogusaale" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Puhverdatud saale" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Kasutatud saale" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Vaba saale" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Saadetud baidid" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Ühendused" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Protsessid" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabel(it)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Päringud" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Sätted" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Kustuta diagramm" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Muuda pealkirja ja nimesid" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Lisa diagramm ruudustikku" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Palun lisa seeriasse vähemalt üks muutuja" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Puudub" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Jätka jälgimist" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Peata jälgimine" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log on lubatud." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log on lubatud." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log on lubatud." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log on keelatud." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output väärtuseks on määratud TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1308,12 +1281,12 @@ msgstr "" "jaoks kulub vähemalt %d sekundit. Sõltuvalt sinu süsteemist on soovitatav " "long_query_time väärtuseks seada 0-2 sekundit." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time väärtuseks on määratud %d sekund(it)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1322,30 +1295,30 @@ msgstr "" "vaikimisi olekusse:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Määra log_output väärtuseks %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Luba %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Keela %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Muuda long_query_time väärtuseks %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1353,53 +1326,53 @@ msgstr "" "Sa ei saa neid muutujaid muuta. Logi sisse kasutajana 'root' või võta " "ühendust oma andmebaasi administraatoriga." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Muuda sätteid" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagrammi pealkiri" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Eraldaja" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Jagatud %s-ga" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Ühik" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Aeglasest logist" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Üldisest logist" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Logide analüüsimine" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Logide analüüsimine ja laadimine. See võib võtta natuke aega." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Loobu taotlusest" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1409,7 +1382,7 @@ msgstr "" "kasutatakse rühmitamise kriteeriumina ainult SQL päringut, seega päringute " "atribuudid (nt. algusaeg) võivad olla erinevad." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1418,99 +1391,99 @@ msgstr "" "Kuniks valitud on INSERT päringute rühmitamine, rühmitatakse kokku INSERT " "päringud samasse tabelisse, sõltumata lisatud andmetest." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Logi andmed on laetud. Päringud sooritatakse selle ajavahemiku jooksul:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Mine logi tabelisse" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Andmeid ei leitud" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Logi on analüüsitud, kuid sellest ajavahemikust andmeid ei leitud." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analüüsimine…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Aeg" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Aeg kokku:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profileerimise tulemused" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagramm" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Muuda diagrammi" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Seeria" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Logi tabeli filtri valikud" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtreeri päringuid sõna/reg.avaldise alusel:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Rühmita päringud, ignoreerides WHERE klauslite muutuja andmeid" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Rühmitatud ridade summa:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Kokku:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Logide laadimine" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Jälgija värskendamine ebaõnnestus" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1519,253 +1492,255 @@ msgstr "" "Uute diagrammi andmete taotlemisel naases server vale vastusega. Enamasti on " "selle põhjuseks aegunud seanss. Lae leht uuesti ja logi sisse." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Lae leht uuesti" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Mõjutatud read:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Seadistusfaili parsimine ebaõnnestus. Tundub, et see pole õige JSON kood." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Imporditud seadistusega diagrammi ruudustiku loomine ebaõnnestus. " "Lähtestamine vaikimisi seadistusse…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Impordi jälgimise seadistus" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Palun vali fail, mida soovid importida" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analüüsi päringut" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Kontrollsüsteem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Võimalikud jõudlusprobleemid" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Probleem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Soovitus" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Reegli detailid" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Põhjendus" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Kasutatud muutuja / valem" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Testi" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Laadimine" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Taotluse töötlemine" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Viga taotluse töötlemisel" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Veeru kustutamine" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Primaarvõtme lisamine" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Selle teate sulgemiseks kliki sellel" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Andmebaaside ümbernimetamine" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Lae andmebaas uuesti" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Andmebaasi kopeerimine" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabelil peab olema vähemalt üks veerg" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Lisa tabel" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Peida indeksid" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Näita indekseid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Võõrvõtme kontroll:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Lubatud)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Keelatud)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Otsimine" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Peida otsingu tulemused" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Näita otsingu tulemusi" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Vaatamine" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Kustutamine" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET muutja" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s veeru väärtused" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Uue veeru väärtused" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Sisesta iga väärtus eraldi väljale" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Lisa %d väärtus(t)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Märkus: Kui fail sisaldab mitut tabelit, siis need liidetakse kokku" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Peida päringu kast" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Muuda" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Päringu sooritamise aeg" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1774,92 +1749,92 @@ msgstr "%d ei ole õige reanumber." msgid "Save" msgstr "Salvesta" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Peida otsingu kriteerium" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Suurenda otsingut" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Iga punkt tähendab andmete rida." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Kursori üleliigutamisel näitab punkt selle nime." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "" "Vajuta suurenduse lähtestamise nuppu, et pöörduda tagasi algsesse olekusse." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliki andmepunktil, et vaadata ja vajadusel muuta andmete rida." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Diagrammi suurust saab muuta, kui lohistada seda alumist paremat nurkapidi." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Vali kaks veergu" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Vali kaks erinevat veergu" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Päringu tulemused" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopeeri" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Lisa veergusid" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Vali osutatud võti" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Vali võõrvõti" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarvõti või unikaalne nimi" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Vali veerg, mida näidata" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1867,15 +1842,20 @@ msgstr "" "Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad " "kaotsi. Kas soovid jätkata?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Vali veerule valik " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Muutmisest loobumiseks vajuta ESC" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1883,27 +1863,27 @@ msgstr "" "Sa muutsid mõningaid andmed ja neid pole veel salvestatud. Oled kindel, et " "soovid enne andmete salvestamist sellelt lehelt lahkuda?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Järjekorra muutmiseks lohista" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Sorteerimiseks kliki" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Valimiseks/mittevalimiseks kliki" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Veeru nime kopeerimiseks topeltklõpsa sellel" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1912,7 +1892,7 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud võimalused " "ei pruugi pärast salvestamist toimida." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1922,63 +1902,63 @@ msgid "" msgstr "" "Sa saad ka muuta enamikke veergusid,
kui klikid otse nende sisu peale." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Sa saad ka muuta enamikke veergusid,
kui klikid otse nende sisu peale." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Mine lingile" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopeeri veeru nimi" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Näita andmete rida/ridu" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Rohkem" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Näita kõiki" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Peida indeksid" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1988,266 +1968,266 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "ajakohane" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Valmis" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Täna" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Jaanuar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Veebruar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Märts" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Aprill" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juuni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juuli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "August" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Oktoober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dets" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Reede" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Näd" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Tund" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekund" @@ -2297,16 +2277,16 @@ msgstr "Ootamatud sümbolid %s. real" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "sekundis" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minutis" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "tunnis" @@ -2334,7 +2314,7 @@ msgstr "Fondi kõrgus" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Kasvav" @@ -2343,7 +2323,7 @@ msgstr "Kasvav" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Kahanev" @@ -2459,7 +2439,7 @@ msgstr "Kustutada %s tabeli vasted?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Kustuta" @@ -2630,7 +2610,7 @@ msgid "The row has been deleted" msgstr "Rida on kustutatud" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Sulge" @@ -2686,12 +2666,13 @@ msgstr "Vali kõik" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" @@ -2699,7 +2680,7 @@ msgstr "Ekspordi" msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2782,16 +2763,16 @@ msgstr "Ei saa lugeda (liigutatud) üleslaetud faili." msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmini aken" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Küpsised peavad olema lubatud." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript peab olema lubatud" @@ -2803,21 +2784,21 @@ msgstr "Indeksit pole määratud!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Hulk" @@ -2827,13 +2808,13 @@ msgstr "Hulk" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Kodeering" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentaar" @@ -2878,7 +2859,7 @@ msgstr "Vaade" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktuur" @@ -2951,34 +2932,35 @@ msgstr "Sündmused" msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Kasutajad" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binaarne logi" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Paljundamine" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Pluginad" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Mootorid" @@ -3026,6 +3008,104 @@ msgstr "Hiljutised tabelid" msgid "There are no recent tables" msgstr "Hiljutisi tabeleid pole" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL päring" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Töötleja" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Päringute puhver" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Lõimud" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Ajutised andmed" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Viivitatud lisamised" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Võtme puhver" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Liitmised" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sorteerimine" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabelid" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Ülekande koordineerija" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Faili" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Tühjenda (sulge) kõik tabelid" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Näita avatud tabeleid" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Näita alluvaid hoste" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Näita ülema staatust" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Näita alluva staatust" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Tühjenda päringute puhver" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB staatus" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Päringu statistika" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Kõik staatuse muutujad" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Jälgija" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Kontrollsüsteem" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3121,7 +3201,7 @@ msgstr "Operaator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Väärtus" @@ -3568,11 +3648,6 @@ msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast" msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL päring" - #: libraries/Util.class.php:710 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:292 @@ -3607,7 +3682,7 @@ msgid "Create PHP Code" msgstr "Loo PHP kood" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Uuenda" @@ -3703,13 +3778,6 @@ msgstr "Prindi" msgid "shared" msgstr "jagatud" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabelid" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3750,11 +3818,11 @@ msgstr "Kontrolli "%s" andmebaasi õigusi." msgid "Check Privileges" msgstr "Kontrolli õigusi" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Seadistuse faili lugemine ebaõnnestus" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3762,12 +3830,12 @@ msgstr "" "See tähendab tavaliselt, et selles on süntaksi viga, palun kontrolli kõiki " "allolevaid vigu." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ei saanud laadida vaikimisi seadistuse faili kohast: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3775,38 +3843,38 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] väärtus PEAB sinu seadistusfailis olema " "määratud!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Vale serveri indeks: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Seadistuses on valitud vale autentimise meetod:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS ülekirjutamise katse" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "võimalik turvaauk" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "tuvastati arvvõti" @@ -6075,8 +6143,8 @@ msgstr "" "Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Kasutajanimi" @@ -6721,10 +6789,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Puhvertsoon" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB staatus" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Puhvertsooni kasutus" @@ -7412,20 +7476,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "Filtreeri andmebaase nime alusel" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Puhasta seeria" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7539,17 +7603,17 @@ msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Ainult struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktuur ja andmed" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Ainult andmed" @@ -7943,8 +8007,7 @@ msgstr "Näita MIME-tüüpe" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8544,7 +8607,7 @@ msgid "Slave status" msgstr "Alluva staatus" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Muutuja" @@ -9058,7 +9121,7 @@ msgstr "Atribuudid" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Lisaks" @@ -9754,7 +9817,7 @@ msgstr "Lisa tabelile eesliide" msgid "Check tables having overhead" msgstr "Kontrolli ballastiga tabeleid" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Puudub" @@ -10099,7 +10162,7 @@ msgstr "Lülitu väiksele/suurele" msgid "Toggle relation lines" msgstr "Muuda seose ridu" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi koordinaadid PDF skeemile" @@ -10165,31 +10228,31 @@ msgstr "Leht on loodud" msgid "Page creation failed" msgstr "Lehe loomine ebaõnnestus" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Leht" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Impordi valitud lehelt" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Ekspordi valitud lehele" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Loo leht ja ekspordi sellele" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Uue lehe nimi: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Ekspordi/Impordi skaalas" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "soovituslik" @@ -10307,15 +10370,11 @@ msgstr "Faili pole olemas" msgid "Select binary log to view" msgstr "Vali binaarne logi, mida soovid vaadata" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Faili" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavaid päringuid" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -10399,7 +10458,7 @@ msgstr "Moodul" msgid "Library" msgstr "Teek" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versioon" @@ -10457,10 +10516,6 @@ msgstr "Ülema serveriks muudeti edukalt %s" msgid "This server is configured as master in a replication process." msgstr "See server on paljundamisel seatud ülemaks." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Näita ülema staatust" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Näita ühendatud alluvaid" @@ -10599,140 +10654,104 @@ msgstr "" "See server ei ole paljundamisel seadistatud alluvaks. Kas soovid seda teha?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "%s lõim katkestati edukalt." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud." -#: server_status.php:657 -msgid "Handler" -msgstr "Töötleja" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Võrguliiklus alates käivitumisest: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Päringute puhver" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "See MySQL server on töötanud %1$s. See käivitus %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Lõimud" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"See MySQL server töötab paljundamisel ülemana ja alluvana." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Ajutised andmed" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "See MySQL server töötab paljundamisel ülemana." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Viivitatud lisamised" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "See MySQL server töötab paljundamisel alluvana." -#: server_status.php:663 -msgid "Key cache" -msgstr "Võtme puhver" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni." -#: server_status.php:664 -msgid "Joins" -msgstr "Liitmised" +#: server_status.php:122 +msgid "Replication status" +msgstr "Paljundamise staatus" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sorteerimine" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Hõivatud serveris võib baitide lugeja olla ülekoormatud ja seetõttu MySQL " +"serveri poolt koostatud statistika ei pruugi õige olla." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Ülekande koordineerija" +#: server_status.php:149 +msgid "Received" +msgstr "Vastu võetud" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Tühjenda (sulge) kõik tabelid" +#: server_status.php:168 +msgid "Sent" +msgstr "Saadetud" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Näita avatud tabeleid" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Maks. paralleelühendusi" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Näita alluvaid hoste" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Ebaõnnestunud katseid" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Näita alluva staatust" +#: server_status.php:253 +msgid "Aborted" +msgstr "Katkestatud" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Tühjenda päringute puhver" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Jooksev informatsioon" +#: server_status.php:329 +msgid "Command" +msgstr "Käsk" -#: server_status.php:830 -msgid "All status variables" -msgstr "Kõik staatuse muutujad" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Jälgija" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Kontrollsüsteem" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Ridade hulk:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Värskendamissagedus: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtrid" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Sisaldab sõna:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Näita ainult 'alert' väärtusi" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtreeri kategooria alusel..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Näita vormindamata väärtusi" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Seotud lingid:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Käivita analüüsija" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Juhendid" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" "Kontrollsüsteem analüüsib serveri staatuse muutujaid ja annab soovitusi." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10741,7 +10760,7 @@ msgstr "" "Pane tähele, et kuigi see süsteem annab soovitusi lihtsate arvutuste alusel, " "on siiski rusikareegel, et need ei pruugi tingimata su süsteemile rakenduda." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10751,7 +10770,7 @@ msgstr "" "(lugedes dokumentatsiooni) ja kuidas tehtud muudatusi tagasi võtta. Halb " "muudatus võib kaasa tuua jõudluse languse." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10761,809 +10780,39 @@ msgstr "" "jälgida või vaadata oma andmebaasi ja võtta muudatus tagasi, kui ei " "saavutatud mingit praktiliselt mõõdetavat arengut." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Päringud alates käivitumisest: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Käsud" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Võrguliiklus alates käivitumisest: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "See MySQL server on töötanud %1$s. See käivitus %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"See MySQL server töötab paljundamisel ülemana ja alluvana." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "See MySQL server töötab paljundamisel ülemana." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "See MySQL server töötab paljundamisel alluvana." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Paljundamise staatus" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Hõivatud serveris võib baitide lugeja olla ülekoormatud ja seetõttu MySQL " -"serveri poolt koostatud statistika ei pruugi õige olla." - -#: server_status.php:1191 -msgid "Received" -msgstr "Vastu võetud" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Saadetud" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Maks. paralleelühendusi" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Ebaõnnestunud katseid" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Katkestatud" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Käsk" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " -"ühendust korralikult sulgemata." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." - -#: server_status.php:1529 -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 "" -"Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit, kuid mis " -"ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " -"salvestamiseks ajutist faili." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." - -#: server_status.php:1532 -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 "" -"Ajutiste tabelite hulk kettal, mis on loodud automaatselt serveri poolt " -"käskude täitmise ajal. Kui Created_tmp_disk_tables on suur, siis võid " -"suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " -"mälupõhised, mitte kettapõhised." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Mysqld poolt loodud ajutiste failide hulk." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " -"käskude täitmise ajal." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " -"(tõenäoliselt korduv võti)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " -"mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Kirjutatud INSERT DELAYED ridade hulk." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Käivitatud FLUSH käskude hulk." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Sisemiste COMMIT käskude hulk." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Tabelist kustutatud ridade hulk." - -#: server_status.php:1541 -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 "" -"MySQL server saab pärida NDB Cluster varundusmootorit, kui ta teab antud " -"nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " -"korda on tabeleid avastatud." - -#: server_status.php:1542 -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 "" -"Indeksist esimese sissekande lugemiste hulk. Kui see on kõrge, siis võib see " -"tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " -"Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." - -#: server_status.php:1543 -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 "" -"Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " -"hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." - -#: server_status.php:1544 -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 "" -"Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " -"pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." - -#: server_status.php:1545 -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 "" -"Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " -"meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks." - -#: server_status.php:1546 -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 "" -"Fikseeritud asukohal põhineva rea lugemise taotluste hulk. See on kõrge, kui " -"teed palju päringuid, mis vajavad tulemuste sorteerimist. Tõenäoliselt teed " -"palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " -"liitmisi, mis ei kasuta võtmeid korralikult." - -#: server_status.php:1547 -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 "" -"Andmefailis järgmise rea lugemise taotluste hulk. See on kõrge, kui teed " -"palju tabeli kontrolle. Üldiselt viitab see sellele, et sinu tabelid ei ole " -"korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " -"need kasutaksid ära indeksid, mis sul on." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Sisemiste ROLLBACK käskude hulk." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Tabeli rea uuendamise taotluste hulk." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Tabelisse rea lisamise taotluste hulk." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Vabade lehtede hulk." - -#: server_status.php:1555 -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 "" -"InnoDB puhvertsoonis olevate lukustatud lehtede hulk. Neid lehti praegu " -"loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " -"ega eemaldada." - -#: server_status.php:1556 -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 "" -"Lehtede hulk, mis on hõivatud administratiivse ballasti tõttu (nt ridade " -"lukustamised või adaptiivne räsi indeks). Seda väärtust saab arvutada ka " -"valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Puhvertsooni kogumaht lehtedes." - -#: server_status.php:1558 -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 "" -"InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " -"päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " -"teeb järjestikulist kogu tabeli kontrolli." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " -"pidi tegema ühelehelise lugemisena." - -#: server_status.php:1562 -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 "" -"Tavaliselt toimuvad InnoDB puhvertsooni kirjutamised tagataustal. Siiski, " -"kui on tarvis lehte lugeda või luua ja ühtegi puhast lehte saadaval ei ole, " -"siis tuleb oodata lehti, mida peab kõigepealt tühjendama. See loendaja loeb, " -"palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " -"see väärtus peaks olema madal." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Seni tehtud fsync() operatsioonide hulk." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Hetkel järjekorras olevate lugemiste hulk." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Hetkel järjekorras olevate kirjutamiste hulk." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Seni loetud andmete koguhulk baitides." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Andmete lugemiste koguhulk." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Andmete kirjutamiste koguhulk." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Seni kirjutatud andmete koguhulk baitides." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Teostatud topeltkirjutamise operatsioonide hulk." - -#: server_status.php:1574 -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 "" -"Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " -"jätkamist pidanud ootama selle tühjendamist." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Logi kirjutamise taotluste hulk." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Logi failisse füüsiliste kirjutamiste hulk." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Järjekorras olevad logi faili kirjutamised." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Logi faili kirjutatud baitide hulk." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Loodud lehtede hulk." - -#: server_status.php:1582 -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 "" -"Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " -"mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Loetud lehtede hulk." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Kirjutatud lehtede hulk." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Hetkel ootel olevate rea lukustamiste hulk." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Rea lukustamise saamise keskmine aeg millisekundites." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Ootama pidanud rea lukustamised kokku." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB tabelitest kustutatud ridade hulk." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB tabelitesse lisatud ridade hulk." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB tabelitest loetud ridade hulk." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB tabelites uuendatud ridade hulk." - -#: server_status.php:1594 -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 "" -"Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " -"kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " -"oleva võtme puhvri mahu tuvastamiseks." - -#: server_status.php:1596 -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 "" -"Võtmepuhvris kasutatud plokkide hulk. See väärtus on suurim tulemus, mis " -"näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " -"olnud." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Puhvrist võtmeploki lugemise taotluste hulk." - -#: server_status.php:1599 -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 "" -"Kettalt võtmeploki füüsiliste lugemiste hulk. Kui Key_reads on suur, siis " -"tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " -"saab arvutada valemiga Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " -"taotlustega (arvutatud väärtus)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " -"(arvutatud väärtus)" - -#: server_status.php:1604 -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 "" -"Päringu optimeerija poolt arvutatud viimati koostatud päringu kogukulu. See " -"on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " -"Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " -"käivitamisest." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " -"on tõenäoliselt liiga väike." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Avatud failide hulk." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Avatud tabelite hulk." - -#: server_status.php:1611 -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 "" -"Vaba mäluplokkide hulk päringu puhvris. Kõrgemad numbrid võivad viidata " -"killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " -"täitmisega." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Päringu puhvri jaoks vaba mälu hulk." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Puhvri kasutamise hulk." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Puhvrisse lisatud päringute hulk." - -#: server_status.php:1615 -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 "" -"Uute päringute puhverdamiseks vabastatud mälu tõttu kustutatud päringute " -"hulk. See teave saab aidata sul häälestada päringu puhvri mahtu. Päringu " -"puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " -"päring puhvrist kustutada." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " -"query_cache_type sätte tõttu)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Puhvris registreeritud päringute hulk." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Päringu puhvris olevate plokkide koguhulk." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." - -#: server_status.php:1620 -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 "" -"Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " -"peaksid hoolikalt kontrollima oma tabelite indekseid." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." - -#: server_status.php:1622 -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 "" -"Ilma võtmeteta liitmiste hulk, mis kontrollib võtme kasutust pärast iga " -"rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " -"indekseid.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " -"kriitiline, kui see on suur.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " -"käivitusest)." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." - -#: server_status.php:1630 -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 "" -"Sorteerimise algoritmi poolt tehtud ühinemiste hulk. Kui see väärtus on " -"suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " -"vähendamist." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Piirkondlike sorteerimiste hulk." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Sorteeritud ridade hulk." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Koheselt teostatud tabeli lukustamiste hulk." - -#: server_status.php:1635 -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 "" -"Tabeli lukustamiste hulk, mida ei saanud teostada koheselt ja mis pidi " -"ootama. Kui see on kõrge, siis on sul probleeme jõudlusega. Sellisel juhul " -"peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " -"tabel või tabelid või kasuta paljundamist." - -#: server_status.php:1636 -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 "" -"Lõimu puhvris olevate lõimude hulk. Puhvri kasutamise sageduse saab arvutada " -"valemiga Threads_created/Connections. Kui see väärtus on punane, siis " -"peaksid vähendama oma thread_cache_size väärtust." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Hetkel avatud ühenduste hulk." - -#: server_status.php:1638 -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 "" -"Ühenduse käsitlemiseks loodud lõimude hulk. Kui Threads_created on suur, " -"peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " -"märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Lõimude hulk, mis ei ole jõude." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Alusta jälgimist" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Juhendid/Paigaldus" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Diagrammide korrastamine/muutmine on valmis" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Lisa diagramm" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Korrasta/muuda diagramme" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Uuendamise sagedus" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Diagrammi veerud" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Diagrammi korrastus" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11571,15 +10820,15 @@ msgstr "" "Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " "Kui paigaldamine on keeruline, võid seda eksportida." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Lähtesta vaikimisi väärtustele" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Jälgija juhendid" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11593,7 +10842,7 @@ msgstr "" "general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " "suurendab serveri laadimisaega kuni 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11604,11 +10853,11 @@ msgstr "" "andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " "MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Kasuta jälgijat:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11618,7 +10867,7 @@ msgstr "" "tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " "eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11630,11 +10879,11 @@ msgstr "" "diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " "kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Palun pane tähele:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11646,93 +10895,813 @@ msgstr "" "on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " "tühjenda selle tabel, kui jälgimist pole enam tarvis." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Ettemääratud diagramm" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Staatuse muutuja(d)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Vali seeria:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Tavaliselt jälgitav" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "või tipi muutuja nimi:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Näita eristatava väärtusena" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Kasuta jagajat" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Lisa andmete väärtustele ühikud" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Lisa see seeria" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Puhasta seeria" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Seeriad diagrammis:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Logi statistika" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Valitud ajavahemik:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vali logi, millest statistikat luua." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Tulemused on grupeeritud päringu teksti alusel." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Päringu analüüsija" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekundit" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutit" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Päringud alates käivitumisest: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Käsud" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtrid" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Sisaldab sõna:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Näita ainult 'alert' väärtusi" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtreeri kategooria alusel..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Näita vormindamata väärtusi" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Seotud lingid:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " +"ühendust korralikult sulgemata." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." + +#: server_status_variables.php:334 +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 "" +"Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit, kuid mis " +"ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " +"salvestamiseks ajutist faili." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." + +#: server_status_variables.php:346 +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 "" +"Ajutiste tabelite hulk kettal, mis on loodud automaatselt serveri poolt " +"käskude täitmise ajal. Kui Created_tmp_disk_tables on suur, siis võid " +"suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " +"mälupõhised, mitte kettapõhised." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Mysqld poolt loodud ajutiste failide hulk." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " +"käskude täitmise ajal." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " +"(tõenäoliselt korduv võti)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " +"mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Kirjutatud INSERT DELAYED ridade hulk." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Käivitatud FLUSH käskude hulk." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Sisemiste COMMIT käskude hulk." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Tabelist kustutatud ridade hulk." + +#: server_status_variables.php:381 +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 "" +"MySQL server saab pärida NDB Cluster varundusmootorit, kui ta teab antud " +"nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " +"korda on tabeleid avastatud." + +#: server_status_variables.php:387 +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 "" +"Indeksist esimese sissekande lugemiste hulk. Kui see on kõrge, siis võib see " +"tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " +"Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." + +#: server_status_variables.php:393 +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 "" +"Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " +"hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." + +#: server_status_variables.php:398 +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 "" +"Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " +"pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." + +#: server_status_variables.php:403 +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 "" +"Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " +"meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks." + +#: server_status_variables.php:407 +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 "" +"Fikseeritud asukohal põhineva rea lugemise taotluste hulk. See on kõrge, kui " +"teed palju päringuid, mis vajavad tulemuste sorteerimist. Tõenäoliselt teed " +"palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " +"liitmisi, mis ei kasuta võtmeid korralikult." + +#: server_status_variables.php:414 +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 "" +"Andmefailis järgmise rea lugemise taotluste hulk. See on kõrge, kui teed " +"palju tabeli kontrolle. Üldiselt viitab see sellele, et sinu tabelid ei ole " +"korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " +"need kasutaksid ära indeksid, mis sul on." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Sisemiste ROLLBACK käskude hulk." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Tabeli rea uuendamise taotluste hulk." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Tabelisse rea lisamise taotluste hulk." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Vabade lehtede hulk." + +#: server_status_variables.php:443 +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 "" +"InnoDB puhvertsoonis olevate lukustatud lehtede hulk. Neid lehti praegu " +"loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " +"ega eemaldada." + +#: server_status_variables.php:448 +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 "" +"Lehtede hulk, mis on hõivatud administratiivse ballasti tõttu (nt ridade " +"lukustamised või adaptiivne räsi indeks). Seda väärtust saab arvutada ka " +"valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Puhvertsooni kogumaht lehtedes." + +#: server_status_variables.php:458 +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 "" +"InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " +"päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " +"teeb järjestikulist kogu tabeli kontrolli." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " +"pidi tegema ühelehelise lugemisena." + +#: server_status_variables.php:474 +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 "" +"Tavaliselt toimuvad InnoDB puhvertsooni kirjutamised tagataustal. Siiski, " +"kui on tarvis lehte lugeda või luua ja ühtegi puhast lehte saadaval ei ole, " +"siis tuleb oodata lehti, mida peab kõigepealt tühjendama. See loendaja loeb, " +"palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " +"see väärtus peaks olema madal." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Seni tehtud fsync() operatsioonide hulk." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Hetkel järjekorras olevate lugemiste hulk." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Hetkel järjekorras olevate kirjutamiste hulk." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Seni loetud andmete koguhulk baitides." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Andmete lugemiste koguhulk." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Andmete kirjutamiste koguhulk." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Seni kirjutatud andmete koguhulk baitides." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Teostatud topeltkirjutamise operatsioonide hulk." + +#: server_status_variables.php:516 +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 "" +"Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " +"jätkamist pidanud ootama selle tühjendamist." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Logi kirjutamise taotluste hulk." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Logi failisse füüsiliste kirjutamiste hulk." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Järjekorras olevad logi faili kirjutamised." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Logi faili kirjutatud baitide hulk." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Loodud lehtede hulk." + +#: server_status_variables.php:541 +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 "" +"Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " +"mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Loetud lehtede hulk." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Kirjutatud lehtede hulk." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Hetkel ootel olevate rea lukustamiste hulk." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Rea lukustamise saamise keskmine aeg millisekundites." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Ootama pidanud rea lukustamised kokku." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB tabelitest kustutatud ridade hulk." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB tabelitesse lisatud ridade hulk." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB tabelitest loetud ridade hulk." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB tabelites uuendatud ridade hulk." + +#: server_status_variables.php:579 +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 "" +"Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " +"kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " +"oleva võtme puhvri mahu tuvastamiseks." + +#: server_status_variables.php:588 +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 "" +"Võtmepuhvris kasutatud plokkide hulk. See väärtus on suurim tulemus, mis " +"näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " +"olnud." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Puhvrist võtmeploki lugemise taotluste hulk." + +#: server_status_variables.php:599 +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 "" +"Kettalt võtmeploki füüsiliste lugemiste hulk. Kui Key_reads on suur, siis " +"tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " +"saab arvutada valemiga Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " +"taotlustega (arvutatud väärtus)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " +"(arvutatud väärtus)" + +#: server_status_variables.php:619 +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 "" +"Päringu optimeerija poolt arvutatud viimati koostatud päringu kogukulu. See " +"on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " +"Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " +"käivitamisest." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " +"on tõenäoliselt liiga väike." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Avatud failide hulk." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Avatud tabelite hulk." + +#: server_status_variables.php:645 +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 "" +"Vaba mäluplokkide hulk päringu puhvris. Kõrgemad numbrid võivad viidata " +"killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " +"täitmisega." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Päringu puhvri jaoks vaba mälu hulk." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Puhvri kasutamise hulk." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Puhvrisse lisatud päringute hulk." + +#: server_status_variables.php:659 +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 "" +"Uute päringute puhverdamiseks vabastatud mälu tõttu kustutatud päringute " +"hulk. See teave saab aidata sul häälestada päringu puhvri mahtu. Päringu " +"puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " +"päring puhvrist kustutada." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " +"query_cache_type sätte tõttu)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Puhvris registreeritud päringute hulk." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Päringu puhvris olevate plokkide koguhulk." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." + +#: server_status_variables.php:679 +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 "" +"Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " +"peaksid hoolikalt kontrollima oma tabelite indekseid." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." + +#: server_status_variables.php:686 +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 "" +"Ilma võtmeteta liitmiste hulk, mis kontrollib võtme kasutust pärast iga " +"rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " +"indekseid.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " +"kriitiline, kui see on suur.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " +"käivitusest)." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." + +#: server_status_variables.php:717 +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 "" +"Sorteerimise algoritmi poolt tehtud ühinemiste hulk. Kui see väärtus on " +"suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " +"vähendamist." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Piirkondlike sorteerimiste hulk." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Sorteeritud ridade hulk." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Koheselt teostatud tabeli lukustamiste hulk." + +#: server_status_variables.php:734 +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 "" +"Tabeli lukustamiste hulk, mida ei saanud teostada koheselt ja mis pidi " +"ootama. Kui see on kõrge, siis on sul probleeme jõudlusega. Sellisel juhul " +"peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " +"tabel või tabelid või kasuta paljundamist." + +#: server_status_variables.php:740 +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 "" +"Lõimu puhvris olevate lõimude hulk. Puhvri kasutamise sageduse saab arvutada " +"valemiga Threads_created/Connections. Kui see väärtus on punane, siis " +"peaksid vähendama oma thread_cache_size väärtust." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Hetkel avatud ühenduste hulk." + +#: server_status_variables.php:748 +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 "" +"Ühenduse käsitlemiseks loodud lõimude hulk. Kui Threads_created on suur, " +"peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " +"märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Lõimude hulk, mis ei ole jõude." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Muutuja seadmine ebaõnnestus" @@ -12321,26 +12290,26 @@ msgstr "Võõrvõtme piirang" msgid "Tracking report for table `%s`" msgstr "`%s` tabeli jälgimise raport" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s jälgimine deaktiveeriti versioonil %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s jälgimine aktiveeriti versioonil %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL käsud on käivitatud." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12348,118 +12317,118 @@ msgstr "" "Ajutise andmebaasi loomisega ja kasutamisega saad käivitada tõmmise. Palun " "veendu, et sul on selle jaoks õigusi." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Kustuta need kaks rida, kui sa ei vaja neid." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL käsud on eksporditud. Palun kopeeri tõmmis või käivita see." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versiooni %s hetkepilt (SQL kood)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Jälgimise andmete definitsioon on edukalt kustutatud" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Päringu viga" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Jälgimise andmete töötlus on edukalt kustutatud" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Jälgimise käsud" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Näita %1$s koos kuupäevadega alates %2$s kuni %3$s kasutajaks %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Kustuta raportist jälgimise andmete rida" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Andmed puuduvad" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Kuupäev" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Andmete definitsiooni käsk" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Andmete töötluse käsk" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL tõmmis (faili allalaadimine)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL tõmmis" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "See valik asendab sinu tabeli ja selles sisalduvad andmed." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL teostus" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Ekspordi kui %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Näita versioone" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiveeri %s jälgimine" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deaktiveeri kohe" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Aktiveeri %s jälgimine" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktiveeri kohe" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Loo versioon %1$s, %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Jälgi nende andmete definitsiooni käske:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Jälgi nende andmete töötluse käske:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Loo versioon" @@ -12609,11 +12578,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time on praegu %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Aeglase päringu logimine" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Aeglase päringu logimine on keelatud." @@ -12629,15 +12598,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries väärtuseks on määratud 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Luba aeglase päringu logimine, määrates {log_slow_queries} väärtuseks 'ON'. " +"See aitab lahendada halvasti sooritatud päringute probleeme." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries väärtuseks on määratud 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Väljaande seeria" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL serveri versioon on alla 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12645,21 +12632,21 @@ msgstr "" "Sa peaksid uuendama, kuna MySQL 5.1'l on parem jõudlus ja MySQL 5.5'l on " "veel parem." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Praegune versioon: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Ebaoluline versioon" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Versioon on alla 5.1.30 (esimene 5.1'e GA väljaanne)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12667,24 +12654,24 @@ msgstr "" "Sa peaksid uuendama, kuna uuemal MySQL 5.1 versioonil on parem jõudlus ja " "MySQL 5.5'l on veel parem." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Versioon on alla 5.5.8 (esimene 5.5'e GA väljaanne)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Sa peaksid täiustama MySQL 5.5'e stabiilsele versioonile" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distributsioon" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Versiooni võrreldi allikaga ning see pole MySQL'i ametlik pakett." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12695,41 +12682,41 @@ msgstr "" "MySQL'i ametlike pakettide puhul, kuid mitte ükski paketi distributsioon " "(nagu RedHat, Debian/Ubuntu jne)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' leitud kohas version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL kasutusjuhend kehtib ainult MySQL'i ametlike pakettide puhul." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "Percona dokumentatsiooni leiab aadressilt http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' leitud kohas version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle dokumentatsiooni leiab aadressilt http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Versiooni sõne (%s) ühtib Drizzle versiooni skeemiga" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL'i arhitektuur" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL ei ole kokku pandud 64-bitise paketina." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12739,20 +12726,20 @@ msgstr "" "saa MySQL kasutada kogu sinu mälu. Võib-olla kaalud 64-bitise MySQL " "versiooni paigaldamist." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Saadavalolev mälu hulk siin hostis: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Päringu puhver on keelatud" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Päringu puhver ei ole lubatud." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12764,21 +12751,21 @@ msgstr "" "MiB väärtus ja vali {query_cache_type} väärtuseks 'ON'. Märkus: Kui " "kasutad mälupuhvrit, siis on soovitatav siinolevaid juhendeid ignoreerida." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size väärtuseks on määratud 0 või query_cache_type väärtuseks on " "määratud 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Päringu puhverdamise meetod" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Väheoptimaalse puhverdamise meetod." -#: libraries/advisory_rules.txt:157 +#: 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 mälu puhvrit, eriti, kui " "sul on palju alluvaid." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12799,34 +12786,34 @@ msgstr "" "Päringu puhver on lubatud ja server võtab vastu %d päringut sekundis. See " "annab endast märku, kui seal on üle 100 päringu sekundis." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Päringu puhvri efektiivsus (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Päringu puhver ei tööta efektiivselt, selle kasutushulk on madal." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Kaalu {query_cache_limit} suurendamist." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Praegune %s%% päringu puhvri kasutushulk on alla 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Päringu puhvri kasutus" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Kasutusel on alla 80%% päringu puhvrist." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12834,7 +12821,7 @@ msgstr "" "Selle põhjuseks võib olla {query_cache_limit} liiga madal väärtus. Päringu " "puhvri puhastamine võib aidata." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12843,15 +12830,15 @@ msgstr "" "Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%" "%. See peaks olema üle 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Päringu puhvri killustatus" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Päringu puhver on väga killustunud." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12871,7 +12858,7 @@ msgstr "" "using this formula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12882,11 +12869,11 @@ msgstr "" "puhver sisaldab vaheldumisi vabu ja kasutatud plokke. See väärtus peaks " "olema alla 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Query cache low memory prunes" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -12894,7 +12881,7 @@ msgstr "" "Puhverdatud päringud on madala päringu puhvri mälu tõttu eemaldatud päringu " "puhvrist." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12904,7 +12891,7 @@ msgstr "" "puhvri liigne suurendamine suurendab tõenäoliselt selle mahtu. Seega tee " "seda väikeste sammude kaupa ja jälgi tulemusi." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12913,11 +12900,11 @@ msgstr "" "Kustutatud päringute hulk võrreldes lisatud päringutega on %s%%. Madalam " "väärtus on parem (teadaande limiit: 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Päringu puhvri maksimaalne maht" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12925,7 +12912,7 @@ msgstr "" "Päringu puhvri maht on üle 128 MiB. Suured päringu puhvrid võivad põhjustada " "olulisemalt suuremat koormust, mis on vajalik puhvri haldamiseks." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12933,21 +12920,21 @@ msgstr "" "Sõltuvalt sinu keskkonnast võib selle väärtuse kahandamine suurendada " "jõudlust." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Praegune päringu puhvri maht: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Päringu puhvri väikseima tulemuse maht" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "Suurim tulemuse maht päringu puhvris on vaikimisi 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12967,19 +12954,19 @@ msgstr "" "(tihtilugu kehtetud tabeli uuendamiste tõttu) ja kui siis suurendada " "{query_cache_limit} väärtust, siis võib väheneda jõudlus." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit väärtuseks on määratud 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Ajutisi tabeleid põhjustavate sorteerimiste protsent" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Liiga palju sorteerimisi põhjustab ajutisi tabeleid." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12987,7 +12974,7 @@ msgstr "" "Oma süsteemimälu piirangust sõltuvalt kaalu sort_buffer_size ja/või " "read_rnd_buffer_size väärtuse suurendamist" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12996,11 +12983,11 @@ msgstr "" "%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks " "jääma alla 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Ajutisi tabeleid põhjustavate sorteerimiste hulk" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13008,15 +12995,15 @@ msgstr "" "Ajutiste tabelite keskmine: %s. See väärtust peaks ühe tunni kohta olema " "alla 1." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sorteeri ridu" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Praegu sorteeritakse palju ridu." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13027,20 +13014,20 @@ msgstr "" "kiirema sorteerimise tulemuse saavutamiseks kasutama ORDER BY klauslis " "indekseeritud veergusid" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Sorteeritud ridade keskmine: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Ilma indeksiteta liitmiste hulk" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Siin on liiga palju ilma indeksiteta liitmisi." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13048,21 +13035,21 @@ msgstr "" "See tähendab, et liitmised teevad kogu tabeli kontrolli. Veergude jaoks " "indeksite lisamisel liitmise tingimustes kiirendab tunduvalt tabeli liitmisi" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tabeli liitmiste keskmine: %s. See väärtus peaks ühe tunni kohta olema alla 1" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Esimese indeksi sissekande lugemiste hulk" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Esimese indeksi sissekande lugemiste hulk on kõrge." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13079,22 +13066,22 @@ msgstr "" "juhul saab terve indeksi kontrolle vähendada ainult päringute " "ümberkirjutamise abiga." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Indeksi kontrollide keskmine: %s. See väärtus peaks ühe tunni kohta olema " "alla 1" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Fikseeritud positsiooni lugemiste hulk" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Fikseeritud positsioonist andmete lugemiste hulk on kõrge." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13104,7 +13091,7 @@ msgstr "" "kogu tabeli kontrolli, sisaldades liitmise päringuid, mis ei kasuta " "indekseid. Lisa indekseid, kus neid vaja." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13113,15 +13100,15 @@ msgstr "" "Fikseeritud positsiooni lugemiste hulga keskmine: %s. See väärtus peaks ühe " "tunni kohta olema alla 1" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Järgmise tabeli rea lugemiste hulk" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Järgmise tabeli rea lugemiste hulk on kõrge." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13129,7 +13116,7 @@ msgstr "" "See viitab sellele, et paljud päringud teevad kogu tabeli kontrolle. Lisa " "indekseid, kus neid vaja." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13137,15 +13124,15 @@ msgstr "" "Järgmise tabeli rea lugemiste hulk: %s. See väärtus peaks ühe tunni kohta " "olema alla 1" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size vs. max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size ja max_heap_table_size ei ole üks ja seesama." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13157,23 +13144,23 @@ msgstr "" "suurendada mälus olevate tabelite piirangut, peaksid suurendama ka teist " "väärtust." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Praegused väärtused on tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Kettal asuvate ajutiste tabelite protsent" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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 "" "Paljud ajutised tabelid on mälus säilitamise asemel kirjutatud kettale." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13191,7 +13178,7 @@ msgstr "" "note.php?note_id=10150111255065841&comments\"> Pythian Group artikli " "alguses" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13200,11 +13187,11 @@ msgstr "" "%s%% kõikidest ajutistest tabelitest kirjutatakse kettale. See väärtus peaks " "olema alla 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Ajutise ketta hulk" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13221,7 +13208,7 @@ msgstr "" "baidise veeruga), mida on mainitud MySQL dokumentatsioonis" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13230,15 +13217,15 @@ msgstr "" "Kettale kirjutatavate ajutiste tabelite hulk: %s. See väärtus peaks ühe " "tunni kohta olema alla 1" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM võtme puhvri maht" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "Võtme puhvrit ei tuvastatud. Ühtegi MyISAM indeksit ei puhverdata." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13246,21 +13233,21 @@ msgstr "" "Määra {key_buffer_size} väärtus sõltuvalt oma MyISAM indeksite mahust. 64M " "oleks hea algus." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size on 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Suurim MyISAM võtme puhvri kasutuse %%" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM võtme puhvri (indeksi puhver) %% kasutus on madal." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13270,7 +13257,7 @@ msgstr "" "et näha, kas indeksid on kustutatud või kontrolli päringuid, et teada saada, " "milliseid indekseid kasutatakse." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13278,43 +13265,43 @@ msgstr "" "maksimaalne MyISAM kasutatud võtme puhvri %%: %s%%. See väärtus peaks olema " "vähemalt 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Kasutatud MyISAM võtme puhvri protsent" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "Kasutatud MyISAM võtme puhvri %%: %s%%. See väärtus peaks olema vähemalt 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Mälust loetud indeksite protsent" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "MyISAM võtme puhvrit kasutavate indeksite %% on madal." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Võid suurendada {key_buffer_size} väärtust." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Mälust loetud indeksid: %s%%. See väärtus peaks olema vähemalt 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Avatud tabelite hulk" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Avatud tabelite hulk on kõrge." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13322,17 +13309,17 @@ msgstr "" "Tabelite avamine vajab ketta I/O'd, kuid see on kulukas. {table_open_cache} " "väärtuse suurendamine võib seda ära hoida." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Avatud tabelite hulk: %s. See väärtus peaks ühe tunni kohta olema alla 10" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Kasutatud avatud failide protsendi piirang" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13340,7 +13327,7 @@ msgstr "" "Avatud failide hulk läheneb maksimaalsele avatud failide hulgale. Võid " "saada \"Liiga palju avatud faile\" vea." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13348,63 +13335,63 @@ msgstr "" "Kaalu {open_files_limit} väärtuse suurendamist ja pärast open_files_limit " "muutmist ning taaskäivitamist kontrolli vea logi." -#: libraries/advisory_rules.txt:332 +#: 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 "Avatud failide hulk on %s%% maksimaalsest. See peaks olema alla 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Avatud failide hulk" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Failide avamise hulk on kõrge." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Avatud failide hulk: %s. See väärtus peaks ühe tunni kohta olema alla 5" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Viivitamatu tabeli lukustamiste %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Liiga palju tabeli lukustamisi, mida ei tehtud viivitamatult." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimeeri päringuid ja/või kasuta InnoDB'd, et vähendada lukustamise " "ooteaega." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Viivitamatu tabeli lukustamised: %s%%. See väärtus peaks olema vähemalt 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Ootel olevate tabeli lukustamiste hulk" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Ootel olevate tabeli lukustamiste hulk: %s. See väärtus peaks ühe tunni " "kohta olema alla 1" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Lõimu puhver" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13412,41 +13399,41 @@ msgstr "" "Lõimu puhver on keelatud, mille tulemusena suureneb ülekoormus uute MySQL " "ühenduste arvelt." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Kasuta lõimu puhvrit, seades {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Lõimu puhvriks on määratud 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Lõimu puhvri kasutushulga %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Lõimu puhver pole efektiivne." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Suurenda {thread_cache_size} väärtust." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Lõimu puhvri kasutushulk: %s%%. See väärtus peaks olema üle 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Lõimud, mis käivituvad aeglaselt" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Siin on liiga palju aeglase käivitumisega lõimusid." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13454,20 +13441,20 @@ msgstr "" "This generally happens in case of general system overload as it is pretty " "simple operations. You might want to monitor your system load carefully." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s-l lõimul kulus käivitumiseks üle %s sekundi. See peaks olema 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Aeglane käivitumise aeg" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads on üle 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13475,23 +13462,23 @@ msgstr "" "Aeglase käivitumisega lõimude õigeks loendamiseks määra slow_launch_time " "väärtuseks 1s või 2s" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time väärtuseks on määratud %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Kasutatud ühenduste protsent" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" "Kasutatud ühenduste maksimaalne hulk läheneb max_connections väärtusele." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13501,7 +13488,7 @@ msgstr "" "varem sulgeda need ühendused, mis ei sulge andmebaasikäsitlejaid " "korralikult. Veendu, et kood sulgeb andmebaasikäsitlejad korralikult." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13509,15 +13496,15 @@ msgstr "" "Max_used_connections on %s%% max_connections väärtusest. See peaks olema " "alla 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Katkestatud ühenduste protsent" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Liiga palju ühendusi on katkestatud." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. See artikkel võib aidata sul allikat leida." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% kõikidest ühendustest on katkestatud. See väärtus peaks olema alla 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Katkestatud ühenduste hulk" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13546,15 +13533,15 @@ msgstr "" "Katkestatud ühenduse hulk on %s. See väärtus peaks ühe tunni kohta olema " "alla 1" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Katkestatud klientide protsent" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Liiga palju kliente on lahti ühendatud." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13564,52 +13551,52 @@ msgstr "" "ühendust korralikult. Seda võivad põhjustada võrguprobleemid või kood ei " "sulge andmebaasikäsitlejat korralikult. Kontrolli oma võrku ja koodi." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%" "%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Lahti ühendatud klientide hulk" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Lahti ühendatud klientide hulk on %s. See väärtus peaks ühe tunni kohta " "olema alla 1" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Kas InnoDB on keelatud?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Sul ei ole InnoDB lubatud." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB on tavaliselt tabelimootorite jaoks parem valik." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb väärtuseks on määratud 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB logi maht" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." msgstr "" "InnoDB logifaili maht ei ole InnoDB puhvertsooni arvestades sobivas mahus." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13633,7 +13620,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">selle blogi sissekannet" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13642,15 +13629,15 @@ msgstr "" "Sinu InnoDB logi maht on %s%% InnoDB puhvertsooni mahust. See ei tohiks olla " "alla 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maksimaalne InnoDB logi maht" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB logi fail on liiga mahukas." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13673,20 +13660,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">selle blogi sissekannet" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Sinu absoluutne InnoDB logi maht on %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB puhvertsooni maht" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Sinu InnoDB puhvertsoon on üsna väike." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13711,7 +13698,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/\">seda " "artiklit" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13724,15 +13711,15 @@ msgstr "" "ole liiga palju InnoDB tabeleid või muid teenuseid, mis töötavad ühes " "masinas." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM'i samaaegsed lisamised" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Luba concurrent_insert, määrates väärtuseks 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL dokumentatsiooni" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB on saadetud peale viimast värskendust" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB on vastu võetud peale viimast värskendust" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Serveri liiklus (KiB'des)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Ühendusi pärast viimast värskendust" + +#~ msgid "Questions since last refresh" +#~ msgstr "Päringuid pärast viimast värskendust" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Päringuid (serveri poolt käivitatud käsud)" + +#~ msgid "Runtime Information" +#~ msgstr "Jooksev informatsioon" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Ridade hulk:" + +#~ msgid "Refresh rate: " +#~ msgstr "Värskendamissagedus: " + +#~ msgid "Run analyzer" +#~ msgstr "Käivita analüüsija" + #~ msgid "Show more actions" #~ msgstr "Näita rohkem tegevusi" diff --git a/po/eu.po b/po/eu.po index 972550c8e7..6deb6dad7c 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,18 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Basque \n" -"Language: eu\n" +"Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +77,21 @@ msgstr "Bilatu" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Joan" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Giltza-izena" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Deskribapena" @@ -113,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s datu-basea sortua izan da." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,12 +138,12 @@ msgstr "Taularen iruzkinak" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Zutabea" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +161,11 @@ msgstr "Zutabea" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Mota" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +177,11 @@ msgstr "Mota" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulua" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +192,11 @@ msgstr "Nulua" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Lehenetsia" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +205,7 @@ msgstr "Lehenetsia" msgid "Links to" msgstr "Esteka:" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +218,7 @@ msgstr "Esteka:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +236,12 @@ msgstr "Iruzkinak" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ez" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +264,8 @@ msgstr "Ez" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Bai" @@ -319,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Taula" @@ -339,7 +340,7 @@ msgstr "Tamaina" msgid "in use" msgstr "lanean" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +348,7 @@ msgstr "lanean" msgid "Creation" msgstr "Sortzea" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +356,7 @@ msgstr "Sortzea" msgid "Last update" msgstr "Azken eguneraketa" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -407,7 +408,7 @@ msgstr "Taulak jarraipenarekin" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Datu-basea" @@ -415,17 +416,17 @@ msgstr "Datu-basea" msgid "Last version" msgstr "Azken bertsioa" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Sortua" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Eguneratua" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Egoera" @@ -440,7 +441,7 @@ msgstr "Ekintza" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Erakutsi" @@ -456,11 +457,11 @@ msgstr "Ezabatu taula honetako jarraipen datuak" msgid "Drop" msgstr "Ezabatu" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktibo" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ez aktibo" @@ -468,11 +469,11 @@ msgstr "ez aktibo" msgid "Versions" msgstr "Bertsioak" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Jarraipen informea" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Egitura kaptura" @@ -540,45 +541,45 @@ msgstr "Erabili OpenStreetMaps Oinarri geruza moduan" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Puntu" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "%d puntua" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Puntua gehitu" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Lerro kateak" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Kanpo eraztuna" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Barne eraztuna" @@ -586,15 +587,15 @@ msgstr "Barne eraztuna" msgid "Add a linestring" msgstr "Lerro kate berria gehitu" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Gehitu barne eraztuna" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Gehitu poligonoa" @@ -726,8 +727,9 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Database server" msgstr "Datu-baseak" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Zerbitzaria" @@ -748,7 +750,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Erabiltzailea" @@ -989,12 +991,12 @@ msgstr "Pribilegioak berkargatzen" msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Itxi" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1004,15 +1006,15 @@ msgstr "Itxi" msgid "Edit" msgstr "Editatu" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Zuzeneko trafikoaren grafika" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL kontsulta" @@ -1025,13 +1027,14 @@ msgstr "Datu estatikoak" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Beste" @@ -1046,51 +1049,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB bidali azken freskatzetik" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB jasoak azken freskatzetik" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Zerbitzariaren trafikoa (KiBtan)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Konexio azken freskatzetik" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Prozesuak" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Konexioak / Prozesuak" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Galdera azken freskatzetik" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -#, fuzzy -msgid "Questions (executed statements by the server)" -msgstr "Galdera (zerbitzariak exekutatuak)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Kontsulta estatistikak" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1098,130 +1064,134 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Kontsulta katxe eragikortasuna" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "Kontsulta katxe erabilpena" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "Kontsulta katxe erabilia" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Sistema PUZ erabilera" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistemaren memoria" -#: js/messages.php:99 +#: js/messages.php:88 #, fuzzy msgid "System swap" msgstr "Sistemaren swap-a" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Bataz besteko karga" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memoria guztira" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memoria katxea" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memoria bufferrean" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memoria librea" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memoria erabilia" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Swap osoa" -#: js/messages.php:111 +#: js/messages.php:98 #, fuzzy msgid "Cached Swap" msgstr "Swap katxea" -#: js/messages.php:112 +#: js/messages.php:99 #, fuzzy msgid "Used Swap" msgstr "Swap erabilia" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Konexioak" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prozesuak" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Byte" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1229,81 +1199,82 @@ msgid "%d table(s)" msgstr "%s taula" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy msgid "Remove chart" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Batez" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1311,524 +1282,526 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Bidali" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Gaituta" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Ezgaituta" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Import files" msgid "Chart Title" msgstr "Fitxategiak inportatu" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Lokal" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Datu-baserik ez" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Datu-baserik ez" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Aztertu" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-a azaldu" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Denbora" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Gutira" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL emaitza" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karaktere-jokoa" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "Gehitu %s zutabe" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL kontsulta" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Taularen hobespenak" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Errenkada kopurua orriko" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Gutira" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Lokal" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy msgid "Reload page" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Kontsulta eguneratu" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentazioa" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentazioa" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Lokal" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Prozesuak" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Zuzena" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy msgid "Renaming Databases" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy msgid "Reload Database" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy msgid "Copying Database" msgstr "Datu-baserik ez" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Karaktere-jokoa" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Taulak erabili" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Indizeak" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Sareta erakutsi" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Gaituta" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Ezgaituta" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Bilatu" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL kontsulta" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL kontsulta" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Arakatu" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s ezabatzen" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET editorea" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s zutaberako balioak" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Zutabe berrirako balioak" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Sartu balioak banatutako eremuetan" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Erabiltzaile berria gehitu" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL kontsulta" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL kontsulta" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Aldatu" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1837,220 +1810,225 @@ msgstr "" msgid "Save" msgstr "Gorde" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Bilatu" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQL emaitza" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Gehitu %s zutabe" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Zutabe izenak" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Errenkadak erakusten" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Dena erakutsi" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Indizeak" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2058,30 +2036,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2089,96 +2067,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2186,78 +2164,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Abe" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2265,113 +2243,113 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2423,16 +2401,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "segunduko" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minutuko" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "orduko" @@ -2458,7 +2436,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Goranzko" @@ -2467,7 +2445,7 @@ msgstr "Goranzko" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Beherantz" @@ -2583,7 +2561,7 @@ msgstr "%s taulako aukeratuak ezabatu" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Ezabatu" @@ -2780,7 +2758,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Hil" @@ -2837,12 +2815,13 @@ msgstr "Guztiak egiaztatu" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" @@ -2850,7 +2829,7 @@ msgstr "Esportatu" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2934,16 +2913,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2957,21 +2936,21 @@ msgstr "Ez dago indizerik definituta!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitatea" @@ -2981,13 +2960,13 @@ msgstr "Kardinalitatea" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Ordenamendua" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Iruzkinak" @@ -3031,7 +3010,7 @@ msgstr "Ikusipegia" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Egitura" @@ -3104,37 +3083,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Erabiltzailea" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Binarioa " -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Ihardetsi" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3185,6 +3165,108 @@ msgstr "Taularik ez" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL kontsulta" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Kontsulta mota" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Use delayed inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Taulak" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Eremuak" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Taulak erakutsi" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Egoera" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Kontsulta estatistikak" + +#: 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." @@ -3278,7 +3360,7 @@ msgstr "Eragiketak" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "balioa" @@ -3680,11 +3762,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL kontsulta" - #: libraries/Util.class.php:710 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:292 @@ -3719,7 +3796,7 @@ msgid "Create PHP Code" msgstr "PHP kodea sortu" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3816,13 +3893,6 @@ msgstr "Inprimatu" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Taulak" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3865,22 +3935,22 @@ msgstr ""%s" datu-basearen pribilegioak egiaztatu." msgid "Check Privileges" msgstr "Pribilegioak egiaztatu" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3892,38 +3962,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian " "zehaztuta behar du egon!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6082,8 +6152,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" @@ -6740,10 +6810,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Egoera" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7405,18 +7471,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Taularen \"Order By\" aldatu" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7518,17 +7584,17 @@ msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Egitura soilik" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Egitura eta datuak" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Datuak soilik" @@ -7954,8 +8020,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Zerbitzaria" @@ -8535,7 +8600,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Aldagaia" @@ -9093,7 +9158,7 @@ msgstr "Atributuak" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9822,7 +9887,7 @@ msgstr "Gehitu aurrizkia taulari" msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10198,7 +10263,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Txinera tradizionala" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10280,39 +10345,39 @@ msgstr "%s taula ezabatu egin da" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Erabilpena" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fitxategiak inportatu" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Indize berri bat sortu" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Erabiltzaile-izena" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10434,16 +10499,11 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Eremuak" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -10528,7 +10588,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" @@ -10589,10 +10649,6 @@ msgstr "Pribilegioak arrakastaz berkargatu dira." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10724,12 +10780,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10737,871 +10793,161 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Kontsulta mota" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Use delayed inserts" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Jasota" + +#: server_status.php:168 +msgid "Sent" +msgstr "Bidalita" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Taulak erakutsi" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Erratutako saiakerak" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Deuseztatua" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Komandoa" -#: server_status.php:822 -#, fuzzy -msgid "Runtime Information" -msgstr "Saioa hasteko informazioa" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Errenkada kopurua orriko" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Egilea:" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Pasahitza ez aldatu" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Taulak erakutsi" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Taulak erakutsi" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Erlazioak" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Kontsulta mota" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funtzioak" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Sententziak" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Jasota" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Bidalita" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Erratutako saiakerak" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Deuseztatua" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Komandoa" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Fitxategiaren karaktereen kodeketa:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Kontsulta mota" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lar" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Gehitu %s zutabe" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11610,7 +10956,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11618,18 +10964,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11637,11 +10983,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11649,89 +10995,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy msgid "Preset chart" msgstr "Taula berrizendatu izen honetara: " -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Taulak hautatu" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Erabiltzaile berria gehitu" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL kontsulta" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Errenkadaren estatistikak" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Taulak hautatu" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kontsulta mota" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11739,7 +11085,7 @@ msgid_plural "%d seconds" msgstr[0] "segunduko" msgstr[1] "segunduko" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11747,6 +11093,623 @@ msgid_plural "%d minutes" msgstr[0] "lanean" msgstr[1] "lanean" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Sententziak" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Pasahitza ez aldatu" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Taulak erakutsi" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Taulak erakutsi" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Erlazioak" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Fitxategiaren karaktereen kodeketa:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Kontsulta mota" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12326,152 +12289,152 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Kontsulta mota" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Datu-baserik ez" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Datuak" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Ezabatu taula honetako jarraipen datuak" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Zerbitzariaren bertsioa" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" @@ -12614,12 +12577,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL kontsulta" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy msgid "The slow query log is disabled." msgstr "Kontsulta mota" @@ -12634,129 +12597,139 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Taulak hautatu" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Zerbitzariaren bertsioa" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "PHP Bertsioa" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Deskribapena" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL karaktere-multzoa" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy msgid "The query cache is not enabled." msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12764,21 +12737,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s taula(k)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13156,286 +13129,286 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "Kontsulta osoak erakutsi" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Kontsulta osoak erakutsi" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "Kontsulta osoak erakutsi" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Kontsulta osoak erakutsi" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Orri berri bat sortu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy msgid "Thread cache is not efficient." msgstr "Kontsulta mota" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Konexioak" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Konexioak" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13564,20 +13537,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13592,7 +13565,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13601,25 +13574,64 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB bidali azken freskatzetik" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB jasoak azken freskatzetik" + +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Zerbitzariaren trafikoa (KiBtan)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Konexio azken freskatzetik" + +#~ msgid "Questions since last refresh" +#~ msgstr "Galdera azken freskatzetik" + +#, fuzzy +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Galdera (zerbitzariak exekutatuak)" + +#, fuzzy +#~ msgid "Runtime Information" +#~ msgstr "Saioa hasteko informazioa" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Errenkada kopurua orriko" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Egilea:" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Kontsulta mota" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/fa.po b/po/fa.po index 30461f5639..4897eedd62 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:02+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Persian " -"\n" -"Language: fa\n" +"Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "جستجو" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "تاييد" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "نام کلیدی" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "توضیحات" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "پایگاه داده %1$s ایجاد شد." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "توضيحات پایگاه داده: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "توضيحات جدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "ستون" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "نوع" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "خالي" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "خالي" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "پيش‌فرض" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "پيش‌فرض" msgid "Links to" msgstr "پيوند به" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "توضيحات" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "خير" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "خير" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "بلي" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "جدول" @@ -338,7 +338,7 @@ msgstr "اندازه" msgid "in use" msgstr "در حال استفاده" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "در حال استفاده" msgid "Creation" msgstr "ایجاد" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "ایجاد" msgid "Last update" msgstr "آخرین به روز رسانی" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "جدول های پیگیری شده" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "پايگاه داده" @@ -414,17 +414,17 @@ msgstr "پايگاه داده" msgid "Last version" msgstr "آخرین نسخه" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "ایجاد شده" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "وضعیت" @@ -439,7 +439,7 @@ msgstr "عمل" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "نمايش" @@ -455,11 +455,11 @@ msgstr "اطلاعات پیگیری شده برای این جدول را پاک msgid "Drop" msgstr "حذف" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "غیر فعال" @@ -467,11 +467,11 @@ msgstr "غیر فعال" msgid "Versions" msgstr "نسخه ها" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "گزارشات دنبال شده" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "تصویر لحظه ای ساختار" @@ -539,45 +539,45 @@ msgstr "استفاده از OpenStreetMaps به عنوان لایه پایه" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "هندسه" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "درجه %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "افزودن درجه جديد" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "رشته خطی" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "حلقه خارجی" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "حلقه داخلی" @@ -585,15 +585,15 @@ msgstr "حلقه داخلی" msgid "Add a linestring" msgstr "افزودن يك رشته خطی" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "افزودن يك حلقه داخلی" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "چند گوشه" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "افزودن یک چند ضلعی" @@ -736,8 +736,9 @@ msgstr "" msgid "Database server" msgstr "پايگاههاي داده" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "سرور" @@ -758,7 +759,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "كاربر" @@ -992,12 +993,12 @@ msgstr "ويرايش امتيازات" msgid "Removing Selected Users" msgstr "حذف کاربران انتخاب شده" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "بستن" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1007,15 +1008,15 @@ msgstr "بستن" msgid "Edit" msgstr "ويرايش" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "نمودار ترافیک لحظه ای" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "نمودار روند./اجرا لحظه ای" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "نمودار پرسو جوی لحظه ای" @@ -1026,13 +1027,14 @@ msgstr "اطلاعات ثابت" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "دیگر" @@ -1047,48 +1049,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "کیلو بایت در آخرین رفرش ارسال شد" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "کیلو بایت در آخرین رفرش دریافت شد" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "ترافیک سرور (کیلو بایت)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "اتصال ها در آخرین رفرش" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "پروسه ها" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "اتصالات / پروسه ها" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "سوالات در آخرین رفرش" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "سوالات(بخش های اجرا شده توسط سرور)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "آمار پرس و جو" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "تنظیمات مانیتور محلی سازگار نیست" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1099,196 +1067,201 @@ msgstr "" "تنظیمات فعلی شما دیگر کار نکند.لطفا از منوی تنظیمات تنظیمات خود را به حالت " "اولیه برگردانید." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "میزان کارایی کش کوئری" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "فضاي استفاده‌شده" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "فضاي استفاده‌شده" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "میزان استفاده از CPU سیستم" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "حافظه سیستم" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "swap سیستم" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "مگا بايت" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "كيلوبايت" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "بار میانگین" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "کل حافظه" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "حافظه کش" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "حافظه بافر" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "حافظه آزاد" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "حافظه استفاده شده" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap کل" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap کش شده" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Swap استفاده شده" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Swap آزاد" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "میزان بایت ارسالی" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "میزان بایت دریافتی" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "اتصالات" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "پروسه ها" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "بايت" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "كيلوبايت" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "مگا بايت" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "اگزا بايت" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d جدول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "سوالات" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "ترافیک" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "تنظیم" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "حذف نمودار" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "ویرایش عنوان و برچسب ها" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "اضافه کردن نمودار به جدول" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "هیچ یک" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "به حالت قبل برگرداندن مانیتور" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "توقف مانیتور" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log فعال شدند." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log فعال شد." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log فعال است." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log are غیر فعال می باشند." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output به جدول تنظیم نشده است." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output به جدول تنظیم شده است." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1299,42 +1272,42 @@ msgstr "" "ثانیه طول کشیده باشند. بهتر است این مقدار را بین 0-2 بسته به سیستم خود قرار " "دهید." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time روی %d ثانیه تنظیم شده است." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "بعد از ری استارت سرور این تنظیمات به حالت پیش فرض برمیگردد:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "ذخيره به صورت پرونده %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "فعال سازی %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "غیر فعال سازی %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time را به %ds تنظیم نمایید" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1342,53 +1315,53 @@ msgstr "" "شما این مقادیر را نمی توانید تغییر دهید. لطفا به عنوان root وارد شوید و یا " "با مدیر پایگاه داده تماس بگیرید." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "تغيير تنظیمات" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "تنظیمات فعلی" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "عنوان نمودار" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "تفاوت" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "تقسیم بر %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "واحد" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "از slow log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "از لاگ عمومی" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "آنالیز لاگ ها" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "در حال آنالیز و بارگیری لاگ. ممکن است مدتی زمان بگیرد." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "لغو کردن" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1398,7 +1371,7 @@ msgstr "" "کوئری SQL به عنوان ضابطه استفاده شده است، بنابراین بقیه مشخصات کوئری ها " "مانند زمان شروع ممکن است متفاوت باشند." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1407,98 +1380,98 @@ msgstr "" "چون دسته بندی کوئری Insert انتخاب شده است ، کوئری Insert در همان جدول نیز " "دسته بندی می شود بدون در نظر گرفتن داده های ورودی." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "لاگ داده ها بارگیری شد. کوئری هایی که در این دوره اجرا شده اند:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "پرش به جدول لاگ ها" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "اطلاعاتی یافت نشد" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "لاگ ها آنالیز شد، اما چیزی در این بازه زمانی یافت نشد." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "در حال آنالیز…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "شرح دادن خروجی" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "زمان" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "زمان کل:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "دسته بندی نتایج" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "جدول" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "نمودار" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "نمودار ویرایش" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "سری" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "آمار پايگاههاي داده" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "فیلتر" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "فیلتر کوئری ها به وسیله لغت/عبارت باقاعده:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "دسته کوئری ها،در نظر نگرفتن قسمت Where" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "تعداد سطرها در هر صفحه:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "مجموع:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "بارگیری لاگ ها" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "مانیتور رفرش ریت" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1507,260 +1480,262 @@ msgstr "" "هنگامی که اطلاعات جدید نمودار ارسال شد ، سرور جواب غلطی داد. این بیشتر به " "دلیل پایان زمان سشن شما می باشد.صفحه را رفرش کنید و دوباره وارد شوید." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "باز کردن مجدد صفحه" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "سطر تحت تاثیر قرار گرفته:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "تجزیه ی فایل های پیکربندی شده ناموفق بود .این کد معتبر برای JSON به نظر " "نمیرسد." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "ایجاد خطا در تقسیم بندی نمودار(چارت گرید) به واسطه تنظیمات غلط.باز گرداندن " "به تنظیمات پیش فرض …" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "صدور" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "وارد کردن تنظیمات مانیتور" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "لطفا فایلی را که میخواهید وارد کنید را انتخاب کنید " -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "آنالیز پرسجو" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "سیستم مشاور" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "امکان وجود مشکلات اجرایی" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "موضوع" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "پیشنهادات" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "جزئیات قانون" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "توجیهات" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "متغیر استفاده شده / فورمول" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "امتحان کردن" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "لغو کردن" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "در حال بارگیری" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "پردازش درخواست" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "خطا در پردازش درخواست" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "حذف ستون" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "اضافه کردن کلید اولیه" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "تاييد" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "برای حذف کردن این اطلاعات کلیک کن" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "بازناميدن پایگاه داده" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "به روز سازی پایگاه داده" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "کپی کردن پایگاه داده" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "تغییر نویسهگان" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "ورود اطلاعات" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "نمایش فهرست ها" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "فعال" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "غيرفعال" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "جستجو" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "نمایش نتایج" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "مشاهده" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "پاک کردن" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعریف یک تابع ذخیره شده باید شامل یک دستور بازگشت باشد!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ویرایشگر ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "تعداد ستون ها %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "مقادیر ستون جدید" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "هر کدام از مقادیر را در یک فیلد وارد کنید" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "اضافه کردن مقدار %d" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "توجه داشته باشید:اگر این فایل شامل جداول چند گانه میباشد,انها به یکی تبدیل " "خواهند شد" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "مخفی کردن جعبه پرس و جو" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "نمایش جعبه پرس و جو" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "هیچ سطری انتخاب نشده است" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "تغيير" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "زمان اجرای پرس و جو" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d شماره ردیف معتبر نمی باشد." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1769,91 +1744,91 @@ msgstr "%d شماره ردیف معتبر نمی باشد." msgid "Save" msgstr "ذخيره" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "زوم جستجو" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "هر نقطه نشان دهنده یک سطر داده ها." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "برچسب ن برفزار یک نقطه نشان داده خواهد شد." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "برای بزرگنمایی,یک بخش را با موس انتخاب نمایید." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "با کیک بر روی داده ها ان ها را بینید و احتمالا ردیف داده ها راویرایش کنید." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "تغییر اندازه طرح با کشیدن آن در امتداد گوشه پایین سمت راس میتواند انجام " "گیرد." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "انتخاب دو ستون" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "انتخاب دو ستون متفاوت" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "نتایج پرس و جو" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "کپی" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "افزودن ستونها" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "انتخاب کلید اشاره" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "انتخاب کلید خارجی" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "لطفا کلید اولیه و یا یک کلید منحصر به فرد را انتخاب کنید" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1861,15 +1836,20 @@ msgstr "" "تغییر در طرح شما ذخیره نشده است. آنها از دست خواهد رفت اگر شما آنها را ذخیره " "نکنید. ایا شما میخواهید ادامه دهید؟" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "اضافه کردن تنظیمات برای ستون " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "دکمه ی escape را برای صرفنظر کردن از ویرایش" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1877,27 +1857,27 @@ msgstr "" "شما مقداری داده ویرایش کردید و ان ها ذخیره نشده اند.ایا شما برای ترک این " "صفحه بدون ذخیره کردن داده ها اطمینان دارید؟" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "برای دوباره مرتب کردن drag کنید" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "برای مرتب کردن کلیک کنید" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "با کلیک بر روی منوی کشویی
فلش به ضامن دید ستون" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1905,7 +1885,7 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1915,65 +1895,65 @@ msgid "" msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "به لینک بروید" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "نام ستونها" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Start" msgid "Show data row(s)" msgstr "شنبه" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "بیشتر" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "نمايش همه" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1983,25 +1963,25 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "به روز" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "انجام شد" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2009,242 +1989,242 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "امروز" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "ژانویه" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "فوریه" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "مارس" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "آوريل" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "مي" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "ژوئن" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "جولاي" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "آگوست" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "سپتامبر" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "اكتبر" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "نوامبر" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "جمعه" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "هفته" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "ساعت" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "ثانیه" @@ -2294,16 +2274,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "در ثانیه" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "در دقیقه" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "در ساعت" @@ -2329,7 +2309,7 @@ msgstr "اندازه فونت" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "صعودي" @@ -2338,7 +2318,7 @@ msgstr "صعودي" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "نزولي" @@ -2452,7 +2432,7 @@ msgstr "داده های همتا در جدول %s حذف شوند؟" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "حذف" @@ -2635,7 +2615,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "از کار انداختن" @@ -2692,12 +2672,13 @@ msgstr "انتخاب همه" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" @@ -2705,7 +2686,7 @@ msgstr "صدور" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2789,16 +2770,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "از اینجا نیاز به فعال سازی کوکی ها دارید." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2810,21 +2791,21 @@ msgstr "هيچ فهرستي تعريف‌نشده‌است!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2834,13 +2815,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "مقایسه" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "توضيحات" @@ -2883,7 +2864,7 @@ msgstr "نمایه" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "ساختار" @@ -2956,38 +2937,39 @@ msgstr "رویدادها" msgid "Designer" msgstr "طرّاح" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "كاربر" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "دودويي" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "تکرار" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "موتور" @@ -3035,6 +3017,106 @@ msgstr "جدول های اخیر" msgid "There are no recent tables" msgstr "جدول های اخیری وجود ندارد." +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "پرس و جوي SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "وروديهاي تمديدشده" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "جدولها" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "فایل ها" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "نمايش جدولها" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB حالت" + +#: 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." @@ -3132,7 +3214,7 @@ msgstr "عمليات" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "مقدار" @@ -3533,11 +3615,6 @@ msgstr "" msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "پرس و جوي SQL" - #: libraries/Util.class.php:710 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:292 @@ -3572,7 +3649,7 @@ msgid "Create PHP Code" msgstr "ساخت كد PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "بارگیری مجدد" @@ -3670,13 +3747,6 @@ msgstr "چاپ" msgid "shared" msgstr "به اشتراک گذاشته شده" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "جدولها" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3717,61 +3787,61 @@ msgstr "تنظیمات دسترسی به پایگاه داده "%s" ر msgid "Check Privileges" msgstr "چک سطح دسترسی" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "در خواندن فایل تنظیمات ناموفق بود" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" "معمولا به معنی وجود خطا می باشد، لطفا خطاهای نمایش داده شده زیر را چک کنید." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "فایل تنظیمات اولیه را نمی توان بارگیری نمود: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "ایندکس غلط در سرور : %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "نام هاست برای سرور %1$s اشتباه است. لطفا تنظیمات خود را بازبینی نمایید." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "شما باید به %s %s یا جدیدتر به روز شوید." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "احتمال وجود exploit" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "کلید عددی یافت شد" @@ -5829,8 +5899,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "نام كاربر" @@ -6462,10 +6532,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB حالت" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "مقداراستفاده از حافظه بافر" @@ -7122,18 +7188,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "تغيير جدول مرتب شده با" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7252,17 +7318,17 @@ msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "فقط ساختار" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "ساختار و داده‌ها" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "فقط داده‌ها" @@ -7682,8 +7748,7 @@ msgstr "نمايش خصوصيات" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "ميزبان" @@ -8206,7 +8271,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "متغییر" @@ -8744,7 +8809,7 @@ msgstr "ويژگيها" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "اضافي" @@ -9430,7 +9495,7 @@ msgstr "پیشوند را به جدول اضافه کنید" msgid "Check tables having overhead" msgstr "جدول هایی که سربار دارند را چک کنید" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -9796,7 +9861,7 @@ msgstr "تعویض کوچک/بزرگ" msgid "Toggle relation lines" msgstr "تعویض خطوط رابط" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "وارد/صدور مختصات برای طرح های PDF" @@ -9864,31 +9929,31 @@ msgstr "صفحه مورد نظر ایجاد گردید" msgid "Page creation failed" msgstr "ایجاد صفحه ممکن نیست" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "صفحه" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "وادر کردن اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "صدور اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "ایجاد صفحه و صدور اطلاعات به آن" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "نام صفحه جدید : " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "صدور / وارد کردن اطلاعات برای مقیاس" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "پیشنهاد شده" @@ -10006,15 +10071,11 @@ msgstr "فایل وجود ندارد" msgid "Select binary log to view" msgstr "سابقه بانری را برای مشاهده انتخاب کنید" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "فایل ها" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "پاک کردن کوئری های نمایش داده شده" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "نمایش کامل کوئری" @@ -10098,7 +10159,7 @@ msgstr "ماژول" msgid "Library" msgstr "کتابخانه" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "نسخه" @@ -10155,10 +10216,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10290,877 +10347,170 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "وروديهاي تمديدشده" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "نمايش جدولها" - -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:822 -#, fuzzy -msgid "Runtime Information" -msgstr "اطلاعات ورود" - -#: server_status.php:830 -msgid "All status variables" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:832 -msgid "Monitor" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "شناسه" -#: server_status.php:834 -msgid "Advisor" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "دستور" -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "تعداد سطرها در هر صفحه" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "توليد‌شده توسط" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "عدم تغيير اسم رمز" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "نمايش جدولها" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "نمايش جدولها" - -#: server_status.php:930 -#, fuzzy -msgid "Related links:" -msgstr "عمليات" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query" -msgid "Run analyzer" -msgstr "پرس و جو" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "تابع" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "شرج" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "شناسه" - -#: server_status.php:1338 -msgid "Command" -msgstr "دستور" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "مجموعه كاراكترهاي پرونده:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "پیگردی فعال نمی باشد." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "شنبه" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "افزودن ستون جديد" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11169,7 +10519,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11177,18 +10527,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11196,11 +10546,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11208,103 +10558,718 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "حذف پایگاه داده" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "افزودن يك كاربر جديد" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "پرس و جوي SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "آمار سطرها" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Select Tables" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "پرس و جو" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] " ثانیه" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "دقیقه" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "شرج" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "عدم تغيير اسم رمز" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "نمايش جدولها" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "نمايش جدولها" + +#: server_status_variables.php:133 +#, fuzzy +msgid "Related links:" +msgstr "عمليات" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "مجموعه كاراكترهاي پرونده:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "پیگردی فعال نمی باشد." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11883,149 +11848,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "پرس و جو" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "No databases" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "داده" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "نسخه سرور" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "نسخه سرور" @@ -12167,12 +12132,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "پرس و جوي SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "Tracking is not active." msgid "The slow query log is disabled." @@ -12188,129 +12153,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log فعال است." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Select Tables" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "نسخه سرور" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "فارسي" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "توضیحات" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "مجموع كاراكترهاي MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Space usage" msgid "Query cache disabled" msgstr "فضاي استفاده‌شده" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." msgstr "پیگردی فعال نمی باشد." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12318,23 +12295,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Space usage" msgid "Query caching method" msgstr "فضاي استفاده‌شده" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Space usage" msgid "Suboptimal caching method." msgstr "فضاي استفاده‌شده" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s جدول" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12711,110 +12688,110 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "پرس و جوي SQL" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "است key_buffer_size 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "پرس و جوي SQL" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "پرس و جوي SQL" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "درصد index از حافظه خوانده شده" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "شما ممکن است نیاز به افزایش key_buffer_size داشته باشید." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "ساخت يك صفحه جديد" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -12822,7 +12799,7 @@ msgstr "" "تعداد فایل های باز به حداکثر نزدیک می گردد. ممکن است خطای \"تعداد زیاد فایل " "باز\" بگیرید." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -12830,168 +12807,168 @@ msgstr "" "می توانید با افزایش {open_files_limit}، و چک کردن سابقه اجرایی در هنگام " "اجرای مجدد." -#: libraries/advisory_rules.txt:332 +#: 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 "تعداد فایل های باز %s%% از محدوده است.این باید کمتر از 85%% باشد" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "میزان فایل های باز" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "میزان فایل های باز زیاد است." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "میزان فایل های باز : %s ، این مقدار باید کمتر از 5 عدد در ساعت باشد" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "پیگردی فعال نمی باشد." -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "پیگردی فعال نمی باشد." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "پیگردی فعال نمی باشد." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "پیگردی فعال نمی باشد." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy msgid "Percentage of used connections" msgstr "توضيحات جدول" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy msgid "Percentage of aborted connections" msgstr "توضيحات جدول" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "حداکثر اندازه ورود به سیستم InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13115,20 +13092,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13143,7 +13120,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13152,26 +13129,62 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "با قرار دادن 1 concurrent_insert را فعال کنید" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy msgid "concurrent_insert is set to 0" msgstr "مقدار concurrent_insert صفر میباشد" +#~ msgid "KiB sent since last refresh" +#~ msgstr "کیلو بایت در آخرین رفرش ارسال شد" + +#~ msgid "KiB received since last refresh" +#~ msgstr "کیلو بایت در آخرین رفرش دریافت شد" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "ترافیک سرور (کیلو بایت)" + +#~ msgid "Connections since last refresh" +#~ msgstr "اتصال ها در آخرین رفرش" + +#~ msgid "Questions since last refresh" +#~ msgstr "سوالات در آخرین رفرش" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "سوالات(بخش های اجرا شده توسط سرور)" + +#, fuzzy +#~ msgid "Runtime Information" +#~ msgstr "اطلاعات ورود" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "تعداد سطرها در هر صفحه" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "توليد‌شده توسط" + +#, fuzzy +#~| msgid "Query" +#~ msgid "Run analyzer" +#~ msgstr "پرس و جو" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/fi.po b/po/fi.po index 4edc3d2121..3107d15b1b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Finnish " -"\n" -"Language: fi\n" +"Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Etsi" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Suorita" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Avaimen nimi" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Kuvaus" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Taulun kommentit" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Sarake" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Sarake" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tyyppi" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tyyppi" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Tyhjä" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Oletusarvo" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Oletusarvo" msgid "Links to" msgstr "Viittaa sarakkeeseen" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Viittaa sarakkeeseen" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Kommentit" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ei" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Kyllä" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Taulu" @@ -338,7 +338,7 @@ msgstr "Koko" msgid "in use" msgstr "käytössä" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "käytössä" msgid "Creation" msgstr "Luotu" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Luotu" msgid "Last update" msgstr "Viimeksi päivitetty" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Seurattavat taulut" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Tietokanta" @@ -414,17 +414,17 @@ msgstr "Tietokanta" msgid "Last version" msgstr "Viimeinen versio" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Luotu" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Tila" @@ -439,7 +439,7 @@ msgstr "Toiminnot" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Näytä" @@ -455,11 +455,11 @@ msgstr "Poista tämän taulun seurantatiedot" msgid "Drop" msgstr "Tuhoa" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "käytössä" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ei käytössä" @@ -467,11 +467,11 @@ msgstr "ei käytössä" msgid "Versions" msgstr "Versiot" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" @@ -539,45 +539,45 @@ msgstr "Käytä perustasossa OpenStreetMaps-karttaa" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Piste" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Piste %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Lisää piste" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Rivimerkkijono" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Ulkoympyrä" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Sisäympyrä" @@ -585,15 +585,15 @@ msgstr "Sisäympyrä" msgid "Add a linestring" msgstr "Lisää rivimerkkijono" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Lisää sisäympyrä" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Monikulmio" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Lisää monikulmio" @@ -746,8 +746,9 @@ msgstr "asetukset" msgid "Database server" msgstr "Tietokanta käyttäjälle" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Palvelin" @@ -768,7 +769,7 @@ msgstr "Protokollan versio" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Käyttäjä" @@ -1025,12 +1026,12 @@ msgstr "Käyttöoikeusten uudelleenlataus" msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Sulje" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1040,15 +1041,15 @@ msgstr "Sulje" msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Liikennetaulu" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Elävä yhteys- ja prosessikaavio" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Elävä kyselykaavio" @@ -1059,13 +1060,14 @@ msgstr "Staattinen data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Toinen" @@ -1080,48 +1082,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "kt lähetetty viimeisen päivityksen jäkeen" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "kt vastaanotettu viimeisen päivityksen jälkeen" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Palvelimen kuormitus (kt:nä)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Yhteydenttoa viimeisestä päivityksestä" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Prosessit" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Yhteyttä / Prosessi" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Kysymyksiä viimeisestä päivityksestä lähtien" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Kysymyksiä (palvelimen suorittamat lauseet)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Kyselyn ominaisuuksia" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Paikallisen seurannan asetukset yhteensopimattomat" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1133,196 +1101,201 @@ msgstr "" "hyvin todennäköistä, että nykyiset asetukset eivät toimi enää. Palauta " "Asetukset-valikosta oletusasetukset." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Kyselyvälimuistin tehokkuus" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Kyselyvälimuistin käyttö" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Kyselyvälimuistia käytetty" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Järjestelmän prosessorin käyttö" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Järjestelmän muisti" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Järjestelmän sivutusmuisti" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "Mt" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "kt" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Keskimääräinen kuormitus" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Muistia yhteensä" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Puskuroitua muistia" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Puskuroitu muisti" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Vapaata muistia" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Käytetty muisti" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Yhteensä sivutusmuistia" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Välimuistissa oleva sivutus" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Käytetty sivutusmuisti" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Vapaata sivutusmuistia" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Tavua lähetetty" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Yhteydet" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prosessit" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "tavua" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "kt" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "Mt" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "Et" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d taulu(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Asetukset" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Poista kaavio" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Muokkaa otsikkoa ja selitteitä" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Lisää taulukko ruudukkoon" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Lisää sarjaan vähintään yksi muuttuja" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ei mitään" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Jatka seurantaa" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Keskeytä seuranta" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log ovat käytössä." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log on käytössä." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log on käytössä." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log ovat poissa käytöstä." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output on asetettu TABLE:ksi." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1333,12 +1306,12 @@ msgstr "" "kestävät yli %d sekuntia. On suositeltavaa asettaa long_query_time 0-2 " "sekuntiin riippuen järjestelmästäsi." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time on asetettu %d sekuntiin." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1347,30 +1320,30 @@ msgstr "" "palautetaan oletuksiin palvelimen uudelleenkäynnistyksen yhteydessä:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Aseta log_output arvoon %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Ota %s käyttöön" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Ota %s pois käytöstä" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Aseta long_query_time arvoon %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1378,53 +1351,53 @@ msgstr "" "Et voi muuttaa näitä muuttujia. Ole hyvä, ja kirjaudu root-käyttäjällä tai " "ota yhteyttä tietokantasi järjestelmänvalvojaan." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Muuta asetuksia" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Kaavion otsikko" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Ero" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Jaettu millä: %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Yksikkö" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Hitaasta lokista" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Yleisestä lokista" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyysilokit" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analysoidaan ja ladataan lokeja. Tämä kestää hetken." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Peruuta pyyntö" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1434,7 +1407,7 @@ msgstr "" "lukumäärän. Ryhmittelyn perusteena käytetään kuitenkin vain itse SQL-" "kyselyä, joten kyselyjen ominaisuudet, kuten aloitusaika, voivat olla muuta." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1443,98 +1416,98 @@ msgstr "" "Koska INSERT-kyselyjen ryhmittely on valittu, ryhmitellään INSERT-kyselyt " "samaan tauluun, riippumatta lisätyistä tiedoista." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Lokin tiedot on ladattu. Kyselyt suoritetaan tällä aikajänteellä:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Siirry lokitauluun" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Tietoa ei löydy" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Loki on analysoitu, mutta tietoja ei löydy annetulta aikajänteeltä." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analysointi…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Selitä SQL-kysely" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Aika" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Kokonaisaika:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profiloinnin tulokset" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Taulu" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Kaavio" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Muokkaa kaaviota" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Sarjat" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Kirjaa taulun suodatusvalinnat lokiin" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Suodatin" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Suodata kyselyjä hakusanalla/regexp-ilmaisulla:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Ryhmitä kyselyt, sivuuttaen WHERE-lauseiden muuttujatiedot" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Ryhmitettyjen rivien määrä:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Yhteensä:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Lokien lataus" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Seurannan päivitys epäonnistui" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1544,255 +1517,257 @@ msgstr "" "pyydettäessä. Tämä johtuu todennäköisimmin vanhentuneesta istunnosta. Lataa " "sivu uudestaan ja syötä kirjautumistiedot." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Lataa sivu uudelleen" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Käsitellyt rivit:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Asetustiedoston jäsennys epäonnistui. Vaikuttaa, että kyseessä on " "virheellistä JSON-koodia." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kaavioruudukon luonti ei onnistunut tuoduilla määrityksillä. Käytetään " "oletusmäärityksiä…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Tuo seuranta-asetukset" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Valitse tuotava tiedosto" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analysoi kysely" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Neuvontajärjestelmä" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mahdollisia suorituskykyongelmia" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Ongelma" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Suositus" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Säännön lisätiedot" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Perustelut" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Käytetty muuttuja / kaava" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Testaa" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Lataa" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Pyyntöä käsitellään" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Sarakkeen poisto" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Pääavaimen lisäys" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Poista tämä huomautus napsauttamalla" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Muuta tietokantojen nimiä" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Lataa tietokanta uudelleen" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Tietokannan kopiointi" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Merkistökoodauksen vaihtaminen" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Taulussa on oltava vähintään yksi kenttä" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Lisää taulu" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Piilota indeksit" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Näytä indeksit" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Viiteavaimen tarkastus:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Päällä)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Pois päältä)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Etsi" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Piilota hakutulokset" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Näytä hakutulokset" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Selaaminen" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Poisto" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Arvot sarakkeelle %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Arvot uudelle sarakkeelle" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Syötä jokainen arvo omaan kenttäänsä" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Lisää %d arvo(a)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Huom: Mikäli tiedostossa on useita tauluja, ne liitetään yhdeksi tauluksi" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Muokkaa" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Kyselyn suoritusaika" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1801,88 +1776,88 @@ msgstr "%d on virheellinen rivinumero." msgid "Save" msgstr "Tallenna" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Piilota hakukriteerit" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoomaushaku" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Kukin piste kuvaa tietoriviä." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Lähennä, valitse kohta hiirellä." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Näytä ja tarvittaessa muokkaa tietoriviä napsauttamalla tietopistettä." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kaavion kokoa voi muuttaa raahaamalla sen oikeata alakulmaa." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Valitse kaksi saraketta" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Valitse kaksi eri saraketta" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Kyselyn tulokset" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopioi" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Lisää sarakkeita" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1890,15 +1865,20 @@ msgstr "" "Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. " "Haluatko silti jatkaa?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Lisää valinta sarakkeelle " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1906,27 +1886,27 @@ msgstr "" "Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko " "varmasti poistua tältä sivulta ennen tietojen tallentamista?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Muunna järjestystä raahaamalla" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Lajittele painamalla" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Valitse tai poista valinta painamalla" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Kopoio kentän nimi kaksoisnäpäyksellä" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Muuta sarakkeen näkymistä
painamalla pudotusvalikon nuolta" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1935,7 +1915,7 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1946,64 +1926,64 @@ msgstr "" "Useimpia sarakkeita voi myös muokata
\n" "painamalla suoraan niiden sisältöä." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Useimpia sarakkeita voi myös muokata
\n" "painamalla suoraan niiden sisältöä." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Siirry linkkiin" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopioi kenttän nimi" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Näytä rivi(t)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Keksi" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Lisää" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Näytä kaikki" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Piilota indeksit" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2013,266 +1993,266 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "ajan tasalla" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Valmis" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Tänään" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Tammikuu" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Helmikuu" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Toukokuu" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Elokuu" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Syyskuu" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Lokakuu" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Marraskuu" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Joulu" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Vko" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Tunti" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekunti" @@ -2325,16 +2305,16 @@ msgstr "" "Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta " "löytyi \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "sekunnissa" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minuutissa" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "tunnissa" @@ -2362,7 +2342,7 @@ msgstr "Fonttikoko" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Nouseva" @@ -2371,7 +2351,7 @@ msgstr "Nouseva" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Laskeva" @@ -2487,7 +2467,7 @@ msgstr "Poista taulusta %s löytyneet tulokset?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Poista" @@ -2659,7 +2639,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Lopeta" @@ -2716,12 +2696,13 @@ msgstr "Valitse kaikki" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" @@ -2729,7 +2710,7 @@ msgstr "Vienti" msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2814,16 +2795,16 @@ msgstr "Ladattua (ja siirrettyä) tiedostoa ei voi lukea." msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javaskripti on oltava päällä tämän jälkeen" @@ -2835,21 +2816,21 @@ msgstr "Indeksiä ei ole määritelty!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinaliteetti" @@ -2859,13 +2840,13 @@ msgstr "Kardinaliteetti" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Aakkosjärjestys" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentti" @@ -2910,7 +2891,7 @@ msgstr "Näkymä" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Rakenne" @@ -2983,34 +2964,35 @@ msgstr "Tapahtumat" msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Käyttäjät" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binääriloki" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Kahdennus" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Liitännäiset" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Moottorit" @@ -3058,6 +3040,106 @@ msgstr "Äskeiset taulut" msgid "There are no recent tables" msgstr "Äskeisiä tauluja ei ole" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-kysely" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Käsittelijä" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Kyselyvälimuisti" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Säikeet" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Väliaikaista tietoa" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Viivästetyt lisäyslauseet" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Avainvälimuisti" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Liitokset" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Lajittelu" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Taulut" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaktion koordinaattori" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Tiedostot" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Tyhjennä (sulje) kaikki taulut" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Näytä avoimet taulut" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Näytä alipalvelimet" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Näytä isäntäpalvelimen tila" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Näytä alipalvelimen tila" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Tyhjennä kyselymuisti" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB:n tila" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Kyselyn ominaisuuksia" + +#: libraries/ServerStatusData.class.php:349 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Näytä alipalvelimen tilan taulu" + +#: 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." @@ -3155,7 +3237,7 @@ msgstr "Operaattori" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Arvo" @@ -3560,11 +3642,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-kysely" - #: libraries/Util.class.php:710 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:292 @@ -3599,7 +3676,7 @@ msgid "Create PHP Code" msgstr "Luo PHP-koodi" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Päivitä" @@ -3695,13 +3772,6 @@ msgstr "Tulosta" msgid "shared" msgstr "jaettu" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Taulut" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3742,11 +3812,11 @@ msgstr "Hallitse tietokannan "%s" käyttöoikeuksia." msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Asetustiedostoa ei voi lukea" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3754,50 +3824,50 @@ msgstr "" "Tämä johtuu tavallisesti siinä olevasta syntaksivirheestä, tarkista kaikki " "alla näkyvät virheet." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] täytyy määritellä asetustiedostossa!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "mahdollinen turva-aukko" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numeerinen avain tunnistettu" @@ -6026,8 +6096,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Käyttäjänimi" @@ -6671,10 +6741,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB:n tila" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Puskurivarannon käyttö" @@ -7384,18 +7450,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Lajittele taulu" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7493,17 +7559,17 @@ msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Vain rakenne" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Rakenne ja tiedot" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Vain tiedot" @@ -7913,8 +7979,7 @@ msgstr "Näytä MIME-tyypit" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Palvelin" @@ -8530,7 +8595,7 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Muuttuja" @@ -9126,7 +9191,7 @@ msgstr "Attribuutit" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Lisätiedot" @@ -9842,7 +9907,7 @@ msgstr "Lisää etuliite tauluun" msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10223,7 +10288,7 @@ msgstr "Vaihda pieneksi/suureksi" msgid "Toggle relation lines" msgstr "Valitaksesi relaation, paina :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" @@ -10303,35 +10368,35 @@ msgstr "Taulu %1$s on luotu." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sivua" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Tuo tiedostoja" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Vie valitulle sivulle" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Luo sivu ja vie se" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Uuden sivun nimi: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "suositus" @@ -10458,15 +10523,11 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Tiedostot" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Lyhennä näytettävät kyselyt" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -10551,7 +10612,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versio" @@ -10612,10 +10673,6 @@ msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi" msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Näytä isäntäpalvelimen tila" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" @@ -10768,201 +10825,29 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status.php:657 -msgid "Handler" -msgstr "Käsittelijä" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Kyselyvälimuisti" - -#: server_status.php:659 -msgid "Threads" -msgstr "Säikeet" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Väliaikaista tietoa" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Viivästetyt lisäyslauseet" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Avainvälimuisti" - -#: server_status.php:664 -msgid "Joins" -msgstr "Liitokset" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Lajittelu" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaktion koordinaattori" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Tyhjennä (sulje) kaikki taulut" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Näytä avoimet taulut" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Näytä alipalvelimet" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Näytä alipalvelimen tila" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Tyhjennä kyselymuisti" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Ajonaikaiset tiedot" - -#: server_status.php:830 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Näytä alipalvelimen tilan taulu" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Rivien määrä:" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Päivitä" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Suodatin" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Älä vaihda salasanaa" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Näytä avoimet taulut" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Näytä avoimet taulut" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relaatiot" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Kyselyn tyyppi" - -#: server_status.php:966 -#, fuzzy -msgid "Instructions" -msgstr "Tiedot" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Mukauta käynnistyssivua" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Tieto" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10970,18 +10855,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10989,11 +10874,11 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11001,47 +10886,337 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "Tunnus" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Komento" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +msgid "Instructions" +msgstr "Tiedot" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Käynnistä" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Käytä indeksiä/indeksejä" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Päivitä" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR-tekstikentän sarakkeet" + +#: server_status_monitor.php:521 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Virheiden hallinta:" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Palauta oletusarvoon" + +#: server_status_monitor.php:544 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Tiedot" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Tuhoa tietokanta" + +#: server_status_monitor.php:614 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Näytä alipalvelimen tilan taulu" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Valitse taulut" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Virheellinen taulun nimi" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Lisää uusi palvelin" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-kyselyt" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Näytä tilastot" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Valitse taulut" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Kyselyn tyyppi" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunti" +msgstr[1] "Sekunti" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuutti" +msgstr[1] "Minuutti" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Mukauta käynnistyssivua" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Tieto" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Suodatin" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Älä vaihda salasanaa" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Näytä avoimet taulut" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Näytä avoimet taulut" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relaatiot" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11052,16 +11227,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11073,11 +11248,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11085,7 +11260,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11093,7 +11268,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11101,23 +11276,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11127,7 +11302,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11138,7 +11313,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11146,7 +11321,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11156,7 +11331,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11165,7 +11340,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11178,7 +11353,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11190,35 +11365,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11228,7 +11403,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11240,11 +11415,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11252,7 +11427,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11260,11 +11435,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11272,7 +11447,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11286,55 +11461,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11342,35 +11517,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11379,52 +11554,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11433,7 +11608,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11442,26 +11617,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:1596 +#: server_status_variables.php:588 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 "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11472,27 +11647,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11503,18 +11678,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11522,39 +11697,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11567,7 +11742,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11576,19 +11751,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11596,11 +11771,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11609,7 +11784,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11617,17 +11792,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11635,13 +11810,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11649,14 +11824,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11665,25 +11840,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11695,7 +11870,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11705,11 +11880,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11721,226 +11896,16 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Käynnistä" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Käytä indeksiä/indeksejä" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Päivitä" - -#: server_status.php:1835 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR-tekstikentän sarakkeet" - -#: server_status.php:1851 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Virheiden hallinta:" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Palauta oletusarvoon" - -#: server_status.php:1856 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Tiedot" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Tuhoa tietokanta" - -#: server_status.php:1906 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Näytä alipalvelimen tilan taulu" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Valitse taulut" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Virheellinen taulun nimi" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Lisää uusi palvelin" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-kyselyt" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Näytä tilastot" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Valitse taulut" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Kyselyn tyyppi" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekunti" -msgstr[1] "Sekunti" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minuutti" -msgstr[1] "Minuutti" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12633,29 +12598,29 @@ msgstr "Viiteavaimen rajoitus" msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12663,131 +12628,131 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Älä välitä virheistä" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Seurantalauseet" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Poista tämän taulun seurantatiedot" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ei tietokantoja" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Päiväys" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL-vedos" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL-suoritus" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Näytä versiot" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Poista kohteen %s.%s seuranta" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Luo versio" @@ -12934,13 +12899,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time on asetettu %d sekuntiin." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Näytä kyselykenttä" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12958,133 +12923,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time on asetettu %d sekuntiin." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time on asetettu %d sekuntiin." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Valitse taulut" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Luo versio" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Versio" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Kuvaus" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-palvelimen merkistö" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Kyselyvälimuisti" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Palvelin ei vastaa" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13092,23 +13069,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Kyselyvälimuisti" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Kyselyvälimuisti" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s taulu" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13510,270 +13487,270 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Näytä SQL-kyselyt" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Luo taulu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Tuotavan tiedoston muoto" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Tuotavan tiedoston muoto" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Luo uusi taulu tietokantaan %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Lajittelupuskurin koko" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Lajittelupuskurin koko" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Lajittelupuskurin koko" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Avainvälimuisti" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Seuranta ei ole käytössä." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Seuranta ei ole käytössä." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Seuranta ei ole käytössä." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Lajittelupuskurin koko" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Hereillä olevien säikeiden määrä." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Hereillä olevien säikeiden määrä." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time on asetettu %d sekuntiin." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13781,48 +13758,48 @@ msgid "" "launch" msgstr "Hereillä olevien säikeiden määrä." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time on asetettu %d sekuntiin." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Jatkuvat yhteydet" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Jatkuvat yhteydet" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Liian monta yhtettä keskeytetty." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13937,17 +13914,17 @@ msgid "" "it should not be below 20%%" msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Puskurivarannon koko" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13961,24 +13938,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Puskurivarannon koko" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Puskurivarannon koko" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13993,7 +13970,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14002,31 +13979,67 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "Enim. yhtäaikaisia yhteyksiä" +#~ msgid "KiB sent since last refresh" +#~ msgstr "kt lähetetty viimeisen päivityksen jäkeen" + +#~ msgid "KiB received since last refresh" +#~ msgstr "kt vastaanotettu viimeisen päivityksen jälkeen" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Palvelimen kuormitus (kt:nä)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Yhteydenttoa viimeisestä päivityksestä" + +#~ msgid "Questions since last refresh" +#~ msgstr "Kysymyksiä viimeisestä päivityksestä lähtien" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Kysymyksiä (palvelimen suorittamat lauseet)" + +#~ msgid "Runtime Information" +#~ msgstr "Ajonaikaiset tiedot" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Rivien määrä:" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Päivitä" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Kyselyn tyyppi" + #, fuzzy #~| msgid "Show versions" #~ msgid "Show more actions" diff --git a/po/fr.po b/po/fr.po index ce133a169f..3849332baf 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" -"PO-Revision-Date: 2012-12-13 12:58+0200\n" -"Last-Translator: Michal Čihař \n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" +"PO-Revision-Date: 2012-12-15 19:26+0200\n" +"Last-Translator: Marc Delisle \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Rechercher" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Description" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Commentaire sur la base de données: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Commentaires sur la table" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Colonne" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Colonne" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Défaut" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Défaut" msgid "Links to" msgstr "Relié à" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Commentaires" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Non" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Oui" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Table" @@ -338,7 +338,7 @@ msgstr "Taille" msgid "in use" msgstr "utilisé" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "utilisé" msgid "Creation" msgstr "Création" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Création" msgid "Last update" msgstr "Dernière modification" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Base de données" @@ -414,17 +414,17 @@ msgstr "Base de données" msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Créé" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "État" @@ -439,7 +439,7 @@ msgstr "Action" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Afficher" @@ -455,11 +455,11 @@ msgstr "Supprimer les données de suivi de cette table" msgid "Drop" msgstr "Supprimer" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "actif" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "non activé" @@ -467,11 +467,11 @@ msgstr "non activé" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Instantané" @@ -541,45 +541,45 @@ msgstr "Utiliser OpenStreetMaps comme couche de base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Géométrie" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Point" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Point %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Ajouter un point" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Ligne" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Anneau extérieur" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Anneau intérieur" @@ -587,15 +587,15 @@ msgstr "Anneau intérieur" msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygone" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Ajouter un polygone" @@ -733,8 +733,9 @@ msgstr "Plus de paramètres" msgid "Database server" msgstr "Serveur de base de données" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Serveur" @@ -753,7 +754,7 @@ msgstr "Version du protocole" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Utilisateur" @@ -999,12 +1000,12 @@ msgstr "Chargement des privilèges en cours" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Fermer" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1014,15 +1015,15 @@ msgstr "Fermer" msgid "Edit" msgstr "Modifier" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Graphique du trafic en temps réel" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Graphique des connexions et processus en temps réel" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Graphique des requêtes en temps réel" @@ -1033,13 +1034,14 @@ msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Autres" @@ -1054,48 +1056,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Kio transmis depuis le dernier rafraîchissement" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Kio reçus depuis le dernier rafraîchissement" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Trafic du serveur (en Kio)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Connexions depuis le dernier rafraîchissement" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processus" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Connexions / Processus" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Questions depuis le dernier rafraîchissement" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Questions (énoncés exécutés par le serveur)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistiques sur les requêtes" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "La configuration locale de la surveillance est incompatible" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1107,196 +1075,201 @@ msgstr "" "courante ne fonctionnera probablement pas. Veuillez réinitialiser votre " "configuration via le menu Paramètres." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efficacité de la cache de requêtes" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Utilisation de la cache de requêtes" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Cache de requêtes utilisée" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Utilisation processeur" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Mémoire système" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Zone d'échange" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "Mio" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "Kio" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Charge moyenne" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Mémoire système" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Mémoire cache" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Mémoire-tampon" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Mémoire libre" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Mémoire utilisée" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Zone d'échange totale" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Zone d'échange en cache" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Zone d'échange utilisée" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Zone d'échange libre" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Octets envoyés" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Connexions" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processus" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "o" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "Kio" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "Mio" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "Eio" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Paramètres" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Supprimer le graphique" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Éditer titre et étiquettes" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Ajouter graphique à la grille" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Veuillez ajouter au moins une variable à la série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Aucune" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Reprendre la surveillance" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Mettre la surveillance en pause" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log et slow_query_log sont activés." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log est activé." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log est activé." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "general_log et slow_query_log sont désactivés." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output n'est pas réglé à TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output est réglé à TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1307,12 +1280,12 @@ msgstr "" "prennent plus de %d secondes. Il est recommandé de régler long_query_time à " "0-2 secondes, selon votre système." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time est réglé à %d seconde(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1321,30 +1294,30 @@ msgstr "" "défaut lors du rémarrage du serveur : " #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Régler log_output à %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Activer %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Désactiver %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Régler long_query_time à %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1352,55 +1325,55 @@ msgstr "" "Vous ne pouvez changer ces variables. Connectez-vous en tant que root ou " "contactez l'administrateur du serveur." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Changer les paramètres" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Titre du graphique" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Différentiel" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Divisé par %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unité" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Depuis le journal des requêtes lentes" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Depuis le journal général" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyse des journaux en cours" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" "Analyse et chargement des journaux en cours. Ceci peut prendre un certain " "temps." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Annuler la requête" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1411,7 +1384,7 @@ msgstr "" "de regroupement, donc les autres propriétés des requêtes, comme l'heure de " "début, peuvent différer." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1420,98 +1393,98 @@ msgstr "" "Puisque le groupement des requêtes INSERT a été sélectionné, les requêtes " "INSERT vers une même table sont groupées, peu importe les données insérées." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Fichier journal chargé. Requêtes exécutées dans ce laps de temps : " -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Aller à la table du journal" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Aucune donnée" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Journal analysé, mais aucune donnée trouvée pour ce laps de temps." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyse en cours…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Moment" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Temps total : " -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profilage des résultats" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Tableau" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Modifier le graphique" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Séries" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Options de filtrage de la table journal" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtre" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrer les requêtes par mot ou expression régulière : " -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grouper les requêtes en ignorant la partie variable des clauses WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Somme des lignes regroupées : " -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total : " -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Chargement des journaux en cours" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Échec de rafraîchissement de la surveillance" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1520,254 +1493,256 @@ msgstr "" "Le serveur a retourné une réponse invalide. Votre session a probablement " "expiré. Veuillez recharger la page et vous connecter à nouveau." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Recharger la page" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Lignes modifiées : " -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Échec d'analyse du fichier de configuration. Il ne contient pas de code JSON " "valide." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Échec de construction du graphique avec la configuration importée. " "Réinitialisation à la configuration par défaut…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importer la configuration de surveillance" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Veuillez choisir le fichier à importer" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyser la requête" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Conseiller" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Impact de performance possible" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problème" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recommandation" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Détails de règle" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Alignement" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variable / formule utilisée" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Annuler" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Chargement en cours" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Requête en traitement" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Code d'erreur : %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Texte de l'erreur : %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Suppression de la colonne" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Ajout de clé primaire" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Cliquer pour éliminer ce message" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Changement de nom de la base de données" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Rafraîchir la base de données" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copie de la base de données" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "La table doit comporter au moins une colonne" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Insérer dans la table" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Cacher les index" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Montrer les index" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Vérification des clés étrangères : " -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Activée)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Désactivée)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "En recherche" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Cacher les résultats de recherche" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Afficher les résultats de recherche" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Affichage en cours" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valeurs pour la colonne %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valeurs pour une nouvelle colonne" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Saisir chaque valeur dans un champ séparé" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Ajouter %d valeur(s)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Note : si le fichier contient plusieurs tables, elles seront combinées" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Modifier" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Durée d'exécution de la requête" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1776,91 +1751,91 @@ msgstr "%d n'est pas un numéro de ligne valable." msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Recherche par zoom" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Chaque point représente une ligne de données." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Survoler un point montrera sa description." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pour zoomer, sélectionnez une section avec la souris." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Cliquez sur un point pour visualiser et possiblement éditer la ligne de " "données." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "L'image peut être redimensionnée en faisant glisser le coin inférieur droit." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Sélectionnez deux colonnes" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Sélectionnez deux colonnes différentes" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Opérations sur les résultats" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copier" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Ajouter des colonnes" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1868,15 +1843,20 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Ajouter une option pour la colonne " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "%d objet(s) créé(s)" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Appuyez sur la touche d'échappement pour annuler l'édition" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1884,27 +1864,27 @@ msgstr "" "Vous avez modifier des données non encore sauvegardées, êtes vous sûr de " "vouloir quitter cette page avant de sauvegarder ?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Cliquer pour trier" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Cliquer pour marquer/enlever les marques" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Double-cliquez pour copier le nom de la colonne" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1913,7 +1893,7 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne " "plus fonctionner après prise en compte de la modification." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1921,61 +1901,61 @@ msgstr "" "Vous pouvez aussi modifier la plupart des colonnes
en double-cliquant " "directement sur leur contenu." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Vous pouvez aussi modifier la plupart des colonnes
en cliquant " "directement sur leur contenu." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Suivre le lien" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copier le nom de la colonne" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Faites un clic-droit sur le nom de la colonne pour le copier vers le presse-" "papier." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Afficher les lignes correspondantes" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Générer" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "plus" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Montrer le panneau" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Cacher le panneau" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La page demandée n'existe pas dans l'historique, elle peut avoir expiré." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1985,266 +1965,266 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "à jour" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Fermer" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Janvier" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Février" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mars" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Avril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juin" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juillet" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Août" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Septembre" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Octobre" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembre" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Décembre" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Lundi" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Heure" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minute" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Seconde" @@ -2298,16 +2278,16 @@ msgstr "" "Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais \"%2" "$s\" a été trouvé" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "par seconde" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "par minute" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "par heure" @@ -2335,7 +2315,7 @@ msgstr "Taille du texte" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Croissant" @@ -2344,7 +2324,7 @@ msgstr "Croissant" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Décroissant" @@ -2458,7 +2438,7 @@ msgstr "Supprimer de la table %s les occurences ?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Effacer" @@ -2628,7 +2608,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Supprimer" @@ -2685,12 +2665,13 @@ msgstr "Tout cocher" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" @@ -2698,7 +2679,7 @@ msgstr "Exporter" msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2786,16 +2767,16 @@ msgstr "Impossible de lire le fichier téléversé (déplacé)." msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Cliquez sur la barre pour faire défiler en haut de page" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript doit être activé" @@ -2807,21 +2788,21 @@ msgstr "Aucun index n'est défini !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalité" @@ -2831,13 +2812,13 @@ msgstr "Cardinalité" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Interclassement" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Commentaire" @@ -2882,7 +2863,7 @@ msgstr "Vue" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Structure" @@ -2955,34 +2936,35 @@ msgstr "Événements" msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Utilisateurs" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Log binaire" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Réplication" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Moteurs" @@ -3030,6 +3012,104 @@ msgstr "Tables récentes" msgid "There are no recent tables" msgstr "Il n'y a pas de tables récentes" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Requête SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Gestionnaire" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Cache des requêtes" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Fils d'exécution" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Données temporaires" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Insertions avec délais" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Cache des clés" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Jointures" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Mécanisme de tri" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tables" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordonnateur des transactions" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Fichiers" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Fermer toutes les tables" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Montrer les tables ouvertes" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Montrer les serveurs esclaves" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Montrer l'état du maître" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Montrer l'état des serveurs esclaves" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Vider la cache des requêtes" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "État InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistiques sur les requêtes" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Toutes les variables d'état" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Surveillance" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Conseiller" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3128,7 +3208,7 @@ msgstr "Opérateur" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valeur" @@ -3587,11 +3667,6 @@ msgstr "Une énumération, choisie parmi la liste de valeurs définies" msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Requête SQL" - #: libraries/Util.class.php:710 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:292 @@ -3626,7 +3701,7 @@ msgid "Create PHP Code" msgstr "Créer source PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Actualiser" @@ -3723,13 +3798,6 @@ msgstr "Imprimer" msgid "shared" msgstr "partagé" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tables" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3770,11 +3838,11 @@ msgstr "Vérifier les privilèges pour la base de données "%s"." msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Impossible de lire le fichier de configuration" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3782,13 +3850,13 @@ msgstr "" "Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez " "vérifier si une erreur s'affiche plus bas." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" # OK -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3796,41 +3864,41 @@ msgstr "" "Le paramètre [code]$cfg['PmaAbsoluteUri'][/code] DOIT être renseigné dans " "votre fichier de configuration !" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Erreur: disparité du jeton" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Tentative d'écrasement de GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "vulnérabilité possible" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "Clé numérique détectée" @@ -6051,8 +6119,8 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Utilisateur" @@ -6705,10 +6773,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "État InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Utilisation de la mémoire-tampon" @@ -7411,16 +7475,16 @@ msgid_plural "%s other results found" msgstr[0] "%s autre résultat trouvé" msgstr[1] "%s autres résultats trouvés" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtrer par nom de base de données" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Effacer le filtrage" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtrer les éléments par nom" @@ -7516,17 +7580,17 @@ msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Structure seule" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Structure et données" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Données seulement" @@ -7923,8 +7987,7 @@ msgstr "Afficher les types MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Client" @@ -8529,7 +8592,7 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variable" @@ -9047,7 +9110,7 @@ msgstr "Attributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9758,7 +9821,7 @@ msgstr "Ajouter un préfixe à la table" msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Aucune" @@ -10104,7 +10167,7 @@ msgstr "Bascule agrandir/réduire" msgid "Toggle relation lines" msgstr "Basculement des lignes de relations" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" @@ -10170,31 +10233,31 @@ msgstr "La page a été créée" msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Page" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importer depuis la page sélectionnée" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exporter vers la page sélectionnée" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Créer une page et y exporter" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nom de la nouvelle page : " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exporter/Importer à l'échelle" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recommandé" @@ -10318,15 +10381,11 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Fichiers" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -10410,7 +10469,7 @@ msgstr "Module" msgid "Library" msgstr "Bibliothèque" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Version" @@ -10469,10 +10528,6 @@ msgstr "Le serveur maître est maintenant %s" msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Montrer l'état du maître" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" @@ -10616,131 +10671,102 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status.php:657 -msgid "Handler" -msgstr "Gestionnaire" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Cache des requêtes" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Ce serveur MySQL fonctionne depuis %1$s. Il a démarré le %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Fils d'exécution" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Ce serveur est un serveur maître et esclave dans le processus " +"de réplication." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Données temporaires" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Ce serveur est un serveur maître dans le processus de réplication." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Insertions avec délais" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Ce serveur est un serveur esclave dans le processus de " +"réplication." -#: server_status.php:663 -msgid "Key cache" -msgstr "Cache des clés" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Pour plus d'information sur l'état de la réplication sur ce serveur, " +"consultez la section de réplication." -#: server_status.php:664 -msgid "Joins" -msgstr "Jointures" +#: server_status.php:122 +msgid "Replication status" +msgstr "État de la réplication" -#: server_status.php:666 -msgid "Sorting" -msgstr "Mécanisme de tri" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Sur un serveur surchargé, la capacité des compteurs d'octets peut être " +"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " +"inexactes." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordonnateur des transactions" +#: server_status.php:149 +msgid "Received" +msgstr "Reçu" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Fermer toutes les tables" +#: server_status.php:168 +msgid "Sent" +msgstr "Envoyé" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Montrer les tables ouvertes" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "max. de connexions simultanées" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Montrer les serveurs esclaves" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Tentatives échouées" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Montrer l'état des serveurs esclaves" +#: server_status.php:253 +msgid "Aborted" +msgstr "Arrêts prématurés" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Vider la cache des requêtes" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informations sur le serveur" +#: server_status.php:329 +msgid "Command" +msgstr "Commande" -#: server_status.php:830 -msgid "All status variables" -msgstr "Toutes les variables d'état" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Surveillance" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Conseiller" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Nombre de points : " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Taux de rafraîchissement : " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtres" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Contenant le mot : " - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Afficher uniquement les valeurs d'alerte" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrer par catégorie..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Afficher les valeurs non formattées" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Liens connexes : " - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Lancer l'analyseur" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Consignes" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10748,7 +10774,7 @@ msgstr "" "Le conseiller peut donner des recommandations au sujet des variables de " "serveur." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10757,7 +10783,7 @@ msgstr "" "Veuillez noter que ce système se base sur de simples calculs et des règles " "de base qui ne s'appliquent pas nécessairement à votre serveur." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10767,7 +10793,7 @@ msgstr "" "(lisez la documentation) et de savoir comment défaire le changement. Un " "réglage incorrect peut affecter négativement la performance." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10777,832 +10803,39 @@ msgstr "" "serveur et défaire le changement si aucune amélioration mesurable ne s'est " "produite." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Questions depuis le démarrage : %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Information" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Trafic réseau depuis le démarrage : %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Ce serveur MySQL fonctionne depuis %1$s. Il a démarré le %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Ce serveur est un serveur maître et esclave dans le processus " -"de réplication." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Ce serveur est un serveur maître dans le processus de réplication." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Ce serveur est un serveur esclave dans le processus de " -"réplication." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Pour plus d'information sur l'état de la réplication sur ce serveur, " -"consultez la section de réplication." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "État de la réplication" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Sur un serveur surchargé, la capacité des compteurs d'octets peut être " -"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " -"inexactes." - -#: server_status.php:1191 -msgid "Received" -msgstr "Reçu" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Envoyé" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "max. de connexions simultanées" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Tentatives échouées" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Arrêts prématurés" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Commande" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Le nombre de connexions avortées en raison d'une interruption du client sans " -"fermeture adéquate de la connexion." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." - -#: server_status.php:1529 -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 "" -"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire " -"mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " -"temporaire pour stocker les énoncés de la transaction." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." - -#: server_status.php:1532 -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 "" -"Le nombre de tables temporaires sur disque créées automatiquement par le " -"serveur lors de l'exécution d'énoncés. Si la valeur du paramètre " -"Created_tmp_disk_tables est trop grande, augmentez la valeur de " -"tmp_table_size afin que les tables temporaires soient maintenues en mémoire " -"au lieu d'être sur disque." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Le nombre de fichiers temporaires créés par mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Le nombre de tables temporaires en mémoire créées automatiquement par le " -"serveur lors de l'exécution d'énoncés." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " -"survenue (probablement un doublon sur la clé)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " -"utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Le nombre de lignes écrites via INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Le nombre de commandes FLUSH exécutées." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Le nombre de commandes COMMIT internes." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." - -#: server_status.php:1541 -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 "" -"Le serveur MySQL peut demander au moteur de données NDB Cluster s'il connaît " -"une table portant un certain nom. Ceci est appelé "découverte". Ce " -"paramètre indique le nombre de fois que des tables ont été découvertes." - -#: server_status.php:1542 -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 "" -"Le nombre de fois que la première entrée a été lue depuis un index. Si c'est " -"élevé, ceci suggère que le serveur effectue beaucoup de parcours complets " -"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " -"colonne indexée." - -#: server_status.php:1543 -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 "" -"Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " -"bonne indication que vos tables sont correctement indexées." - -#: server_status.php:1544 -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 "" -"Le nombre de requêtes de lecture de la prochaine ligne, en ordre de clé. " -"Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " -"fourchette ou si vous parcourez l'index." - -#: server_status.php:1545 -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 "" -"Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " -"Utilisé surtout pour optimiser ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Le nombre de requêtes de lecture d'une ligne basée sur une position fixe. Ce " -"nombre est élevé si vous faites de nombreuses requêtes qui nécessitent de " -"trier les résultats. Vous avez probablement un grand nombre de requêtes qui " -"demandent à MySQL de parcourir des tables en entier, ou vous avez des " -"jointures qui n'utilisent pas correctement les clés." - -#: server_status.php:1547 -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 "" -"Le nombre de requêtes de lecture de la prochaine ligne dans le fichier. " -"Élevé si vous faites plusieurs parcours de tables. Ceci suggère que vos " -"tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " -"écrites de façon à tirer parti des index que vous avez définis." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Le nombre d'énoncés ROLLBACK internes." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Le nombre de requêtes d'insertion de lignes dans une table." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Le nombre de pages contenant des données." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Le nombre de pages contenant des données «dirty»." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Le nombre de pages libres." - -#: server_status.php:1555 -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 "" -"Le nombre de pages dans la réserve InnoDB. Ce sont des pages actuellement en " -"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " -"autre raison." - -#: server_status.php:1556 -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 "" -"Le nombre de pages occupées car elles ont été déallouées en raison de " -"verrous sur les enregistrements. Cette valeur peut également être calculée " -"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Taille totale de la réserve, en pages." - -#: server_status.php:1558 -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 "" -"Le nombre de lectures «discontinues» effectuées par InnoDB. Ceci survient " -"lorsqu'une requête doit balayer une large portion de table en ordre " -"discontinu." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " -"quand InnoDB fait un parcours séquentiel intégral de la table." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " -"à une lecture directe d'une page." - -#: server_status.php:1562 -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 "" -"Normalement, l'écriture dans la réserve InnoDB se passe en arrière-plan. " -"Cependant, s'il est nécessaire de lire ou de créer une page et qu'aucune " -"page n'est disponible, InnoDB doit attendre que des pages soient libérées. " -"Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " -"taille de la réserve est adéquate, cette valeur devrait être petite." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Le nombre d'écritures faites dans la réserve InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Le nombre d'opérations fsync() actuellement en attente." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Le nombre actuel de lectures en attente." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Le nombre actuel d'écritures en attente." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "La quantité d'octets lus jusqu'à présent." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Le nombre total de lectures de données." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Le nombre total d'écritures de données." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "La quantité d'octets écrits jusqu'à présent." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Le nombre d'opérations «doublewrite» effectuées." - -#: server_status.php:1574 -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 "" -"Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " -"fallait attendre qu'il se libère avant de continuer." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Le nombre d'écritures physiques au fichier témoin." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Le nombre d'écritures fsync() sur le fichier témoin." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Le nombre d'écritures du fichier témoin en attente." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Le nombre d'octets écrits sur le fichier témoin." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Le nombre de pages créées." - -#: server_status.php:1582 -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 "" -"La taille de page InnoDB telle que compilée (16 Ko par défaut). Plusieurs " -"valeurs sont comptées par page; la taille de page leur permet d'être " -"facilement converties en octets." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Le nombre de pages lues." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Le nombre de pages écrites." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Le nombre de verrous d'enregistrements actuellement en attente." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Le nombre de lignes supprimées des tables InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Le nombre de lignes insérées dans des tables InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Le nombre de lignes lues dans des tables InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." - -#: server_status.php:1594 -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 "" -"Le nombre de blocs de clés dans la cache de clés qui ont été modifiés mais " -"pas encore transférés sur disque. Anciennement connu sous le nom " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Le nombre de blocs inutilisés dans la cache de clés. Vous pouvez utiliser " -"cette valeur pour déterminer la proportion de la cache de clés qui est " -"utilisée." - -#: server_status.php:1596 -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 "" -"Le nombre maximum de blocs utilisés dans le cache. Il s'agit de la valeur " -"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " -"de clés." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." - -#: server_status.php:1599 -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 "" -"Le nombre de lectures physiques d'un bloc de clés depuis le disque. Si cette " -"valeur est élevée, la taille de votre mémoire tampon de clés est trop " -"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " -"requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Échecs dans la cache de clés, en calculant le taux de lectures physiques " -"comparé aux requêtes de lecture (valeur calculée)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " -"calculée)" - -#: server_status.php:1604 -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 "" -"Le coût total de la dernière requête compilée, tel que calculé par " -"l'optimiseur de requêtes. Utile pour comparer le coût de diverses stratégies " -"pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " -"été compilée." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Le nombre maximum de connexions simultanées depuis le démarrage du serveur." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " -"est probablement trop petite." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Le nombre de fichiers qui sont ouverts." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Le nombre de flux de données qui sont ouverts." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Le nombre de tables qui sont ouvertes." - -#: server_status.php:1611 -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 "" -"Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé " -"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " -"commande FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "La quantité de mémoire libre dans la cache de requêtes." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Le nombre de succès dans la cache." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Le nombre de requêtes ajoutées à la cache." - -#: server_status.php:1615 -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 "" -"Le nombre de requêtes qui ont été retirées de la cache pour libérer de la " -"mémoire afin de mettre en cache de nouvelles requêtes. Peut être utilisé " -"afin de peaufiner la taille de la cache. La stratégie utilisée pour " -"déterminer quelles requêtes seront retirées est LRU (least recently used)." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Le nombre de requêtes non en cache (impossible à placer en cache, ou non " -"cachée en raison du paramètre query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Le nombre de requêtes enregistrées dans la cache." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Le nombre total de blocs dans la cache de requêtes." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "L'état de la réplication sans échec (pas encore implantée)." - -#: server_status.php:1620 -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 "" -"Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " -"supérieure à 0, vérifiez soigneusement les indexes de vos tables." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Le nombre de jointures qui ont utilisé une recherche par plage sur une table " -"de référence." - -#: server_status.php:1622 -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 "" -"Le nombre de jointures sans clés qui vérifient l'utilisation de clé à chaque " -"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " -"tables.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Le nombre de jointures qui ont utilisé des plages sur la première table. " -"(Normalement non critique même si cette valeur est élevée.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" -"Le nombre de jointures qui ont nécessité le parcours complet de la première " -"table." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " -"SQL de l'esclave." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " -"a envoyé à nouveau des transactions." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Le nombre de fils d'exécution dont le temps de création a excédé " -"slow_launch_time secondes." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " -"secondes." - -#: server_status.php:1630 -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 "" -"Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " -"nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Le nombre de tri effectués avec des plages." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Le nombre de lignes triées." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Le nombre de tri effectués via un parcours de la table." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." - -#: server_status.php:1635 -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 "" -"Le nombre de fois qu'un verrou de table n'a pu être acquis immédiatement, " -"induisant un temps d'attente. Si ce nombre est élevé et que vous éprouvez " -"des problèmes de performance, commencez par optimiser vos requêtes, puis " -"subdivisez vos tables ou encore utiliser la réplication." - -#: server_status.php:1636 -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 "" -"Le nombre de fils dans la cache des fils d'exécution. Le taux peut être " -"calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " -"devriez augmenter la taille de cette cache." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Le nombre de connexions ouvertes actuellement." - -#: server_status.php:1638 -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 "" -"Le nombre de fils d'exécution créés afin de gérer les connexions. Si ce " -"nombre est trop grand, vous pourriez augmenter la valeur du paramètre " -"thread_cache_size. (Normalement, ceci ne procure pas une amélioration " -"perceptible de la performance si votre serveur gère correctement les fils " -"d'exécution.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Le nombre de fils d'exécution non suspendus." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Démarrer la surveillance" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Consignes / réglages" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Terminé de modifier les graphiques" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Ajouter un graphique" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Modifier les graphiques" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Colonnes du graphique" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Disposition du graphique" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11610,15 +10843,15 @@ msgstr "" "La disposition du graphique est stockée dans le navigateur. Vous pouvez " "vouloir l'exporter si vous avez une configuration complexe." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Ramener la valeur par défaut" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Consignes pour la surveillance" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11632,7 +10865,7 @@ msgstr "" "slow_query_log ou general_log. Cependant, general_log produit beaucoup de " "données et augmente jusqu'à 15% la charge du serveur" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11644,11 +10877,11 @@ msgstr "" "est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " "utiliser les graphiques de serveur." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Utilisation de la surveillance : " -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11658,7 +10891,7 @@ msgstr "" "pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " "«Paramètres», ou supprimer tout graphique via l'cône de rouage." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11671,11 +10904,11 @@ msgstr "" "statistiques sous forme de requêtes groupées, par la suite vous pouvez " "cliquer sur tout énoncé SELECT pour une analyse plus poussée." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Note : " -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11688,93 +10921,831 @@ msgstr "" "portion de temps et de désactiver general_log puis de vider la table " "correspondante lorsque la surveillance n'est plus requise." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Graphique prédéfini" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Variables d'état" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Choisissez les séries : " -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Couramment surveillés" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "ou entrez un nom de variable : " -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Afficher en tant que valeur différentielle" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Appliquer un diviseur" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Ajouter l'unité aux valeurs de données" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Ajouter cette série" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Effacer la série" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Séries dans le graphique : " -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Statistiques des journaux" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Sélectionnez un intervalle de temps : " -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Enlever les données variables des énoncés INSERT pour un meilleur groupement" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choisissez depuis quel journal les statistiques doivent être générées." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Les résultats sont regroupés par le texte des requêtes." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analyseur de requêtes" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d secondes" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Questions depuis le démarrage : %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Information" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtres" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Contenant le mot : " + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Afficher uniquement les valeurs d'alerte" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrer par catégorie..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Afficher les valeurs non formattées" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Liens connexes : " + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Le nombre de connexions avortées en raison d'une interruption du client sans " +"fermeture adéquate de la connexion." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." + +#: server_status_variables.php:334 +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 "" +"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire " +"mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " +"temporaire pour stocker les énoncés de la transaction." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." + +#: server_status_variables.php:346 +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 "" +"Le nombre de tables temporaires sur disque créées automatiquement par le " +"serveur lors de l'exécution d'énoncés. Si la valeur du paramètre " +"Created_tmp_disk_tables est trop grande, augmentez la valeur de " +"tmp_table_size afin que les tables temporaires soient maintenues en mémoire " +"au lieu d'être sur disque." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Le nombre de fichiers temporaires créés par mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Le nombre de tables temporaires en mémoire créées automatiquement par le " +"serveur lors de l'exécution d'énoncés." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " +"survenue (probablement un doublon sur la clé)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " +"utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Le nombre de lignes écrites via INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Le nombre de commandes FLUSH exécutées." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Le nombre de commandes COMMIT internes." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." + +#: server_status_variables.php:381 +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 "" +"Le serveur MySQL peut demander au moteur de données NDB Cluster s'il connaît " +"une table portant un certain nom. Ceci est appelé "découverte". Ce " +"paramètre indique le nombre de fois que des tables ont été découvertes." + +#: server_status_variables.php:387 +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 "" +"Le nombre de fois que la première entrée a été lue depuis un index. Si c'est " +"élevé, ceci suggère que le serveur effectue beaucoup de parcours complets " +"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " +"colonne indexée." + +#: server_status_variables.php:393 +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 "" +"Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " +"bonne indication que vos tables sont correctement indexées." + +#: server_status_variables.php:398 +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 "" +"Le nombre de requêtes de lecture de la prochaine ligne, en ordre de clé. " +"Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " +"fourchette ou si vous parcourez l'index." + +#: server_status_variables.php:403 +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 "" +"Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " +"Utilisé surtout pour optimiser ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Le nombre de requêtes de lecture d'une ligne basée sur une position fixe. Ce " +"nombre est élevé si vous faites de nombreuses requêtes qui nécessitent de " +"trier les résultats. Vous avez probablement un grand nombre de requêtes qui " +"demandent à MySQL de parcourir des tables en entier, ou vous avez des " +"jointures qui n'utilisent pas correctement les clés." + +#: server_status_variables.php:414 +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 "" +"Le nombre de requêtes de lecture de la prochaine ligne dans le fichier. " +"Élevé si vous faites plusieurs parcours de tables. Ceci suggère que vos " +"tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " +"écrites de façon à tirer parti des index que vous avez définis." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Le nombre d'énoncés ROLLBACK internes." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Le nombre de requêtes d'insertion de lignes dans une table." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Le nombre de pages contenant des données." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Le nombre de pages contenant des données «dirty»." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Le nombre de pages libres." + +#: server_status_variables.php:443 +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 "" +"Le nombre de pages dans la réserve InnoDB. Ce sont des pages actuellement en " +"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " +"autre raison." + +#: server_status_variables.php:448 +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 "" +"Le nombre de pages occupées car elles ont été déallouées en raison de " +"verrous sur les enregistrements. Cette valeur peut également être calculée " +"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Taille totale de la réserve, en pages." + +#: server_status_variables.php:458 +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 "" +"Le nombre de lectures «discontinues» effectuées par InnoDB. Ceci survient " +"lorsqu'une requête doit balayer une large portion de table en ordre " +"discontinu." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " +"quand InnoDB fait un parcours séquentiel intégral de la table." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " +"à une lecture directe d'une page." + +#: server_status_variables.php:474 +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 "" +"Normalement, l'écriture dans la réserve InnoDB se passe en arrière-plan. " +"Cependant, s'il est nécessaire de lire ou de créer une page et qu'aucune " +"page n'est disponible, InnoDB doit attendre que des pages soient libérées. " +"Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " +"taille de la réserve est adéquate, cette valeur devrait être petite." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Le nombre d'écritures faites dans la réserve InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Le nombre d'opérations fsync() actuellement en attente." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Le nombre actuel de lectures en attente." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Le nombre actuel d'écritures en attente." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "La quantité d'octets lus jusqu'à présent." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Le nombre total de lectures de données." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Le nombre total d'écritures de données." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "La quantité d'octets écrits jusqu'à présent." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Le nombre d'opérations «doublewrite» effectuées." + +#: server_status_variables.php:516 +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 "" +"Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " +"fallait attendre qu'il se libère avant de continuer." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Le nombre d'écritures physiques au fichier témoin." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Le nombre d'écritures fsync() sur le fichier témoin." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Le nombre d'écritures du fichier témoin en attente." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Le nombre d'octets écrits sur le fichier témoin." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Le nombre de pages créées." + +#: server_status_variables.php:541 +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 "" +"La taille de page InnoDB telle que compilée (16 Ko par défaut). Plusieurs " +"valeurs sont comptées par page; la taille de page leur permet d'être " +"facilement converties en octets." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Le nombre de pages lues." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Le nombre de pages écrites." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Le nombre de verrous d'enregistrements actuellement en attente." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Le nombre de lignes supprimées des tables InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Le nombre de lignes insérées dans des tables InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Le nombre de lignes lues dans des tables InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." + +#: server_status_variables.php:579 +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 "" +"Le nombre de blocs de clés dans la cache de clés qui ont été modifiés mais " +"pas encore transférés sur disque. Anciennement connu sous le nom " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Le nombre de blocs inutilisés dans la cache de clés. Vous pouvez utiliser " +"cette valeur pour déterminer la proportion de la cache de clés qui est " +"utilisée." + +#: server_status_variables.php:588 +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 "" +"Le nombre maximum de blocs utilisés dans le cache. Il s'agit de la valeur " +"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " +"de clés." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." + +#: server_status_variables.php:599 +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 "" +"Le nombre de lectures physiques d'un bloc de clés depuis le disque. Si cette " +"valeur est élevée, la taille de votre mémoire tampon de clés est trop " +"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " +"requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Échecs dans la cache de clés, en calculant le taux de lectures physiques " +"comparé aux requêtes de lecture (valeur calculée)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " +"calculée)" + +#: server_status_variables.php:619 +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 "" +"Le coût total de la dernière requête compilée, tel que calculé par " +"l'optimiseur de requêtes. Utile pour comparer le coût de diverses stratégies " +"pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " +"été compilée." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Le nombre maximum de connexions simultanées depuis le démarrage du serveur." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " +"est probablement trop petite." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Le nombre de fichiers qui sont ouverts." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Le nombre de flux de données qui sont ouverts." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Le nombre de tables qui sont ouvertes." + +#: server_status_variables.php:645 +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 "" +"Le nombre de blocs mémoire libres dans la cache de requêtes. Un nombre élevé " +"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " +"commande FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "La quantité de mémoire libre dans la cache de requêtes." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Le nombre de succès dans la cache." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Le nombre de requêtes ajoutées à la cache." + +#: server_status_variables.php:659 +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 "" +"Le nombre de requêtes qui ont été retirées de la cache pour libérer de la " +"mémoire afin de mettre en cache de nouvelles requêtes. Peut être utilisé " +"afin de peaufiner la taille de la cache. La stratégie utilisée pour " +"déterminer quelles requêtes seront retirées est LRU (least recently used)." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Le nombre de requêtes non en cache (impossible à placer en cache, ou non " +"cachée en raison du paramètre query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Le nombre de requêtes enregistrées dans la cache." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Le nombre total de blocs dans la cache de requêtes." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "L'état de la réplication sans échec (pas encore implantée)." + +#: server_status_variables.php:679 +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 "" +"Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " +"supérieure à 0, vérifiez soigneusement les indexes de vos tables." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Le nombre de jointures qui ont utilisé une recherche par plage sur une table " +"de référence." + +#: server_status_variables.php:686 +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 "" +"Le nombre de jointures sans clés qui vérifient l'utilisation de clé à chaque " +"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " +"tables.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Le nombre de jointures qui ont utilisé des plages sur la première table. " +"(Normalement non critique même si cette valeur est élevée.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" +"Le nombre de jointures qui ont nécessité le parcours complet de la première " +"table." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " +"SQL de l'esclave." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " +"a envoyé à nouveau des transactions." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Le nombre de fils d'exécution dont le temps de création a excédé " +"slow_launch_time secondes." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " +"secondes." + +#: server_status_variables.php:717 +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 "" +"Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " +"nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Le nombre de tri effectués avec des plages." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Le nombre de lignes triées." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Le nombre de tri effectués via un parcours de la table." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." + +#: server_status_variables.php:734 +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 "" +"Le nombre de fois qu'un verrou de table n'a pu être acquis immédiatement, " +"induisant un temps d'attente. Si ce nombre est élevé et que vous éprouvez " +"des problèmes de performance, commencez par optimiser vos requêtes, puis " +"subdivisez vos tables ou encore utiliser la réplication." + +#: server_status_variables.php:740 +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 "" +"Le nombre de fils dans la cache des fils d'exécution. Le taux peut être " +"calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " +"devriez augmenter la taille de cette cache." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Le nombre de connexions ouvertes actuellement." + +#: server_status_variables.php:748 +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 "" +"Le nombre de fils d'exécution créés afin de gérer les connexions. Si ce " +"nombre est trop grand, vous pourriez augmenter la valeur du paramètre " +"thread_cache_size. (Normalement, ceci ne procure pas une amélioration " +"perceptible de la performance si votre serveur gère correctement les fils " +"d'exécution.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Le nombre de fils d'exécution non suspendus." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Échec de mise à jour de la variable" @@ -12368,26 +12339,26 @@ msgstr "Contrainte de clé étrangère" msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Le suivi de %1$s a été désactivé à la version %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Le suivi de %1$s a été activé à la version %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12396,117 +12367,117 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Erreur de requête" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Montrer %1$s depuis le %2$s jusqu'au %3$s par l'utilisateur %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Aucune donnée" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Date" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Exportation SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Exécution SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Montrer les versions" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Désactiver le suivi de %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Activer le suivi de %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Activer maintenant" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Créer la version %1$s de %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants : " -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants : " -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Créer une version" @@ -12662,11 +12633,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time est actuellement %d seconde(s)." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Journalisation des requêtes longues" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Le journal des requêtes longues est désactivé." @@ -12682,15 +12653,31 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries a une valeur de 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Activez la journalisation des requêtes longues en réglant {slow_query_log} à " +"'ON'. Ceci aidera à dépanner les problèmes de lenteur des requêtes." + +#: libraries/advisory_rules.txt:96 +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log a la valeur 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Famille de versions" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "La version du serveur MySQL est antérieure à 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12698,22 +12685,22 @@ msgstr "" "Vous devriez mettre à jour, puisque MySQL 5.1 a une meilleure performance et " "MySQL 5.5 est encore meilleur." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Version courante : %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Version mineure" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "La version est inférieure à 5.1.30 (la première version stable de 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12721,26 +12708,26 @@ msgstr "" "Vous devriez mettre à jour, puisque les versions récentes MySQL 5.1 ont une " "meilleure performance et MySQL 5.5 est encore meilleur." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "La version est inférieure à 5.5.8 (la première version stable de 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Vous devriez mettre à jour vers une version stable de MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribution" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Le serveur a été compilé à partir de la source et n'est pas une version " "officielle de MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12750,44 +12737,44 @@ msgstr "" "paquet provenant d'un distributeur. Le manuel MySQL n'est précis que pour " "les versions compilées officielles de MySQL." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "Le mot «source» a été trouvé dans version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "Le manuel MySQL n'est précis que pour les versions compilées officielles de " "MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "La documentation de Percona est disponible au http://www.percona.com/docs/" "wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "Le mot «percona» a été trouvé dans version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "La documentation de Drizzle est disponible au http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "La version (%s) correspond au schème des versions de Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Architecture MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL n'est pas compilé en paquet 64 bits." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12797,20 +12784,20 @@ msgstr "" "localhost), donc MySQL ne peut utliser toute la mémoire. Il est suggéré " "d'installer une version 64-bits de MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Mémoire disponible sur cet hôte : %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Cache des requêtes désactivée" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "La cache des requêtes est désactivée." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12822,19 +12809,19 @@ msgstr "" "9 Mio et {query_cache_type} à 'ON'. Note: Si vous utilisez memcached, " "ignorez cet avis." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size a une valeur de 0 ou query_cache_type est à 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Méthode de cache des requêtes" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Méthode de cache non efficace." -#: libraries/advisory_rules.txt:157 +#: 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 à la place, " "spécialement si vous utilisez de nombreux serveurs esclaves." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12855,37 +12842,37 @@ msgstr "" "La cache de requêtes est activée et le serveur traite %d requêtes par " "seconde. Cette règle intervient s'il y a plus de 100 requêtes par seconde." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Efficacité de la cache de requêtes (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "La cache de requêtes ne fonctionne pas efficacement, son taux de réussite " "est bas." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Il est suggéré d'augmenter {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "Le taux actuel de réussite de la cache de requêtes (%s%%) est sous les 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Utilisation de la cache des requêtes" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Moins de 80%% de la cache des requêtes est utilisé." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12893,7 +12880,7 @@ msgstr "" "Ceci peut être causé par une trop faible valeur de {query_cache_limit}. " "Initialiser la cache des requêtes pourrait également aider." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12902,15 +12889,15 @@ msgstr "" "Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la " "mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Fragmentation de la cache des requêtes" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "La cache des requêtes est très fragmentée." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12929,7 +12916,7 @@ msgstr "" "{query_cache_min_res_unit} à la baisse peut également aider; utilisez la " "valeur (query_cache_size - qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12940,11 +12927,11 @@ msgstr "" "contient des blocs libres et occupés en alternance. Cette valeur devrait " "être sous les 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Élagages de mémoire de la cache de requêtes" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -12952,7 +12939,7 @@ msgstr "" "Les requêtes en cache sont enlevées en raison d'un manque de mémoire dans la " "cache de requêtes." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12962,7 +12949,7 @@ msgstr "" "de maintenance de la cache va augmenter selon sa taille, alors effectuez " "cette augmentation petit à petit et surveillez les résultats." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12972,11 +12959,11 @@ msgstr "" "%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: " "0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Taille maximum de la cache des requêtes" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12984,7 +12971,7 @@ msgstr "" "La taille de la cache de requêtes dépasse 128 Mio. Ceci peut causer une " "surcharge dans sa maintenance." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12992,23 +12979,23 @@ msgstr "" "Selon votre environnement, la réduction de cette valeur pourrait améliorer " "la performance." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Taille actuelle de la cache des requêtes : %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Taille minimum de résultats de la cache de requêtes" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "La taille maximum d'un jeu de résultats dans la cache de requêtes est la " "valeur par défaut de 1 Mio." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13026,19 +13013,19 @@ msgstr "" "alors une augmentation de {query_cache_limit} va aider. Dans le cas " "contraire, cette augmentation va réduire l'efficacité." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit a une valeur de 1Mio" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Pourcentage des tris qui requièrent des tables temporaires" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Faire trop de tris cause la création de tables temporaires." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13046,7 +13033,7 @@ msgstr "" "Augmentez sort_buffer_size et/ou read_rnd_buffer_size, selon la mémoire " "disponible" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13055,11 +13042,11 @@ msgstr "" "%s%% de tous les tris causent la création de tables temporaires, cette " "valeur devrait être sous les 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Proportion des tris qui nécessitent une table temporaire" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13067,15 +13054,15 @@ msgstr "" "Moyenne du nombre de tables temporaires : %s, cette valeur devrait être " "moins de 1 par heure." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Lignes triées" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Un grand nombre de lignes sont en train d'être triées." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13086,20 +13073,20 @@ msgstr "" "requêtes qui demandent un tri utilisent des colonnes indexées dans la clause " "ORDER BY, ce qui va grandement accélérer les tris" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Moyenne des lignes triées : %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Taux des jointures sans index" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Il y a trop de jointures sans index." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13108,22 +13095,22 @@ msgstr "" "complet. L'ajout d'index sur les colonnes utilisées dans les critères de " "jointure va accélérer les jointures" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Moyenne de jointures de tables : %s, cette valeur devrait être moins de 1 " "par heure" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Taux de lecture de la première entrée d'index" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Le taux de lecture de la première entrée d'index est élevé." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13138,22 +13125,22 @@ msgstr "" "nombre de UPDATE et DELETE, faire un 'OPTIMIZE TABLE' peut améliorer les " "choses. Sinon, il s'agit de récrire les requêtes." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Moyenne de balayage des index : %s, cette valeur devrait être moins de 1 par " "heure" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Taux de lecture d'une position fixe" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Le taux de lecture de données à partir d'une position fixe est élevé." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13163,7 +13150,7 @@ msgstr "" "balayage complet de table, incluant des jointures qui n'utilisent pas " "d'index. Ajouter des index si possible." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13172,15 +13159,15 @@ msgstr "" "Taux de lecture d'une position fixe : %s, devrait être de moins de 1 par " "heure" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Taux de lecture de la ligne suivante" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Le taux de lecture de la prochaine ligne dans la table est élevé." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13188,7 +13175,7 @@ msgstr "" "Ceci indique que plusieurs requêtes doivent effectuer un balayage complet de " "table. Ajouter des index si possible." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13196,15 +13183,15 @@ msgstr "" "Taux de lecture de la prochaine ligne de table : %s, devrait être de moins " "de 1 par heure" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size versus max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size et max_heap_table_size n'ont pas la même valeur." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13216,17 +13203,17 @@ msgstr "" "tables en mémoire. Si vous désirez augmenter cette taille, vous devez donc " "augmenter l'autre valeur." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" "Les valeurs courantes sont : tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Pourcentage de tables temporaires sur disque" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13234,7 +13221,7 @@ msgstr "" "Plusieurs tables temporaires sont écrites sur disque au lieu d'être " "conservées en mémoire." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13252,7 +13239,7 @@ msgstr "" "512 octets) tel que décrit dans cet arrticle par the Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13261,11 +13248,11 @@ msgstr "" "%s%% de toutes les tables temporaires sont écrites sur disque, cette valeur " "ne devrait pas dépasser 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Taux d'écriture des tables temporaires sur disque" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13283,7 +13270,7 @@ msgstr "" "512 octets) tel que décrit dans la MySQL Documentation MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13292,17 +13279,17 @@ msgstr "" "Taux de tables temporaires écrites sur disque: %s, cette valeur devrait être " "moins de 1 par heure" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Taille du tampon des clés MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Le tampon des clés n'est pas initialisé. Aucun index MyISAM ne sera mis en " "cache." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13310,21 +13297,21 @@ msgstr "" "Réglez {key_buffer_size} selon la taille de vos index MyISAM. 64Mio est une " "bonne valeur de départ." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size est à 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "%% maximum du tampon de clés MyISAM qui a été utilisé" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Le %% de la mémoire tampon utilisée pour les clés MyISAM est bas." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13334,7 +13321,7 @@ msgstr "" "les index ont été enlevés, ou examinez les requêtes pour voir quels index " "sont utilisés." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13342,46 +13329,46 @@ msgstr "" "Le %% maximum de mémoire tampon pour les clés MyISAM utilisé est de %s%%, " "cette valeur devrait dépasser 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Pourcentage de la mémoire tampon des clés MyISAM utilisée" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% de mémoire tampon pour les clés MyISAM utilisée : %s%%, cette valeur " "devrait être au-dessus de 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Pourcentage des lectures d'index depuis la mémoire" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "Le %% des index qui utilisent la mémoire tampon MySQL est bas." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Veuillez augmenter {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Index lus depuis la mémoire : %s%%, cette valeur devrait être au-dessus de " "95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Taux d'ouverture de tables" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Le taux d'ouverture de tables est élevé." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13389,18 +13376,18 @@ msgstr "" "Ouvrir des tables requiert des accès au disque, ce qui est coûteux. " "Augmenter {table_open_cache} pourrait remédier à la situation." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Taux d'ouverture des tables : %s, cette valeur ne devrait pas dépasser 10 " "par heure" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Pourcentage du nombre de fichiers ouverts" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13408,7 +13395,7 @@ msgstr "" "Le nombre de fichiers ouverts s'approche du maximum. Vous pouvez obtenir " "l'erreur «Trop de fichiers sont ouverts»." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13416,7 +13403,7 @@ msgstr "" "Veuillez augmenter {open_files_limit}, et vérifier le journal des erreurs " "après avoir redémarré." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13424,57 +13411,57 @@ msgstr "" "Le nombre de fichiers ouvert est à %s%% de la limite. Ce nombre devrait être " "sous 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Taux d'ouverture de fichiers" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Le taux d'ouverture de fichiers est élevé." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Taux d'ouverture de fichiers : %s, cette valeur devrait être moins de 5 à " "l'heure" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% de verrouillage de tables" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Trop de verrous de table n'ont pas été acquis immédiatement." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimisez les requêtes ou passez à InnoDB pour réduire le temps d'attente de " "verrous." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Verrous de table immédiats: %s%%, cette valeur devrait dépasser 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Taux d'attente de verrrouillage de tables" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Taux d'attente de verrrouillage de tables : %s, cette valeur devrait être de " "moins de 1 à l'heure" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Cache des fils d'exécution" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13482,44 +13469,44 @@ msgstr "" "La cache des fils d'exécution est désactivée, ce qui cause une surcharge " "pour les nouvelles connexions." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Activez la cache des fils d'exécution en réglant {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "La taille de cache des fils d'exécution est de 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Taux de succès de la cache des fils d'exécution en %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "La cache des fils d'exécution n'est pas optimale." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Augmentez {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Taux de succès de la cache des fils d'exécution : %s%%, cette valeur devrait " "se situer au-dessus de 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Fils d'exécution qui sont lents à démarrer" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Il y a trop de fils d'exécution qui sont lents à démarrer." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13527,20 +13514,20 @@ msgstr "" "Ceci survient habituellement en cas de surcharge générale du système. " "Veuillez surveiller la charge du système." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s fil(s) ont pris plus de %s secondes à démarrer, devrait être 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Durée d'un lancement considéré comme lent" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads dépasse 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13548,16 +13535,16 @@ msgstr "" "Réglez slow_launch_time à 1s ou 2s pour compter correctement le nombre de " "fils d'exécution qui sont lents à démarrer" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time est réglé à %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Pourcentage des connexions utilisées" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13565,7 +13552,7 @@ msgstr "" "Le nombre maximum de connexions utilisées se rapproche de la valeur de " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13576,7 +13563,7 @@ msgstr "" "rapidement. Assurez-vous que les applications effectuent une fermeture " "correctes des bases de données." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13584,15 +13571,15 @@ msgstr "" "Max_used_connections est à %s%% de max_connections, devrait être sous les 80%" "%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Pourcentage de connexions avortées" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Trop de connexions ont avorté." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Cet article peut vous aider à en trouver la cause." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% du total des connexions ont avorté. Cette valeur devrait être sous 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Taux de connexions avortées" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" "Le taux de connexions avortées est de %s, devrait être moins de 1 à l'heure" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Pourcentage de coupure de clients" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Trop de clients ont été coupés." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13639,44 +13626,44 @@ msgstr "" "application n'a pas fermé le lien au serveur. Vérifiez le réseau et les " "applications." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% des clients ont été coupés. Cette valeur devrait être sous les 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Taux de coupure de clients" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Le taux de coupure de clients est de %s, cette valeur devrait être moins de " "1 à l'heure" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB est-il désactivé ?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB n'est pas en fonction." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB est généralement le meilleur choix de moteur de stockage." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb est réglé à 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Taille du journal InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13684,7 +13671,7 @@ msgstr "" "La taille du journal InnoDB n'est pas appropriée, en tenant compte du pool " "de mémoire tampon InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13708,7 +13695,7 @@ msgstr "" "aussi cet article de blogue." -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13717,15 +13704,15 @@ msgstr "" "La taille de votre journal InnoDB est de %s%% en comparant au pool de " "mémoire tampon InnoDB, elle ne devrait pas être sous les 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Taille maximum du journal InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "La taille du journal InnoDB est trop grande." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13748,20 +13735,20 @@ msgstr "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">cet article de blogue." -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "La taille maximum du journal InnoDB est de %s Mio" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Taille de la mémoire-tampon InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Votre mémoire-tampon InnoDB est petite." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13786,7 +13773,7 @@ msgstr "" "www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">cet article" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13799,15 +13786,15 @@ msgstr "" "cependant ceci peut convenir pour votre système si vous avez peu de tables " "InnoDB ou si d'autres services tournent sur ce serveur." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Insertions MyISAM simultanées" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Activez concurrent_insert en lui mettant une valeur de 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also la documentation MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Kio transmis depuis le dernier rafraîchissement" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Kio reçus depuis le dernier rafraîchissement" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Trafic du serveur (en Kio)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Connexions depuis le dernier rafraîchissement" + +#~ msgid "Questions since last refresh" +#~ msgstr "Questions depuis le dernier rafraîchissement" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (énoncés exécutés par le serveur)" + +#~ msgid "Runtime Information" +#~ msgstr "Informations sur le serveur" + +#~ msgid "Number of data points: " +#~ msgstr "Nombre de points : " + +#~ msgid "Refresh rate: " +#~ msgstr "Taux de rafraîchissement : " + +#~ msgid "Run analyzer" +#~ msgstr "Lancer l'analyseur" + #~ msgid "Scroll to the top of the page" #~ msgstr "Faire défiler vers le haut de la page" diff --git a/po/gl.po b/po/gl.po index 63a3b45a6d..b81c842db3 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Galician " -"\n" -"Language: gl\n" +"Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Buscar" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Ir" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descrición" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Comentarios da táboa" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Columna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Predeterminado" msgid "Links to" msgstr "Liga a" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Liga a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Non" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Si" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Táboa" @@ -338,7 +338,7 @@ msgstr "Tamaño" msgid "in use" msgstr "en uso" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "en uso" msgid "Creation" msgstr "Creación" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Creación" msgid "Last update" msgstr "Última actualización" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Táboas seguidas" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Base de datos" @@ -414,17 +414,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Última versión" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Creada" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Estado" @@ -439,7 +439,7 @@ msgstr "Acción" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostrar" @@ -455,11 +455,11 @@ msgstr "Eliminar os datos de seguimento desta táboa" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "activado" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "desactivado" @@ -467,11 +467,11 @@ msgstr "desactivado" msgid "Versions" msgstr "Versións" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Informe de seguimento" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Instantánea da estrutura" @@ -539,45 +539,45 @@ msgstr "Utilizar OpenStreetMaps como capa base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Xeometría" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punto %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Engadir un punto" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Cadea de liñas" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Círculo externo" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Círculo interno" @@ -585,15 +585,15 @@ msgstr "Círculo interno" msgid "Add a linestring" msgstr "Engadir unha cadea de liñas" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Engadir un círculo interno" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Engadir un polígono" @@ -737,8 +737,9 @@ msgstr "Máis opcións" msgid "Database server" msgstr "Servidor de base de datos" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servidor" @@ -757,7 +758,7 @@ msgstr "Versión do protocolo" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Usuario" @@ -1006,12 +1007,12 @@ msgstr "A recargar os privilexios" msgid "Removing Selected Users" msgstr "A eliminar os usuarios escollidos" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1021,15 +1022,15 @@ msgstr "Fechar" msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Gráfico de tráfico en directo" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Gráfica de conexións/procesos en directo" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Gráfico de consultas en directo" @@ -1040,13 +1041,14 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Outro" @@ -1061,48 +1063,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB enviados desde a última anovación" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB recibidos dende a última anovación" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tráfico do servidor (en KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Conexións desde a última anovación" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesos" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Conexións/Procesos" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Preguntas dende a última anovación" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Preguntas (instrucións executadas polo servidor)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Estatísticas das consultas" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "A configuración local de monitorización é incompatible" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1114,196 +1082,201 @@ msgstr "" "moi probábel que a configuración actual non funcione máis. Restaure a " "configuración ao predeterminado no menú Configuración." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Eficiencia da caché das consultas" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Uso da caché das consultas" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Caché das consultas usada" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Uso da CPU do sistema" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memoria do sistema" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Arquivo de intercambio do sistema" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Carga promedio" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memoria de buffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memoria usada" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Arquivo de intercambio total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Intercambio en caché" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Intercambio usado" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Intercambio libre" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Conexións" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesos" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d táboa(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Configuración" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Eliminar a gráfica" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Editar o título e as etiquetas" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Engadir unha gráfica á grella" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Engada ao menos unha variábel á serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ningunha" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Recomezar a monitorización" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Deter a monitorización" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log están activas." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log está activa." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log está activa." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log están desactivadas." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output non está definido como TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output está definido como TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1314,12 +1287,12 @@ msgstr "" "máis que %d segundos. É recomendábel establecer o long_query_time a 0-2 " "segundos, dependendo do sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time está estabelecido en %d segundo(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1328,30 +1301,30 @@ msgstr "" "restaurados aos valores predeterminados ao reiniciar o servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Definir «long_query_time» como %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1359,53 +1332,53 @@ msgstr "" "Vostede non pode cambiar estas variábeis. Identifíquese como root ou " "contacte co seu administrador." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Cambiar a configuración" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Título da gráfica" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unidade" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Do rexistro de consultas lento" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Do rexistro de consultas xeral" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "A analizar os rexistros" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "A analizar e cargar os rexistros. Isto pode tardar un anaco." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancelar a petición" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1416,7 +1389,7 @@ msgstr "" "agrupamento, polo que outros atributos das consultas, como o tempo de " "inicio, poden ser diferentes." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1425,100 +1398,100 @@ msgstr "" "Dado que se escolleu agrupar as consultas INSERT, tamén se agrupan estas na " "mesma táboa, sen ter en conta os datos inseridos." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Cargáronse os datos do rexistro. Consultas executadas neste período de tempo:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Ir á táboa de rexistro" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Non se atoparon datos" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Analizouse o rexistro mais non se atoparon datos neste intervalo de tempo." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "A analizar…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Explicar a saída" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tempo" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Tempo total:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Perfilando os resultados" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Táboa" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Gráfico" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Editar a gráfica" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serie" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opcións de filtro da táboa de rexistro" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtro" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrar as consultas por palabra/expresión regular:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar as consultas, ignorando os datos variábeis das cláusulas WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Suma das filas agrupadas:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "A cargar os rexistros" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Fallou a anovación do monitor" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1528,254 +1501,256 @@ msgstr "" "novos para a gráfica. O máis probábel é que caducase a sesión. Cargar a " "páxina de novo e identificarse de novo debería valer." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Recargar a páxina" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Produciuse un fallo ao analizar o ficheiro de configuración. Parece non ser " "código JSON válido." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Produciuse un fallo ao construír a grella da gráfica coa configuración " "importada. Restáurase a configuración predeterminada…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importar a configuración do monitor" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Escolla o ficheiro que desexa importar" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analizar pesquisa" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistema de consellos" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Posibles erros de rendemento" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problema" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalles da regla" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Xustificación" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variable/ fórmula utilizada" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Proba" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "A cargar" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "A procesar a petición" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Produciuse un erro ao procesar a petición" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Non hai ningunha base de datos escollida." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "A eliminar a columna" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "A engadir unha chave primaria" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Aceptar" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Prema para descartar esta notificación" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "A renomear as bases de datos" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Recargar a base de datos" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "A copiar a base de datos" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "A cambiar o xogo de caracteres" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "A táboa debe ter polo menos unha columna" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Inserir unha táboa" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Agochar os índices" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostrar os índices" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Comprobación da chave externa:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Activado)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Desactivado)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "A buscar" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Agochar os resultados da busca" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostrar os resultados da busca" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "A examinar" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "A eliminar" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definición dunha función gardada debe conter unha instrución RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valores para a columna %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valores para a nova columna" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Introduza cada valor nun campo separado" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Engadir %d valor(es)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Nota: Se o ficheiro contén varias táboas, estas combínanse nunha" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Agochar a caixa das consultas" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostrar a caixa de consultas" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Mudar" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Tempo de execución da consulta" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1784,89 +1759,89 @@ msgstr "%d non é un número de fileira válido." msgid "Save" msgstr "Gardar" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Agochar o criterio de busca" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Mostrar o criterio de busca" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Busca gráfica" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Cada punto representa unha fila de datos." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Situar o rato sobre o punto mostra a súa etiqueta." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Par achegarse, escolla unha sección da gráfica co rato." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Prema o botón de restaurar a amplación para voltar o estado orixinal." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Prema un punto de datos para ver e tal vez editar a liña de datos." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Pódese mudar o tamaño da gráfica arrastrándoo polo recanto inferior dereito." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Escoller dúas columnas" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Escolle dúas columnas diferentes" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Resultados da consulta" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copiar" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Engadir columnas" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Escoller a chave referida" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Escolla a columna que desexe mostrar" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1874,15 +1849,20 @@ msgstr "" "Non gardou as alteracións da disposición. Hanse perder se non se gardan. " "Desexa continuar?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Engadir unha opción para a columna " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Prema escape para cancelar a edición" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1890,28 +1870,28 @@ msgstr "" "Editou algúns datos que aínda non se gardaron. Ten certeza de querer saír " "desta páxina antes de gardar os datos?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Arrastre para reordenar" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Prema para ordenar" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Prema para marcar/desmarcar" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Prema duas veces para copiar o nome da columna" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Prema a frecha para a baixo
para conmutar a visibilidade da columna" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1920,7 +1900,7 @@ msgstr "" "relacionadas coa edición da grecha, caixa de selección, editar, copiar e " "eliminar ligazóns poden non funcionar despois de gravar." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1931,64 +1911,64 @@ msgstr "" "Tamén se poden editar a maioría das columnas
premendo directamente o " "seu contido." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Tamén se poden editar a maioría das columnas
premendo directamente o " "seu contido." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ir á ligazón" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copiar nome da columna" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Prema co botón dereito para copiar o nome da columna o portapapeis." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Mostrar fila(s) de datos" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Xerar" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Cambiar o contrasinal" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Máis" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Mostrar todo" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Agochar os índices" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1998,266 +1978,266 @@ msgstr "" "actualizala. A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "actualizada" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Feito" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hoxe" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Xaneiro" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Febreiro" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Marzo" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Abril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maio" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Xuño" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Xullo" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agosto" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Setembro" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Outubro" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembro" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Luns" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Venres" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sm" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuto" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Segundo" @@ -2312,16 +2292,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "por hora" @@ -2349,7 +2329,7 @@ msgstr "Tamaño da letra" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascendente" @@ -2358,7 +2338,7 @@ msgstr "Ascendente" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descendente" @@ -2474,7 +2454,7 @@ msgstr "Eliminar as coincidencias para a táboa %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Eliminar" @@ -2644,7 +2624,7 @@ msgid "The row has been deleted" msgstr "Eliminouse a fileira" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Matar (kill)" @@ -2702,12 +2682,13 @@ msgstr "Marcalos todos" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" @@ -2715,7 +2696,7 @@ msgstr "Exportar" msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2802,16 +2783,16 @@ msgstr "Non é posíbel ler (movido) o ficheiro subido." msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript debe estar activo a partir de aquí" @@ -2823,21 +2804,21 @@ msgstr "Non se definiu ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalidade" @@ -2847,13 +2828,13 @@ msgstr "Cardinalidade" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Orde alfabética" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comentario" @@ -2898,7 +2879,7 @@ msgstr "Vista" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Estrutura" @@ -2971,34 +2952,35 @@ msgstr "Acontecementos" msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Rexistro binario" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicación" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Engadidos" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motores" @@ -3046,6 +3028,104 @@ msgstr "Táboas recentes" msgid "There are no recent tables" msgstr "Non hai táboas recentes" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "consulta de SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Manipulador" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Caché de consultas" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Fíos" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Datos temporais" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Insercións demoradas" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Caché de chaves" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Unións" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Ordenación" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Táboas" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordinador de transaccións" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Ficheiros" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Limpar (fechar) todas as táboas" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Mostrar as táboas abertas" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Mostrar os servidores escravos" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Mostrar o estado do principal" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Mostrar o estado dos escravos" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Limpar a caché de consultas" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Estado de InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Estatísticas das consultas" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Todas as variables de estado" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Vixiar" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Consellos" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3146,7 +3226,7 @@ msgstr "Operador" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valor" @@ -3541,11 +3621,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "consulta de SQL" - #: libraries/Util.class.php:710 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:292 @@ -3580,7 +3655,7 @@ msgid "Create PHP Code" msgstr "Crear código PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Anovar" @@ -3676,13 +3751,6 @@ msgstr "Imprimir" msgid "shared" msgstr "compartida" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Táboas" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3723,11 +3791,11 @@ msgstr "Comprobar os privilexios da base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar os privilexios" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Foi imposíbel ler o ficheiro de configuración" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3735,12 +3803,12 @@ msgstr "" "Isto normalmente significa que hai unha erro na sintaxe; comprobe calquera " "erro mostrado embaixo." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non foi posíbel cargar a configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3748,40 +3816,40 @@ msgstr "" "A directiva [code]$cfg['PmaAbsoluteUri'][/code] DEBE estar asignada no seu " "ficheiro de configuración!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "O índice de servidor non é válido: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, 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." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" "Na configuración indicouse un método de autenticación que non é válido:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Tentouse substituír GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "posíbel vulnerabilidade (exploit)" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "detectouse unha tecla numérica" @@ -6092,8 +6160,8 @@ msgstr "" "Se dispón dun nome de usuario personalizado, indíqueo aquí (por omisión é " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Nome de usuario" @@ -6760,10 +6828,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Estado de InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Uso da reserva da memoria intermedia" @@ -7459,20 +7523,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Filtrar táboas por nome" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Limpar esta series" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7586,17 +7650,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar a base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Só a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Estrutura e datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Só os datos" @@ -7994,8 +8058,7 @@ msgstr "Mostrar os tipos MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Servidor" @@ -8611,7 +8674,7 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variábel" @@ -9123,7 +9186,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9822,7 +9885,7 @@ msgstr "Engadir un prefixo á táboa" msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Nada" @@ -10174,7 +10237,7 @@ msgstr "Alternar pequeno/grande" msgid "Toggle relation lines" msgstr "Conmutar as liñas de relación" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema de PDF" @@ -10240,31 +10303,31 @@ msgstr "Creouse a páxina" msgid "Page creation failed" msgstr "Fallou a creación da páxina" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Páxina" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importar desde a páxina escollida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportar á páxina escollida" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Crear unha páxina e exportar a ela" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nome da nova páxina: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recomendado" @@ -10383,15 +10446,11 @@ msgstr "Ese ficheiro non existe" msgid "Select binary log to view" msgstr "Escolla o ficheiro de rexistro binario que desexe ver" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Ficheiros" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Interromper as consultas mostradas" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostrar as consultas completas" @@ -10475,7 +10534,7 @@ msgstr "Módulo" msgid "Library" msgstr "Biblioteca" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versión" @@ -10535,10 +10594,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Mostrar o estado do principal" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" @@ -10681,12 +10736,12 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10694,121 +10749,89 @@ msgstr "" "O phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea " "fechado." -#: server_status.php:657 -msgid "Handler" -msgstr "Manipulador" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Tráfico da rede desde o inicio: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Caché de consultas" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Este servidor de MySQL leva funcionando %1$s. Iniciouse ás %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Fíos" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Este servidor funciona como mestre e escravo nun proceso de " +"replicación." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Datos temporais" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Este servidor funciona como mestrenun proceso de replicación." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Insercións demoradas" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Este servidor funciona como escravo nun proceso de replicación." -#: server_status.php:663 -msgid "Key cache" -msgstr "Caché de chaves" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Para máis información acerca do estado de replicación do servidor visite a " +"sección sobre replicación." -#: server_status.php:664 -msgid "Joins" -msgstr "Unións" +#: server_status.php:122 +msgid "Replication status" +msgstr "Estado da replicación" -#: server_status.php:666 -msgid "Sorting" -msgstr "Ordenación" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Nun servidor ocupado, os contadores de bytes poden sobrecargarse, de maneira " +"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " +"resultar incorrectas." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordinador de transaccións" +#: server_status.php:149 +msgid "Received" +msgstr "Recibido" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Limpar (fechar) todas as táboas" +#: server_status.php:168 +msgid "Sent" +msgstr "Enviado" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Mostrar as táboas abertas" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "conexións simultáneas máximas" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Mostrar os servidores escravos" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Tentativas falidas" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Mostrar o estado dos escravos" +#: server_status.php:253 +msgid "Aborted" +msgstr "Cancelado" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Limpar a caché de consultas" +#: server_status.php:313 +msgid "ID" +msgstr "Identificador" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Información sobre o tempo de execución" +#: server_status.php:329 +msgid "Command" +msgstr "Orde" -#: server_status.php:830 -msgid "All status variables" -msgstr "Todas as variables de estado" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Vixiar" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Consellos" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Número de filas:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Taxa de refresco: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtros" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Que conteñan a palabra:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Mostrar só valores de alerta" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrar pola categoría..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Mostrar os valores sen formato" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Ligazóns relacionadas:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Executar o analizador" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instrucións" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10816,7 +10839,7 @@ msgstr "" "O sistema de consellos pode darlle valores recomendados para as variábeis do " "servidor analizando as variábeis de estado do servidor." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10826,7 +10849,7 @@ msgstr "" "cálculos simples e pola conta da vella que poden non corresponder co seu " "sistema." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10836,7 +10859,7 @@ msgstr "" "cambiar (lendo a documentación) e como desfacer os cambios. Uns axustes " "erróneos poder ter un efecto moi negativo sobre o desempeño." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10846,834 +10869,39 @@ msgstr "" "vez, observar ou someter a base de datos a probas e desfacer o cambio se non " "se apreciaron melloras medíbeis." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Preguntas desde o inicio: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Instrucións" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "nº" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Tráfico da rede desde o inicio: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Este servidor de MySQL leva funcionando %1$s. Iniciouse ás %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Este servidor funciona como mestre e escravo nun proceso de " -"replicación." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Este servidor funciona como mestrenun proceso de replicación." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Este servidor funciona como escravo nun proceso de replicación." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Para máis información acerca do estado de replicación do servidor visite a " -"sección sobre replicación." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Estado da replicación" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Nun servidor ocupado, os contadores de bytes poden sobrecargarse, de maneira " -"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " -"resultar incorrectas." - -#: server_status.php:1191 -msgid "Received" -msgstr "Recibido" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Enviado" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "conexións simultáneas máximas" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Tentativas falidas" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Cancelado" - -#: server_status.php:1322 -msgid "ID" -msgstr "Identificador" - -#: server_status.php:1338 -msgid "Command" -msgstr "Orde" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"O número de conexións que se cancelaron porque o cliente morreu sen fechar " -"axeitadamente a conexión." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "O número de intentos de conexión co servidor de MySQL falidos." - -#: server_status.php:1529 -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 "" -"O número de transaccións que utilizaron a caché do rexistro binario mais que " -"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " -"para almacenar instrucións para a transacción." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Número de transaccións que utilizaron a caché do rexistro binario." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"O número de tentativas de conexión (satisfactorias ou non) co servidor de " -"MySQL." - -#: server_status.php:1532 -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 "" -"O número de táboas temporais no disco creadas automaticamente polo servidor " -"ao executar as instrucións. Se Created_tmp_disk_tables é grande, será ben " -"que incremente o valor de tmp_table_size para que as táboas temporais se " -"baseen na memoria no canto de no disco." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Número de ficheiros temporais creados por mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Número de táboas temporais na memoria creadas automaticamente polo servidor " -"ao executar instrucións." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Número de fileiras escritas con INSERT DELAYED que sufriron algún erro " -"(probabelmente unha chave duplicada)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " -"na que se utiliza INSERT DELAYED recibe o seu propio fío." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Número de fileiras INSERT DELAYED escritas." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Número de instrucións FLUSH executadas." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Número de instrucións COMMIT internas." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Número de veces que se eliminou unha fileira dunha táboa." - -#: server_status.php:1541 -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 "" -"O servidor de MySQL pódelle preguntar ao motor de almacenamento NDB Cluster " -"se sabe dunha táboa cun nome dado. Isto chámase descuberta. " -"Handler_discovery indica o número de veces que se descubriron táboas." - -#: server_status.php:1542 -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 "" -"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén " -"suxire que o servidor está a realizar un monte de exames de índice " -"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " -"indexada." - -#: server_status.php:1543 -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 "" -"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " -"é unha boa indicación de que as consultas e táboas están ben indexadas." - -#: server_status.php:1544 -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 "" -"Número de peticións para ler a seguinte fileira na orde da chave. Isto " -"increméntase se está a procurar unha columna de índice cunha limitación de " -"intervalo ou se está a examinar un índice." - -#: server_status.php:1545 -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 "" -"Número de peticións para ler a fileira anterior na orde da chave. Este " -"método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"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." - -#: server_status.php:1547 -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 "" -"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é " -"alto se está a realizar moitos exames de táboas. Normalmente suxire que as " -"táboas non están indexadas axeitadamente ou que as súas consultas non están " -"escritas para aproveitar os índices de que dispón." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Número de instrucións de ROLLBACK («desfacer») interno." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Número de peticións para actualizar unha fileira nunha táboa." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Número de peticións para inserir un ficheiro nunha táboa." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Número de páxinas actualmente suxas." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Número de páxinas do buffer que se pediu que se limpasen." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Número de páxinas libres." - -#: server_status.php:1555 -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 "" -"Número de páxinas con seguro no buffer InnoDB buffer. Estas páxinas están " -"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " -"algunha outra razón." - -#: server_status.php:1556 -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 "" -"O número de páxinas ocupadas porque se destinan a reserva administrativa, " -"tales como bloqueos de fileiras ou o índice hash adaptativo. Este valor " -"tamén se pode calcular así: Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Tamaño total do buffer, en páxinas." - -#: server_status.php:1558 -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 "" -"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando " -"unha consulta vai examinar unha porción grande dunha táboa mais en orde " -"aleatoria." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Número de pre-lecturas secuenciais iniciadas por InnoDB. Isto acontece cando " -"InnoDB realiza un exame secuencial completo dunha táboa." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Número de lecturas lóxicas que InnoDB non puido satisfacer do buffer e tivo " -"que efectuar por medio de lecturas dunha única páxina." - -#: server_status.php:1562 -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 "" -"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 " -"pequeno." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Número de veces que se escribiu no buffer de InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Número de operacións fsync() até o momento." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Número actual de operacións fsync() pendentes." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Número actual de lecturas pendentes." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Número actual de escritas pendentes." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Cantidade de datos lida até o momento, en bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Número total de lecturas de datos." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Número total de escritas de datos." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Cantidade de datos escrita até o momento, en bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Número de escritas duplas realizadas e número de páxinas escritas con este " -"propósito." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Número de escritas duplas realizadas e número de páxinas escritas con este " -"propósito." - -#: server_status.php:1574 -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 "" -"Número de esperas debidas a que o buffer do rexistro é demasiado pequeno e " -"houbo que agardar até que se limpase para continuar." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Número de peticións de escrita no rexistro." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Número de escritas físicas no ficheiro de rexistro." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Número de escritas de fsync() feitas no ficheiro de rexistro." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Número de fsyncs do ficheiro de rexistro pendentes." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Escritas no ficheiro de rexistro pendentes." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Número de bytes escritos no ficheiro de rexistro." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Número de páxinas creadas." - -#: server_status.php:1582 -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 "" -"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores " -"cóntanse en páxinas: o tamaño da páxina permite que se convertan doadamente " -"en bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Número de páxinas lidas." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Número de páxinas escritas." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" -"Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " -"milisegundos." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" -"Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " -"milisegundos." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Número de fileiras eliminadas das táboas InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Número de fileiras inseridas nas táboas InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Número de fileiras lidas das táboas InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Número de fileiras actualizadas en táboas InnoDB." - -#: server_status.php:1594 -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 "" -"Número de bloques chave na caché de chaves que se mudaron mais que aínda non " -"se limparon para o disco. Antes era Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " -"para determinar canta caché de chave está en uso." - -#: server_status.php:1596 -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 "" -"Número de bloques utilizados na caché de chaves. Este valor é unha " -"referencia superior que indica o número máximo de bloques que se teñen " -"empregado." - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Porcentaxe de uso do límite de ficheiros abertos" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Número de peticións para ler un bloque chave da caché." - -#: server_status.php:1599 -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 "" -"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." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Número de peticións para escribir un bloque chave na caché." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Número de escritas físicas dun bloque chave no disco." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" -"Custo total da última procura compilada tal e como se computa mediante o " -"optimizador de consultas. Resulta útil para comparar o custo de planos de " -"procura diferentes para a mesma consulta. O valor por omisión é 0, que " -"significa que aínda non se compilou ningunha procura." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"O número máximo de conexións que teñen estado en uso simultaneamente desde " -"que se iniciou o servidor." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"O número de consultas que están a agardar para seren escritas nas fileiras " -"INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"O número de táboas abertas en total. Se a cantidade é grande, o valor da " -"caché de táboas posibelmente é demasiado pequeno." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "O número de ficheiros abertos." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "O número de fluxos abertos (utilizado principalmente para o rexistro)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "O número de táboas abertas." - -#: server_status.php:1611 -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 "" -"O número de bloques de memoria libres na caché de consultas. Os números " -"altos poden indicar problemas de fragmentación, que se poden resolver " -"enviando unha instrución FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "A cantidade de memoria libre para a caché de consultas." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "O número de impactos na caché." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "O número de consultas engadidas á caché." - -#: server_status.php:1615 -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 "" -"O número de consultas eliminadas da caché para liberar memoria para deixar a " -"caché para consultas novas. Esta información pode axudar a afinar o tamaño " -"da caché de consultas. A caché de consultas utiliza unha estratexia de " -"utilizado menos recentemente (LRU) para decidir que consultas debe eliminar " -"da caché." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"O número de consultas non enviadas á caché (que non se poden enviar debido á " -"configuración de query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "O número de consultas rexistradas na caché." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "O número total de bloques na caché de consultas." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "O estado da replicación en modo seguro (aínda non realizado)." - -#: server_status.php:1620 -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 "" -"O número de unións que non utilizan índices. Se este valor non for 0, " -"debería comprobar con atención os índices das táboas." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"O número de unións que utilizaron un intervalo de procura nunha táboa de " -"referencia." - -#: server_status.php:1622 -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 "" -"O número de unións sen chaves que comproban a utilización de chaves despois " -"de cada fila (se non é 0, debería comprobar con atención os índices das " -"táboas)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"O número de unións que utilizaron intervalos na primeira táboa (Normalmente " -"non é grave, mesmo de ser grande)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "O número de unións que realizaron un exame completo da primeira táboa." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "O número de táboas temporais abertas actualmente polo fío SQL escravo." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"O número total de veces (desde o inicio) que o fío de replicación SQL " -"escravo reintentou as transaccións." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "Isto está ON se este servidor é un escravo conectado a un máster." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"O número de fíos aos que lles levou crearse máis segundos dos indicados en " -"slow_launch_time." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"O número de consultas ás que lles levou máis segundos dos indicados en " -"long_query_time." - -#: server_status.php:1630 -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 "" -"O número de pasaxes de fusión que tivo que facer o algarismo de ordenación. " -"Se este valor for grande, sería ben que considerase incrementar o valor da " -"variábel de sistema sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "O número de ordenacións feitas con intervalos." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "O número de fileiras ordenadas." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "O número de ordenacións realizadas examinando a táboa." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "O número de veces que se adquiriu inmediatamente un bloqueo de táboa." - -#: server_status.php:1635 -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 "" -"O número de veces que non foi posíbel adquirir inmediatamente un bloqueo de " -"táboa e houbo que agardar. De ser alto e ter observado problemas no " -"desempeño, debería en primeiro lugar mellorar as consultas e despois, ora " -"partir a táboa ou táboas, ora utilizar a replicación." - -#: server_status.php:1636 -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 "" -"O número de fíos na caché de fíos. A relación de impactos da caché pódese " -"calcular como Threads_created/Connections. Se este valor for vermello, " -"debería aumentar a thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "O número de conexións abertas neste momento." - -#: server_status.php:1638 -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 "" -"O número de fíos creados para xestionar as conexións. De ser Threads_created " -"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto " -"non fornece unha mellora notábel no desempeño se ten unha boa implementación " -"de fíos.)" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Porcentaxe de caché de fíos %%" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "O número de fíos que non están a durmir." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Iniciar o vixilante" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instrucións/Configuración" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Rematou a redistribución/edición das gráficas" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Engadir unha gráfica" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Redistribuír/editar as gráficas" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Taxa de anovación" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Columnas da gráfica" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Ordenación das gráficas" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11681,15 +10909,15 @@ msgstr "" "A distribución das gráficas almacénase no almacenamento local do navegador. " "Pode resultar útil exportala se a configuración é complicada." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Restabelecer o predeterminado" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Instrucións de monitorización" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11703,7 +10931,7 @@ msgstr "" "general_log. Lembre, porén, que general_log produce moitos datos e " "incrementa a carga do servidor nun 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11715,11 +10943,11 @@ msgstr "" "phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " "Porén, pode tamén empregar a funcionalidade de gráficas do servidor." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Uso do monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11730,7 +10958,7 @@ msgstr "" "eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " "respectiva." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11743,11 +10971,11 @@ msgstr "" "consultas agrupadas na que se pode premer calquera instrución SELECT que " "apareza para analizala máis polo miúdo." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Por favor note:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11760,94 +10988,835 @@ msgstr "" "un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " "se requira máis esa vixilancia." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Gráfica predefinida" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Variábel/eis de estado" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Escoller unha serie:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Vixilancias frecuentes" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "ou escriba o nome da variábel:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Mostrar como valor diferencial" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Engadir a unidade aos valores dos datos" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Engadir esta serie" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Limpar esta series" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Series na gráfica:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Estatísticas de rexistro" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Intervalo temporal escollido:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Os resultados están agrupados polo texto da consulta." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analizador de consultas" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Preguntas desde o inicio: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Instrucións" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "nº" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtros" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Que conteñan a palabra:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Mostrar só valores de alerta" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrar pola categoría..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Mostrar os valores sen formato" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Ligazóns relacionadas:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"O número de conexións que se cancelaron porque o cliente morreu sen fechar " +"axeitadamente a conexión." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "O número de intentos de conexión co servidor de MySQL falidos." + +#: server_status_variables.php:334 +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 "" +"O número de transaccións que utilizaron a caché do rexistro binario mais que " +"excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " +"para almacenar instrucións para a transacción." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Número de transaccións que utilizaron a caché do rexistro binario." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"O número de tentativas de conexión (satisfactorias ou non) co servidor de " +"MySQL." + +#: server_status_variables.php:346 +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 "" +"O número de táboas temporais no disco creadas automaticamente polo servidor " +"ao executar as instrucións. Se Created_tmp_disk_tables é grande, será ben " +"que incremente o valor de tmp_table_size para que as táboas temporais se " +"baseen na memoria no canto de no disco." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Número de ficheiros temporais creados por mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Número de táboas temporais na memoria creadas automaticamente polo servidor " +"ao executar instrucións." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Número de fileiras escritas con INSERT DELAYED que sufriron algún erro " +"(probabelmente unha chave duplicada)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " +"na que se utiliza INSERT DELAYED recibe o seu propio fío." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Número de fileiras INSERT DELAYED escritas." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Número de instrucións FLUSH executadas." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Número de instrucións COMMIT internas." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Número de veces que se eliminou unha fileira dunha táboa." + +#: server_status_variables.php:381 +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 "" +"O servidor de MySQL pódelle preguntar ao motor de almacenamento NDB Cluster " +"se sabe dunha táboa cun nome dado. Isto chámase descuberta. " +"Handler_discovery indica o número de veces que se descubriron táboas." + +#: server_status_variables.php:387 +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 "" +"Número de veces que se leu a primeira entrada dun índice. Se for alto, tamén " +"suxire que o servidor está a realizar un monte de exames de índice " +"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " +"indexada." + +#: server_status_variables.php:393 +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 "" +"Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " +"é unha boa indicación de que as consultas e táboas están ben indexadas." + +#: server_status_variables.php:398 +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 "" +"Número de peticións para ler a seguinte fileira na orde da chave. Isto " +"increméntase se está a procurar unha columna de índice cunha limitación de " +"intervalo ou se está a examinar un índice." + +#: server_status_variables.php:403 +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 "" +"Número de peticións para ler a fileira anterior na orde da chave. Este " +"método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"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." + +#: server_status_variables.php:414 +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 "" +"Número de peticións para ler a seguinte fileira no ficheiro de datos. Isto é " +"alto se está a realizar moitos exames de táboas. Normalmente suxire que as " +"táboas non están indexadas axeitadamente ou que as súas consultas non están " +"escritas para aproveitar os índices de que dispón." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Número de instrucións de ROLLBACK («desfacer») interno." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Número de peticións para actualizar unha fileira nunha táboa." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Número de peticións para inserir un ficheiro nunha táboa." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Número de páxinas actualmente suxas." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Número de páxinas do buffer que se pediu que se limpasen." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Número de páxinas libres." + +#: server_status_variables.php:443 +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 "" +"Número de páxinas con seguro no buffer InnoDB buffer. Estas páxinas están " +"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " +"algunha outra razón." + +#: server_status_variables.php:448 +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 "" +"O número de páxinas ocupadas porque se destinan a reserva administrativa, " +"tales como bloqueos de fileiras ou o índice hash adaptativo. Este valor " +"tamén se pode calcular así: Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Tamaño total do buffer, en páxinas." + +#: server_status_variables.php:458 +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 "" +"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando " +"unha consulta vai examinar unha porción grande dunha táboa mais en orde " +"aleatoria." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Número de pre-lecturas secuenciais iniciadas por InnoDB. Isto acontece cando " +"InnoDB realiza un exame secuencial completo dunha táboa." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Número de lecturas lóxicas que InnoDB non puido satisfacer do buffer e tivo " +"que efectuar por medio de lecturas dunha única páxina." + +#: server_status_variables.php:474 +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 "" +"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 " +"pequeno." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Número de veces que se escribiu no buffer de InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Número de operacións fsync() até o momento." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Número actual de operacións fsync() pendentes." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Número actual de lecturas pendentes." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Número actual de escritas pendentes." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Cantidade de datos lida até o momento, en bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Número total de lecturas de datos." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Número total de escritas de datos." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Cantidade de datos escrita até o momento, en bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Número de escritas duplas realizadas e número de páxinas escritas con este " +"propósito." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Número de escritas duplas realizadas e número de páxinas escritas con este " +"propósito." + +#: server_status_variables.php:516 +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 "" +"Número de esperas debidas a que o buffer do rexistro é demasiado pequeno e " +"houbo que agardar até que se limpase para continuar." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Número de peticións de escrita no rexistro." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Número de escritas físicas no ficheiro de rexistro." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Número de escritas de fsync() feitas no ficheiro de rexistro." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Número de fsyncs do ficheiro de rexistro pendentes." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Escritas no ficheiro de rexistro pendentes." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Número de bytes escritos no ficheiro de rexistro." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Número de páxinas creadas." + +#: server_status_variables.php:541 +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 "" +"O tamaño de páxina InnoDB incluído (por omisión 16KB). Moitos valores " +"cóntanse en páxinas: o tamaño da páxina permite que se convertan doadamente " +"en bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Número de páxinas lidas." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Número de páxinas escritas." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" +"Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " +"milisegundos." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" +"Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " +"milisegundos." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Número de fileiras eliminadas das táboas InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Número de fileiras inseridas nas táboas InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Número de fileiras lidas das táboas InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Número de fileiras actualizadas en táboas InnoDB." + +#: server_status_variables.php:579 +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 "" +"Número de bloques chave na caché de chaves que se mudaron mais que aínda non " +"se limparon para o disco. Antes era Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " +"para determinar canta caché de chave está en uso." + +#: server_status_variables.php:588 +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 "" +"Número de bloques utilizados na caché de chaves. Este valor é unha " +"referencia superior que indica o número máximo de bloques que se teñen " +"empregado." + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Porcentaxe de uso do límite de ficheiros abertos" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Número de peticións para ler un bloque chave da caché." + +#: server_status_variables.php:599 +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 "" +"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." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Número de peticións para escribir un bloque chave na caché." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Número de escritas físicas dun bloque chave no disco." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" +"Custo total da última procura compilada tal e como se computa mediante o " +"optimizador de consultas. Resulta útil para comparar o custo de planos de " +"procura diferentes para a mesma consulta. O valor por omisión é 0, que " +"significa que aínda non se compilou ningunha procura." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"O número máximo de conexións que teñen estado en uso simultaneamente desde " +"que se iniciou o servidor." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"O número de consultas que están a agardar para seren escritas nas fileiras " +"INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"O número de táboas abertas en total. Se a cantidade é grande, o valor da " +"caché de táboas posibelmente é demasiado pequeno." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "O número de ficheiros abertos." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "O número de fluxos abertos (utilizado principalmente para o rexistro)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "O número de táboas abertas." + +#: server_status_variables.php:645 +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 "" +"O número de bloques de memoria libres na caché de consultas. Os números " +"altos poden indicar problemas de fragmentación, que se poden resolver " +"enviando unha instrución FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "A cantidade de memoria libre para a caché de consultas." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "O número de impactos na caché." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "O número de consultas engadidas á caché." + +#: server_status_variables.php:659 +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 "" +"O número de consultas eliminadas da caché para liberar memoria para deixar a " +"caché para consultas novas. Esta información pode axudar a afinar o tamaño " +"da caché de consultas. A caché de consultas utiliza unha estratexia de " +"utilizado menos recentemente (LRU) para decidir que consultas debe eliminar " +"da caché." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"O número de consultas non enviadas á caché (que non se poden enviar debido á " +"configuración de query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "O número de consultas rexistradas na caché." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "O número total de bloques na caché de consultas." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "O estado da replicación en modo seguro (aínda non realizado)." + +#: server_status_variables.php:679 +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 "" +"O número de unións que non utilizan índices. Se este valor non for 0, " +"debería comprobar con atención os índices das táboas." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"O número de unións que utilizaron un intervalo de procura nunha táboa de " +"referencia." + +#: server_status_variables.php:686 +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 "" +"O número de unións sen chaves que comproban a utilización de chaves despois " +"de cada fila (se non é 0, debería comprobar con atención os índices das " +"táboas)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"O número de unións que utilizaron intervalos na primeira táboa (Normalmente " +"non é grave, mesmo de ser grande)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "O número de unións que realizaron un exame completo da primeira táboa." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "O número de táboas temporais abertas actualmente polo fío SQL escravo." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"O número total de veces (desde o inicio) que o fío de replicación SQL " +"escravo reintentou as transaccións." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "Isto está ON se este servidor é un escravo conectado a un máster." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"O número de fíos aos que lles levou crearse máis segundos dos indicados en " +"slow_launch_time." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"O número de consultas ás que lles levou máis segundos dos indicados en " +"long_query_time." + +#: server_status_variables.php:717 +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 "" +"O número de pasaxes de fusión que tivo que facer o algarismo de ordenación. " +"Se este valor for grande, sería ben que considerase incrementar o valor da " +"variábel de sistema sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "O número de ordenacións feitas con intervalos." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "O número de fileiras ordenadas." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "O número de ordenacións realizadas examinando a táboa." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "O número de veces que se adquiriu inmediatamente un bloqueo de táboa." + +#: server_status_variables.php:734 +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 "" +"O número de veces que non foi posíbel adquirir inmediatamente un bloqueo de " +"táboa e houbo que agardar. De ser alto e ter observado problemas no " +"desempeño, debería en primeiro lugar mellorar as consultas e despois, ora " +"partir a táboa ou táboas, ora utilizar a replicación." + +#: server_status_variables.php:740 +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 "" +"O número de fíos na caché de fíos. A relación de impactos da caché pódese " +"calcular como Threads_created/Connections. Se este valor for vermello, " +"debería aumentar a thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "O número de conexións abertas neste momento." + +#: server_status_variables.php:748 +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 "" +"O número de fíos creados para xestionar as conexións. De ser Threads_created " +"grande, sería ben aumentar o valor de thread_cache_size. (Normalmente isto " +"non fornece unha mellora notábel no desempeño se ten unha boa implementación " +"de fíos.)" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Porcentaxe de caché de fíos %%" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "O número de fíos que non están a durmir." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Fallou a configuración da variábel" @@ -12452,26 +12421,26 @@ msgstr "Límite das chaves externas" msgid "Tracking report for table `%s`" msgstr "Informe de seguimento da táboa «%s»" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, 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." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, 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." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, 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." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Instrucións SQL executadas." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12479,118 +12448,118 @@ msgstr "" "Pódese executar o envorcado creando e empregando unha base de datos " "temporal. Asegúrese de que goza dos privilexios para facelo." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Marque estas dúas liñas como comentario se non as precisa." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instrucións de SQL exportadas. Copie o envorcado ou execúteo." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "A definición dos datos de seguimento foi eliminada con éxito" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Hai un erro na consulta" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Instrucións de seguimento" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Eliminar do informe a fila de datos de seguimento" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Non hai datos" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Instrución de definición de datos" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Instrución de manipulación de datos" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Envorcado de SQL (descarga do ficheiro)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Envorcado de SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Execución de SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Mostrar as versións" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar o seguemento para %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Desactivar agora" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Activar o seguemento para %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Activar agora" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Seguir estas instrucións de definición de datos:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Seguir estas instrucións de manipulación de datos:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Crear unha versión" @@ -12745,11 +12714,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time está configurado actualmente para %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Rexistro de consultas lentas" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "O rexistro de consultas lentas está desactivado." @@ -12765,15 +12734,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries esta configurado como «OFF»" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Active o rexistro de consultas lentas configurando {long_slow_queries} como " +"«ON». Con isto detéctanse as consultas con desempeño defectuoso." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries esta configurado como «OFF»" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Serie de versións" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "A versión do servidor de MySQL é anterior á 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12781,23 +12768,23 @@ msgstr "" "Debería anovar, xa que MySQL 5.1 ten un desempeño mellorado e MySQL 5.5 " "aínda máis." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versión actual: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versión menor" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "A versión do servidor de MySQL é anterior á 5.1.30 (a primeira edición de " "5.1 para o público)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12805,28 +12792,28 @@ msgstr "" "Debería anovar, xa que as versións recentes do MySQL 5.1 teñen un desempeño " "mellorado e MySQL 5.5 aínda máis." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" "A versión do servidor de MySQL é anterior á 5.5.8 (a primeiras edición de " "5.5 para o público)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Debería actualizar a unha versión estábel de MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribución" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "A versión está compilada a partir das fontes, non é un binario oficial do " "MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12837,40 +12824,40 @@ msgstr "" "binarios oficiais do MySQL, non para calquera distribución de paquetes (como " "RedHat, Debian/Ubuntu, etc.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "Atopouse «fonte» en version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "O manual do MySQL só é preciso para os binarios oficiais do MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "A documentación de Percona está en http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "Atopouse «percona» en version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "A documentación de Drizzle está en http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "A cadea da versión (%s) coincide co esquema de versións de Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arquitectura de MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "O MySQL non está compilado como paquete de 64 bits." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12881,20 +12868,20 @@ msgstr "" "acceder a toda a memoria. Debería considerar instalar a versión do MySQL " "para 64 bits." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Memoria dispoñíbel neste servidor: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Caché de consultas desactivada" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "A caché de consultas está desactivada." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12906,21 +12893,21 @@ msgstr "" "dous díxitos e configurando {query_cache_type) como «ON». Nota: Se vai " "empregar memcached, ignore esta recomendación." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size está configurado como 0 ou query_cache_type está " "configurado como «OFF»" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Método de caché das consultas" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "O método para a caché non é o máis óptimo." -#: libraries/advisory_rules.txt:157 +#: 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 no canto da " "caché de consultas de MySQL, especialmente se ten varios escravos." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12941,37 +12928,37 @@ msgstr "" "A caché de consultas está activa e o servidor recibe %d consultas por " "segundo. Esta regra actívase cando houber máis de 100 consultas por segundo." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Eficiencia (%%) da caché das consultas" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "A caché de consultas non se está a executar eficientemente; ten unha taxa de " "impactos baixa." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Considere incrementar {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "A taxa de impactos da caché de consultas de %s%% está por debaixo do 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Uso da caché de consultas" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Estase a empregar menos do 80%% da caché de consultas." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12979,7 +12966,7 @@ msgstr "" "Isto podería ser causado porque {query_cache_limit} sexa baixo de máis. " "Tamén podería axudar baleirar a caché de buscas." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12988,15 +12975,15 @@ msgstr "" "A relación actual da memoria da caché de consultas e o tamaño total da caché " "de consultas é de %s%%. Debería superar o 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Fragmentación da caché de consultas" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "A caché de consultas está moi fragmentada." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13017,7 +13004,7 @@ msgstr "" "da caché empregando esta fórmula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13028,11 +13015,11 @@ msgstr "" "a caché de consultas é un padrón alterno de bloques libres e usados. Este " "valor debería ser inferior ao 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Podas da memoria baixa da caché de consultas" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13040,7 +13027,7 @@ msgstr "" "As consultas na caché son eliminadas debido á pouca cantidade de memoria " "caché para as consultas." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13050,7 +13037,7 @@ msgstr "" "exceso de manter a caché é probábel que incremente co seu tamaño, así que " "faga isto en incrementos pequenos e vixile os resultados." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13059,11 +13046,11 @@ msgstr "" "A relación entre consultas retiradas e consultas inseridas é %s%%. Cando " "menor sexa este valor, mellor (Límite de activación desta regra: 0,1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Tamaño máximo da caché de consultas" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13071,7 +13058,7 @@ msgstr "" "O tamaño da caché de consultas supera os 128 MiB. As cachés de consultas " "grandes poden causar excesos significativos para poder manter a caché." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13079,23 +13066,23 @@ msgstr "" "Dependendo do entorno, podería ser que se incrementase o desempeño para " "reducir este valor." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Tamaño da caché de consultas: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Tamaño mínimo da caché de consultas" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "O tamaño máximo do conxunto de resultados da caché de consultas é o " "predeterminado de 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13115,19 +13102,19 @@ msgstr "" "na caché (con frecuencia invalidadas debido a actualizacións de táboas), " "aumentar {query_cache_limit} podería reducir a súa eficacia." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit está configurado como 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Porcentaxe de ordenamentos que causan táboas temporais" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Demasiados ordenamentos está causando táboas temporais." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13135,7 +13122,7 @@ msgstr "" "Considere aumentar sort_buffer_size e/ou read_rnd_buffer_size, dependendo " "dos límites de memoria do sistema" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13144,26 +13131,26 @@ msgstr "" "%s%% de todos os ordenamentos causan táboas temporais; este valor debería " "estar por debaixo do 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Taxa de ordenamentos que causan táboas temporais" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" "Media de táboas temporais: %s; este valor debería ser inferior a 1 por hora." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Ordenar as filas" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Hai moitas fileiras que están sendo ordenadas." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13175,20 +13162,20 @@ msgstr "" "ordenamentos empregan columnas indexadas na cláusula ORDER BY, dado que isto " "resulta en ordenamentos máis rápidos" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Media de fileiras ordenadas: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Taxa de unións sen índices" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Hai demasiadas unións sen índices." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13197,21 +13184,21 @@ msgstr "" "índices ás columnas que se empregan nas condicións de unión aumenta moito as " "velocidade das unións de táboas" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Media das unións de táboas: %s; este valor debería ser inferior a 1 por hora" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Taxa de lectura da primeira entrada do índice" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Taxa de lectura da primeira entrada do índice é alta." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13228,22 +13215,22 @@ msgstr "" "completas dos índices. Aparte disto, as análises completas dos índices só se " "poden reducir reescribindo as consultas." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Media de análises dos índices: %s; este valor debería ser inferior a 1 por " "hora" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Taxa de lectura de posicións fixas" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "A taxa de lectura de datos dunha posición fixa é alta." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13253,7 +13240,7 @@ msgstr "" "non realizan unha análise completa da táboa, incluíndo consultas de unión " "que non empregan índices. Engada índices onde proceda." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13262,15 +13249,15 @@ msgstr "" "Taxa media de lectura de posicións fixas: %s; este valor debería ser " "inferior a 1 por hora" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Taxa de lectura da seguinte fileira da táboa" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "A taxa de lectura da seguinte fileira da táboa é alta." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13278,7 +13265,7 @@ msgstr "" "isto indica que moitas consultas están a realizar análises completas das " "táboas. Engada índices onde proceda." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13286,15 +13273,15 @@ msgstr "" "Taxa de lectura da seguinte fileira das táboas: %s; este valor debería ser " "inferior a 1 por hora" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size fronte a max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 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." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13306,16 +13293,16 @@ msgstr "" "Así que se desexa incrementar o límite das táboas na memoria terá que " "incrementar tamén o outro valor." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Os valores actuais son tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Porcentaxe de táboas temporais en disco" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13323,7 +13310,7 @@ msgstr "" "Estanse a escribir moitas táboas temporais no disco no canto de conservalas " "na memoria." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13342,7 +13329,7 @@ msgstr "" "facebook.com/note.php?note_id=10150111255065841&comments\">artigo do grupo " "Pythian" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13351,11 +13338,11 @@ msgstr "" "Estanse a escribir no disco o %s%% de todas as táboas temporais; este valor " "debería estar por debaixo do 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Taxa de temporais no disco" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13373,7 +13360,7 @@ msgstr "" "maior de 512 bytes), como se menciona na documentación do MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13382,17 +13369,17 @@ msgstr "" "Taxa de táboas temporais que se están a escribir en disco: %s; este valor " "debería ser inferior a 1 por hora" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Tamaño do buffer de chaves de MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "O buffer de chaves non está inicializado. Non se vai gardar na caché ningún " "índice de MyISAM." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13400,21 +13387,21 @@ msgstr "" "Configure {key_buffer_size} dependendo do tamaño dos índices de MyISAM. 64M " "é un bon principio." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size é 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Uso histórico máximo do buffer de chaves MyISAM" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "O buffer de chaves de MyISAM (caché do índice ) %% empregado é baixo." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13424,7 +13411,7 @@ msgstr "" "para ver se se eliminou algún índice ou examinar as consultas e as " "expectativas sobre que índices se están a usar." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13432,44 +13419,44 @@ msgstr "" "máximo %% buffer de chaves de MyISM %% empregado: %s%%; este valor debería " "superar o 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Porcentaxe do buffer de chaves de MySISAM empregado" -#: libraries/advisory_rules.txt:309 +#: 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 " "o 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Porcentaxe de lecturas de índice da memoria" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "O %% dos índices que empregan o buffer de chaves MyISAM é baixo." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Podería ter que aumentar {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Índices lidos desde a memoria: %s%%; este valor debería superar o 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Taxa de apertura de táboas" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "A taxa de apertura de táboas é alta." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13477,17 +13464,17 @@ msgstr "" "Abrir as táboas require E/S no disco, o que é moi custoso. Incrementar " "{table_open_cache} podería evitar isto." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Taxa de apertura de táboas: %s, este valor debería ser menor a 10 por hora" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Porcentaxe de uso do límite de ficheiros abertos" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13495,7 +13482,7 @@ msgstr "" "O número de ficheiros abertos está preto do máximo permitido. Podería obter " "un erro do tipo «Demasiados ficheiros abertos»." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13503,7 +13490,7 @@ msgstr "" "Considere aumentar {open_files_limit}, e comprobe o rexistro de erros ao " "reiniciar tras cambiar este valor." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13511,98 +13498,98 @@ msgstr "" "A cantidade de ficheiros abertos é o %s%% do límite. Debería ser inferior ao " "85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Taxa de apertura de ficheiros" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "A taxa de apertura de ficheiros é alta." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Taxa de apertura de ficheiros: %s, este valor debería ser menor a 5 por hora" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Porcentaxe de bloqueos de táboa inmediatos" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Demasiados bloqueos de táboas non foron levantados inmediatamente." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimice as consultas e/ou empregue InnoDB para reducir o tempo de espera de " "bloqueos." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Bloqueos de táboa inmediatos: %s%%; este valor debería superar o 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Taxa de espera para bloqueos de táboas" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Taxa de espera para bloqueos de táboas: %s; este valor debería ser inferior " "a 1 por hora" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Caché de fios" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" "A caché de fíos está desactivada, sobrecargando as novas conexións a MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Active a caché de fíos estabelecendo {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "A caché de fíos é 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Porcentaxe de acertos da caché de fíos %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "A caché de fíos non é eficiente." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Aumente {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Taxa de impactos da caché de fíos: %s%%; este valor debería superar o 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Fíos que son lentos para iniciarse" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Hai demasiados fíos que inician a execución lentamente." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13610,20 +13597,20 @@ msgstr "" "Isto xeralmente acontece se o sistema está sobrecargado por operacións " "relativamente sinxelas. Debería vixiar detalladamente a carga do sistema." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s fío(s) empregaron máis de %s segundos en iniciarse; debería ser 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Tempo de inicio lento" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads é superior a 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13631,16 +13618,16 @@ msgstr "" "Configure slow_launch_time a 1 ou 2 segundos para contar correctamente os " "fíos que se inician lentamente" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time está configurado a %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Porcentaxe de conexións empregadas" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13648,7 +13635,7 @@ msgstr "" "O máximo de conexións empregadas simultaneamente está preto do valor de " "conexións máximas (max_connections)." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13658,7 +13645,7 @@ msgstr "" "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:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13666,15 +13653,15 @@ msgstr "" "max_used_connections está no %s%% de max_connections; debería ser inferior " "ao 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Porcentaxe de conexións canceladas" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Canceláronse demasiadas conexións." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Este artigo podería ser de axuda para " "rastrear o motivo das mesmas." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "O %s%% de todas as conexións foi cancelado. Este valor debería ser inferior " "ao 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Taxa de conexións canceladas" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13705,15 +13692,15 @@ msgstr "" "A taxa de conexións canceladas está en %s; este valor debería ser inferior a " "1 por hora" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Porcentaxe de clientes cancelados" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Demasiadas clientes foron cancelados." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13723,45 +13710,45 @@ msgstr "" "axeitadamente. isto pódese deber a problemas na rede ou a que o código non " "fecha o xestor da base de datos axeitadamente. Comprobe a rede e o código." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "O %s%% de todos os clientes foi cancelado. Este valor debería ser inferior " "ao 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Taxa de clientes cancelados" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "A taxa de clientes cancelados está en %s; este valor debería ser inferior a " "1 por hora" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Está InnoDB desactivado?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB non está activado." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB é habitualmente a mellor escolla para motores de táboas." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb está configurado como «value»" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Tamaño de rexistro de InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13769,7 +13756,7 @@ msgstr "" "O tamaño do rexistro de InnoDB non e apropiado en relación á reserva de " "buffer do InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13794,7 +13781,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">esta entrada de blogue" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13803,15 +13790,15 @@ msgstr "" "O tamaño do rexistro de InnoDB está no %s%% en relación co tamaño da reserva " "do buffer de InnoDB; non debería ser inferior a 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Tamaño máximo do rexistro de InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "O tamaño do ficheiro de rexistro de InnoDB e inadecuadamente longo." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13835,20 +13822,20 @@ msgstr "" "href=\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">esta entrada de blogue" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "O tamaño absoluto do rexistro InnoDB é de %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Tamaño da reserva de buffer do InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "A reserva de buffer de InnoDB é bastante pequena." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13874,7 +13861,7 @@ msgstr "" "significativa. Consulte tamén este artigo" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13887,15 +13874,15 @@ msgstr "" "perfectamente adecuado para este sistema se non ten moitas táboas de InnoDB " "ou outros servizos en execución na mesma máquina." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Insercións concorrentes de MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Active concurrent_insert configurándoo como 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also documentación do MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB enviados desde a última anovación" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB recibidos dende a última anovación" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tráfico do servidor (en KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Conexións desde a última anovación" + +#~ msgid "Questions since last refresh" +#~ msgstr "Preguntas dende a última anovación" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Preguntas (instrucións executadas polo servidor)" + +#~ msgid "Runtime Information" +#~ msgstr "Información sobre o tempo de execución" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Número de filas:" + +#~ msgid "Refresh rate: " +#~ msgstr "Taxa de refresco: " + +#~ msgid "Run analyzer" +#~ msgstr "Executar o analizador" + #~ msgid "Show more actions" #~ msgstr "Mostrar máis accións" diff --git a/po/he.po b/po/he.po index 62dd03f031..60eefc3d81 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-09-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hebrew Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "סוג שאילתה" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "סוג שאילתה" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "סוג שאילתה" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "סה\"כ" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "סה\"כ" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "דפים חופשיים" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "חיבורים" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "תהליכים" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s טבלאות" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Persian" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "ללא" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1310,526 +1283,528 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "שמירה כקובץ" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "מופעל" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "מבוטל" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Import files" msgid "Chart Title" msgstr "קבצי ייבוא" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "מקומי" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy msgid "Cancel request" msgstr "בקשות כתיבה" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "אין מאגרי נתונים" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "אין מאגרי נתונים" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "הסברת SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "זמן" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "סה\"כ" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "תוצאת SQL" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "טבלה" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "קידוד" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "הוספת שדה חדש" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "שאילתת SQL" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "אפשרויות טבלה" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "מספר שדות" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "סה\"כ" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "מקומי" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "עדכון שאילתה" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "תיעוד" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "תיעוד" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "מקומי" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "תהליכים" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "אישור" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "העתקת מאגר נתונים אל" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "קידוד" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "טבלה חייבית להכיל לפחות שדה אחד." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "השתמש בטבלאות" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "הוספת שדה חדש" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "הראה רשת" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "מופעל" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "מבוטל" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "חיפוש" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "שאילתת SQL" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "שאילתת SQL" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "עיון" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "מוחק %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "מספר שדות" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "הוספת משתמש חדש" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "שאילתת SQL" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "שאילתת SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "שינוי" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1838,219 +1813,224 @@ msgstr "%d הוא לא מספר שורה תקין." msgid "Save" msgstr "שמירה" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "חיפוש" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "הוספת/מחיקת עמודות שדה" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "תוצאת SQL" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "העתקה" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "הוספת %s תאים" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "שמות עמודה" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "מראה שורות" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "ייצור" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "הצגת הכול" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "הוספת שדה חדש" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2058,30 +2038,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2089,96 +2069,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "מאי" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2186,78 +2166,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2265,113 +2245,113 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2423,16 +2403,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "לשנייה" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "לדקה" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "לשעה" @@ -2458,7 +2438,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "עולה" @@ -2467,7 +2447,7 @@ msgstr "עולה" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "יורד" @@ -2583,7 +2563,7 @@ msgstr "האם למחוק את התוצאות עבור הטבלה %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "מחיקה" @@ -2779,7 +2759,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2834,12 +2814,13 @@ msgstr "סימון הכול" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" @@ -2847,7 +2828,7 @@ msgstr "יצוא" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2932,16 +2913,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2955,21 +2936,21 @@ msgstr "אין אינדקסים מוגדרים!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "מספור" @@ -2979,13 +2960,13 @@ msgstr "מספור" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "איסוף" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "הערות" @@ -3029,7 +3010,7 @@ msgstr "תצוגה" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "מבנה" @@ -3102,36 +3083,37 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "משתמש" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "דו\"ח בינארי" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "שכפול" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "מנועים" @@ -3183,6 +3165,108 @@ msgstr "אין טבלאות" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "שאילתת SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "סוג שאילתה" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "השתמש בהכנסות מעוכבות" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "טבלאות" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "שדות" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "ראיית טבלאות" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "מצב InnoDB" + +#: 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." @@ -3276,7 +3360,7 @@ msgstr "פעולות" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "ערך" @@ -3678,11 +3762,6 @@ msgstr "" msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "שאילתת SQL" - #: libraries/Util.class.php:710 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:292 @@ -3717,7 +3796,7 @@ msgid "Create PHP Code" msgstr "ייצור קוד PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "רענון" @@ -3818,13 +3897,6 @@ msgstr "הדפסה" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "טבלאות" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3867,59 +3939,59 @@ msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." msgid "Check Privileges" msgstr "בדיקת הרשאות" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6080,8 +6152,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "שם משתמש:" @@ -6740,10 +6812,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "מצב InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7404,18 +7472,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "שינוי סדר הטבלה לפי" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7517,17 +7585,17 @@ msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "מבנה בלבד" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "מבנה ונתונים" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "נתונים בלבד" @@ -7955,8 +8023,7 @@ msgstr "סוגי MIME זמינים" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "מארח" @@ -8486,7 +8553,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "משתנה" @@ -9046,7 +9113,7 @@ msgstr "תכונות" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "תוספת" @@ -9742,7 +9809,7 @@ msgstr "הוספת קידומת לטבלה" msgid "Check tables having overhead" msgstr "בדיקת טבלאות בעלות תקורה" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10119,7 +10186,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "סינית מסורתית" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10202,41 +10269,41 @@ msgstr "טבלה %s נמחקה" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "דפים" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "קבצי ייבוא" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "יצירת אינדקס חדש" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "שם משתמש" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10358,16 +10425,11 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "שדות" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -10452,7 +10514,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Persian" @@ -10513,10 +10575,6 @@ msgstr "ההרשאות נטענו מחדש בהצלחה." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10648,880 +10706,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "סוג שאילתה" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "השתמש בהכנסות מעוכבות" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "התקבל" + +#: server_status.php:168 +msgid "Sent" +msgstr "נשלח" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "ראיית טבלאות" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "ניסיונות כושלים" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "בוטל" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "קוד זיהוי" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "פקודה" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "מידע זמן ריצה" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "מספר שדות" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "רענון" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "אל תשנה את הסיסמא" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "ראיית טבלאות" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "ראיית טבלאות" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "יחסים" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "סוג שאילתה" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "פונקציה" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "משפטים" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "התקבל" - -#: server_status.php:1208 -msgid "Sent" -msgstr "נשלח" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "ניסיונות כושלים" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "בוטל" - -#: server_status.php:1322 -msgid "ID" -msgstr "קוד זיהוי" - -#: server_status.php:1338 -msgid "Command" -msgstr "פקודה" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "חבילת הקידוד של הקובץ:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "סוג שאילתה" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "שבת" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "הוספת שדה חדש" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11530,7 +10880,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11538,18 +10888,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11557,11 +10907,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11569,90 +10919,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "שינוי שם מאגר נתונים אל" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "בחירת טבלאות" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "הוספת משתמש חדש" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "שאילתת SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "סטטיסטיקת שורה" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "בחירת הכל" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "סוג שאילתה" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11660,7 +11010,7 @@ msgid_plural "%d seconds" msgstr[0] "לשנייה" msgstr[1] "לשנייה" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11668,6 +11018,621 @@ msgid_plural "%d minutes" msgstr[0] "בשימוש" msgstr[1] "בשימוש" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "משפטים" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "אל תשנה את הסיסמא" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "ראיית טבלאות" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "ראיית טבלאות" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "יחסים" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "חבילת הקידוד של הקובץ:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "סוג שאילתה" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12247,147 +12212,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "סוג שאילתה" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "אין מאגרי נתונים" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "נתונים" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "גרסת שרת" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "גרסת שרת" @@ -12530,12 +12495,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "שאילתת SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12551,130 +12516,140 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "בחירת טבלאות" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "גרסת שרת" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Persian" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "תיאור" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "קידוד MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "השרת אינו מגיב" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12682,21 +12657,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s טבלאות" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13075,287 +13050,287 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "הראה שאילתות שלמות" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "הראה שאילתות שלמות" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "הראה שאילתות שלמות" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "הראה שאילתות שלמות" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "יצירת עמוד חדש" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "חבילת הקידוד של הקובץ:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "חבילת הקידוד של הקובץ:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "סוג שאילתה" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "השרת אינו מגיב" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "חיבורים" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "חיבורים" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "מאפשר יצירת טבלאות זמניות." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13484,20 +13459,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13512,7 +13487,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13521,25 +13496,61 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB שנשלחו מאז הרענון האחרון" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB שהתקבלו מאז הרענון האחרון" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "תעבורת השרת (ב־KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "התחברויות מאז הרענון האחרון" + +#~ msgid "Questions since last refresh" +#~ msgstr "שאלות מאז הרענון האחרון" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "שאלות (הצהרות שהופעלו על ידי השרת)" + +#~ msgid "Runtime Information" +#~ msgstr "מידע זמן ריצה" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "מספר שדות" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "רענון" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "סוג שאילתה" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/hi.po b/po/hi.po index d3c141f51a..0ef3e2d84f 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,18 +3,18 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi \n" -"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -45,7 +45,7 @@ msgstr "" msgid "Search" msgstr "ढूंढें" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -75,21 +75,21 @@ msgstr "ढूंढें" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "जाएँ" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "वर्णन" @@ -112,17 +112,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "टेबल टिप्पणि:" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -136,12 +136,12 @@ msgstr "टेबल टिप्पणि:" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "स्तम्भ" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -159,11 +159,11 @@ msgstr "स्तम्भ" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "प्रकार/किस्म" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -175,11 +175,11 @@ msgstr "प्रकार/किस्म" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "शून्य" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -190,11 +190,11 @@ msgstr "शून्य" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "तयशुदा" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -203,7 +203,7 @@ msgstr "तयशुदा" msgid "Links to" msgstr "के लिए लिंक" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -216,7 +216,7 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -234,12 +234,12 @@ msgstr "टिप्पणी" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "नहीं" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -262,8 +262,8 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "हाँ " @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "टेबल " @@ -338,7 +338,7 @@ msgstr "आकार" msgid "in use" msgstr "उपयोग में है" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "उपयोग में है" msgid "Creation" msgstr "रचना" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "रचना" msgid "Last update" msgstr "पिछला नवीनीकरण" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -407,7 +407,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "डाटाबेस" @@ -415,17 +415,17 @@ msgstr "डाटाबेस" msgid "Last version" msgstr "पिछला संस्करण" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "बनाया" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "स्थिति" @@ -440,7 +440,7 @@ msgstr "कार्य" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "दिखाओ" @@ -456,11 +456,11 @@ msgstr "इस टेबल के लिए ट्रैकिंग डेट msgid "Drop" msgstr "रद्द" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "निष्क्रिय" @@ -468,11 +468,11 @@ msgstr "निष्क्रिय" msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" @@ -544,47 +544,47 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "ज्यामिति" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "बिंदु %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "एक बिंदु जोड़ें" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "बाहरी वृत्त" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "आंतरिक वृत्त" @@ -592,15 +592,15 @@ msgstr "आंतरिक वृत्त" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "नया आंतरिक वृत्त जोडें" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "बहुभुज" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "नया बहुभुज जोडें" @@ -742,8 +742,9 @@ msgstr "अधिक सेटिंग्स" msgid "Database server" msgstr "यूसर के लिए डेटाबेस" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "सर्वर" @@ -764,7 +765,7 @@ msgstr "अधिक सेटिंग्स" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "यूसर" @@ -1000,12 +1001,12 @@ msgstr "प्रिविलेज पुनः लोड करें" msgid "Removing Selected Users" msgstr "चयनित यूसर को हटायें" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "बंद" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1015,17 +1016,17 @@ msgstr "बंद" msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "सर्वर चुनिये" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1038,13 +1039,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1059,54 +1061,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "सर्वर चुनिये" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "प्रक्रियां" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "कनेक्शन" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "डाटाबेसों के सांख्यिकी" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not save configuration" msgid "Local monitor configuration incompatible" msgstr "विन्यास सहेज नहीं सकते" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1114,136 +1080,140 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "क्वेरी कैश" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "क्वेरी कैश" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "क्वेरी कैश" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total count" msgid "Total memory" msgstr "कुल गिनती" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "बफर पूल" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "कुल" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "मुक्त पृष्ठों" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "प्राप्त" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "कनेक्शन" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "प्रक्रियां" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "बैट्स" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1251,85 +1221,86 @@ msgid "%d table(s)" msgstr " %s टेबलें" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "संस्करण" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "ट्रैफ़िक" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "सेटिंग्स" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "डेटाबेस को हटा दे" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "ग्रिड पर स्नैप" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "कोई नहीं" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1337,532 +1308,534 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save output to a file" msgid "Set log_output to %s" msgstr "उत्पादन को फाईल मे सेव करें" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "सक्षम" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "अक्षम" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "सेटिंग्स प्रबंधक" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "अधिक सेटिंग्स" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Default title" msgid "Chart Title" msgstr "डिफ़ॉल्ट शीर्षक" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "अंतर" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading" msgid "Analysing logs" msgstr "लोड हो रहा है" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "पढने का अनुरोध" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "डेटाबेस को कूद" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "कोइ डाटाबेस नहिं" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "विश्लेषण" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL की व्याख्या " -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "समय" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "कुल" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "रूपरेखा" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "टेबल " -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "कोई" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add index" msgid "Edit chart" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL क्वरी" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "टेबल प्रदर्शन विकल्प" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "डाली गयी पक्न्तियों" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "कुल" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Loading" msgid "Loading logs" msgstr "लोड हो रहा है" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "पुनः लोड" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "विन्यास आयात नहीं किया जा सका" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "क्वरी का नवीनीकरण करें" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "डोक्युमेंटेशन" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "विवरण..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "प्रमाणीकरण" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "रद्द" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "लोड हो रहा है" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "याचिका प्रसंस्करण" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "काँलम गिराना" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "प्राथमिक कुंजी जोड़" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "ठीक है" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "डेटाबेस पुनः लोड" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "डेटाबेस को ______ में कॉपी करें" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "वर्ण सेट बदलें" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "टेबल का उपयोग करो" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add index" msgid "Hide indexes" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "ग्रिड दिखाओ" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "सक्षम" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "अक्षम" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "खोजें" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "खोज मापदंड छिपाना" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "ब्राउज़" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "मिटाएँ" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "\"%s\" काँलम के लिए मान " -#: js/messages.php:276 +#: js/messages.php:263 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "\"%s\" काँलम के लिए मान " -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "हर एक मान अलग क्षेत्र में दर्ज करें" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "नयी वलुए जोडें" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "क्वरी बॉक्स छुपा" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "क्वेरी बॉक्स दिखाएँ" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "कोई चयनित रो नहीं" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "बदलिये" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "अधिकतम निष्पादन समय" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d वैध रो संख्या नहीं है" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1871,211 +1844,216 @@ msgstr "%d वैध रो संख्या नहीं है" msgid "Save" msgstr "बचाना" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "खोज मापदंड छिपाना" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "ढूंढें" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "कोलम जोडें/हटायें" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQLपरिणाम" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "सूचक का आकार डेटा" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "अनुकृति" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "नया काँलम जोडें" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चयन करें." -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "काँलम के लिए एक विकल्प जोड़ें" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "चयन करने के लिए क्लिक करें." -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "दृश्य पर जायें" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "कोलम के नाम" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "अद्यतन रोयाँ" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "पासव्रड उत्पन्न करें" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "उत्पन्न" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "पासवर्ड बदलिये " -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "अधिक" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "सभी दिखाएँ" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add index" msgid "Hide Panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2084,29 +2062,29 @@ msgstr "" "phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", नवीनतम स्थिर संस्करण:" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "डेटाबेस को कूद" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "किया" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2114,149 +2092,149 @@ msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "आज" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "जनवरी" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "फरवरी" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "मार्च" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "अप्रैल" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "मई" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "जून" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "जुलाई" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "अगस्त" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "सितम्बर" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "नवम्बर" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2264,97 +2242,97 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "हफ्ता" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "कोई नहीं" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "घंटा" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "मिनट" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "सेकंड" @@ -2405,16 +2383,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "प्रति सेकंड" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "प्रति मिनट" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "प्रति घंटे" @@ -2440,7 +2418,7 @@ msgstr "फ़ॉन्ट का आकार" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "आरोही" @@ -2449,7 +2427,7 @@ msgstr "आरोही" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "अवरोही" @@ -2565,7 +2543,7 @@ msgstr "इस %s टेबल से मैच हटाएँ" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "मिटाएँ" @@ -2755,7 +2733,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2810,12 +2788,13 @@ msgstr "सभी को चेक करें" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" @@ -2823,7 +2802,7 @@ msgstr "निर्यात" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2908,16 +2887,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin की नई विंडो खोलें" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2931,21 +2910,21 @@ msgstr "परिभाषित सूचकांक नहीं पाए #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "प्रमुखता" @@ -2955,13 +2934,13 @@ msgstr "प्रमुखता" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "क्रम में करें" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "टिप्पणी" @@ -3004,7 +2983,7 @@ msgstr "दृश्य" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "संरचना" @@ -3077,36 +3056,37 @@ msgstr "" msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "यूसर" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "बाइनरी लोग" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "प्रतिकृति" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "इंजन" @@ -3162,6 +3142,104 @@ msgstr "टेबल गणना" msgid "There are no recent tables" msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL क्वरी" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "हैंडलर" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "क्वेरी कैश" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "थ्रेअद" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "अस्थायी डेटा" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "देरी आवेषण" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "कुंजी कैश" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "जोड़" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "छँटाई" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "टेबल" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "लेन - देन समन्वयक" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "फाइलें" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "सभी टेबलओं फ्लश" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "खुला टेबल शो" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "मास्टर अवस्था" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3258,7 +3336,7 @@ msgstr "ऑपरेटर" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "मूल्य" @@ -3663,11 +3741,6 @@ msgstr "" msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL क्वरी" - #: libraries/Util.class.php:710 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:292 @@ -3702,7 +3775,7 @@ msgid "Create PHP Code" msgstr "PHP Code बनाओ" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "ताज़ा करना" @@ -3802,13 +3875,6 @@ msgstr "छापें" msgid "shared" msgstr "साझा" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "टेबल" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3849,24 +3915,24 @@ msgstr "डाटाबेस के प्रिविलेज चेक क msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी |" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3877,38 +3943,38 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] निर्देश आपकी विन्यास फाइल मैं सेट होना आवश्यक है" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6111,8 +6177,8 @@ msgid "" msgstr "" "अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "यूसर नाम" @@ -6738,10 +6804,6 @@ msgstr "" msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "बफर पूल उपयोग" @@ -7408,18 +7470,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "टेबल क्रमांक को बदलिये " -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7521,17 +7583,17 @@ msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे " #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "केवल संरचना" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "संरचना और डाटा" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "केवल डाटा" @@ -7941,8 +8003,7 @@ msgstr "फीचरस दिखाओ" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "होस्ट" @@ -8474,7 +8535,7 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "स्थिति" @@ -9063,7 +9124,7 @@ msgstr "विशेषता" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "अतिरिक्त" @@ -9745,7 +9806,7 @@ msgstr "टेबल पर उपसर्ग जोड़ें" msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" @@ -10097,7 +10158,7 @@ msgstr "टोग्ल छोटे/बड़े" msgid "Toggle relation lines" msgstr "संबंध चयन करने के लिए क्लिक करें :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10179,37 +10240,37 @@ msgstr "पेज बना दिया गया है" msgid "Page creation failed" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "पेज" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "चयनित पेज से आयात" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "चयनित पेज को निर्यात" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "एक पेज बनाएँ और इसमें निर्यात करिएँ" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "नया पेज के नाम" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "निर्यात/आयात पैमाने पर" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "सिफारिश" @@ -10327,15 +10388,11 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "फाइलें" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -10385,8 +10442,8 @@ msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -"नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में " -"ट्रेफिक बडने की संभावना है। " +"नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में ट्रेफिक बडने की " +"संभावना है। " #: server_databases.php:345 msgid "No databases" @@ -10420,7 +10477,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "संस्करण" @@ -10480,10 +10537,6 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "मास्टर अवस्था" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10613,886 +10666,174 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status.php:657 -msgid "Handler" -msgstr "हैंडलर" - -#: server_status.php:658 -msgid "Query cache" -msgstr "क्वेरी कैश" - -#: server_status.php:659 -msgid "Threads" -msgstr "थ्रेअद" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "अस्थायी डेटा" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "देरी आवेषण" - -#: server_status.php:663 -msgid "Key cache" -msgstr "कुंजी कैश" - -#: server_status.php:664 -msgid "Joins" -msgstr "जोड़" - -#: server_status.php:666 -msgid "Sorting" -msgstr "छँटाई" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "लेन - देन समन्वयक" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "सभी टेबलओं फ्लश" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "खुला टेबल शो" - -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "फ्लश क्वेरी कैश" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "क्रम जानकारी" - -#: server_status.php:830 -msgid "All status variables" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:832 -msgid "Monitor" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:834 -msgid "Advisor" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "रो की संख्या" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "ताज़ा करना" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "पासवर्ड मत बदलिये" +#: server_status.php:122 +msgid "Replication status" +msgstr "प्रतिकृति स्थिति" -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "खुला टेबल शो" - -#: server_status.php:914 -msgid "Filter by category..." +#: server_status.php:139 +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:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "खुला टेबल शो" +#: server_status.php:149 +msgid "Received" +msgstr "प्राप्त" -#: server_status.php:930 -#, fuzzy -#| msgid "Replication" -msgid "Related links:" -msgstr "पसंबंधित लिंक" +#: server_status.php:168 +msgid "Sent" +msgstr "भेजा" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "क्वरी प्रकार" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:966 +#: server_status.php:229 +msgid "Failed attempts" +msgstr "असफल प्रयास" + +#: server_status.php:253 +msgid "Aborted" +msgstr "रद्द" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "आदेश" + +#: server_status_advisor.php:29 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "एडमिनिस्ट्रेशन" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "स्टार्टअप पेज अनुकूलित करें" - -#: server_status.php:1044 -msgid "Statements" -msgstr "रो आँकड़े" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "प्रतिकृति स्थिति" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "प्राप्त" - -#: server_status.php:1208 -msgid "Sent" -msgstr "भेजा" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "अधिकतम वर्तमान कनेक्शन" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "असफल प्रयास" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "रद्द" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "आदेश" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "आयात की गई फ़ाइल का प्रारूप" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "ट्रैकिंग सक्रिय नहीं है." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "क्षेत्र रोयाँ" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "अनुक्रमणिका जोड़" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "मूलभूत मान को बहाल" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11501,7 +10842,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11509,18 +10850,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11528,11 +10869,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11540,95 +10881,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "डेटाबेस को हटा दे" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "टेबल चुनिये" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "अवैध टेबल नाम" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "एक नया सर्वर जोडें" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL क्वरी" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "आँकड़े दिखाएँ" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "पेज चुनिये" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11636,7 +10977,7 @@ msgid_plural "%d seconds" msgstr[0] "सेकंड" msgstr[1] "सेकंड" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11644,6 +10985,628 @@ msgid_plural "%d minutes" msgstr[0] "मिनट" msgstr[1] "मिनट" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "स्टार्टअप पेज अनुकूलित करें" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "रो आँकड़े" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "पासवर्ड मत बदलिये" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "खुला टेबल शो" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "खुला टेबल शो" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Replication" +msgid "Related links:" +msgstr "पसंबंधित लिंक" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "आयात की गई फ़ाइल का प्रारूप" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "ट्रैकिंग सक्रिय नहीं है." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12228,29 +12191,29 @@ msgstr "विदेशी कुंजी बाधा" msgid "Tracking report for table `%s`" msgstr "टेबल `%s` की ट्रैकिंग रिपोर्ट " -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL कथन चलाएँ" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12258,131 +12221,131 @@ msgstr "" "आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप " "ऐसा करने के लिए विशेषाधिकार हैं कृपया." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "संस्करण %s क्षणचित्र (SQL कोड)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "त्रुटियों को इकट्ठा करें" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "ट्रैकिंग कि स्थिति" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "कोइ डाटाबेस नहिं" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "तिथि" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "डेटा परिभाषा कथन" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "डेटा हेरफेर कथन" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL दुम्प ( फाइल डाउनलोड )" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL ढेर लगाना" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL अमल" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "%s के रूप में निर्यात" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "संस्करण दिखाएँ" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "ट्रैकिंग निष्क्रिय %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "निष्क्रिय करे" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "ट्रैकिंग सक्रिय %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "सक्रिय करे" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "संस्करण बनाएँ" @@ -12525,13 +12488,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "क्वेरी बॉक्स दिखाएँ" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12547,133 +12510,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "टेबल चुनिये" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "संस्करण बनाएँ" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "संस्करण" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "वर्णन" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL वर्ण सेट" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "क्वेरी कैश" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12681,23 +12654,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "क्वेरी कैश" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "क्वेरी कैश" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr " %s टेबलें" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13097,266 +13070,266 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "SQL प्रशन दिखाएँ" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "टेबल बनायें" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s डाटाबेस मे नया टेबल बनाओ" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "बफर आकार सोर्ट करें" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "बफर आकार सोर्ट करें" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "कुंजी कैश" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "बफर आकार सोर्ट करें" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are no files to upload" msgid "Threads that are slow to launch" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are no files to upload" msgid "There are too many threads that are slow to launch." msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "There are no files to upload" msgid "" @@ -13364,49 +13337,49 @@ msgid "" "launch" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "के लिए" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "के लिए" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "बफर पूल आकार" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13542,24 +13515,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "बफर पूल आकार" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "बफर पूल आकार" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13574,7 +13547,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13583,31 +13556,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "अधिकतम वर्तमान कनेक्शन" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "अधिकतम वर्तमान कनेक्शन" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "अधिकतम वर्तमान कनेक्शन" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "सर्वर चुनिये" + +#~ msgid "Runtime Information" +#~ msgstr "क्रम जानकारी" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "रो की संख्या" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "ताज़ा करना" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "क्वरी प्रकार" + #~ msgid "Show more actions" #~ msgstr "अधिक क्रियाएँ दिखाओ" diff --git a/po/hr.po b/po/hr.po index 2b148b7a6f..650d7716fd 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Croatian " -"\n" -"Language: hr\n" +"Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Traži" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Traži" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Naziv ključa" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,14 +139,14 @@ msgstr "Komentari tablice" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -164,11 +164,11 @@ msgstr "Nazivi stupaca" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Vrsta" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -180,11 +180,11 @@ msgstr "Vrsta" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -195,11 +195,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Zadano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -208,7 +208,7 @@ msgstr "Zadano" msgid "Links to" msgstr "Povezano s" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -221,7 +221,7 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -239,12 +239,12 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -267,8 +267,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Da" @@ -326,7 +326,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tablica" @@ -346,7 +346,7 @@ msgstr "Veličina" msgid "in use" msgstr "u upotrebi" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -354,7 +354,7 @@ msgstr "u upotrebi" msgid "Creation" msgstr "Izrada" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -362,7 +362,7 @@ msgstr "Izrada" msgid "Last update" msgstr "Posljednje ažuriranje" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -419,7 +419,7 @@ msgstr "Provjeri tablicu" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza podataka" @@ -428,18 +428,18 @@ msgstr "Baza podataka" msgid "Last version" msgstr "Izradi relaciju" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Izradi" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Ažurirano" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stanje" @@ -454,7 +454,7 @@ msgstr "Aktivnost" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Prikaži" @@ -470,11 +470,11 @@ msgstr "" msgid "Drop" msgstr "Ispusti" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "neaktivno" @@ -483,11 +483,11 @@ msgstr "neaktivno" msgid "Versions" msgstr "Perzijski" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Samo strukturu" @@ -564,49 +564,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Točka" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Dodaj %s polja" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Redovi završeni s" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -616,17 +616,17 @@ msgstr "" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -774,8 +774,9 @@ msgstr "Opće osobine relacija" msgid "Database server" msgstr "Baza podataka za korisnika" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Poslužitelj" @@ -796,7 +797,7 @@ msgstr "Verzija protokola" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Korisnik" @@ -1053,12 +1054,12 @@ msgstr "Ponovno učitavanje privilegija" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Zatvori" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1068,17 +1069,17 @@ msgstr "Zatvori" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Odabir poslužitelja" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1090,13 +1091,14 @@ msgstr "Statički podatci" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Ostalo" @@ -1111,55 +1113,18 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Odabir poslužitelja" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Veze od zadnjeg osvježavanja" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesi" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Veze" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Upiti od zadnjeg osvježavanja" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Statistike redova" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1167,220 +1132,225 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Pohrana upita" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Pohrana upita" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Pohrana upita" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Korištenje CPU-a" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistemska memorija" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "kB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Prosječno učitavanje" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Najveći broj datoteka zapisnika" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Keširana memorija" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Međuspremnik" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Slobodna memorija" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Zauzeta memorija" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Ukupno" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Slobodne stranice" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Veze" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "kB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablica" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Perzijski" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opće osobine relacija" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Uredi naslov i podatke" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Poravnaj s mrežom" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "bez kompresije" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log je omogućen." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogućen." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log su onemogućeni." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1388,535 +1358,537 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Spremi kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opće osobine relacija" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Naslov izvještaja" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencijalni" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Jedinica" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Lokalno" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Pročitaj zahtjeve" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Nema baza podataka" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Nema baza podataka" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analiziraj" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Vrijeme" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Izrada profila" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Tablica znakova" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "Dodaj %s polja" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL upit" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Opcije izvoza baze podataka" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "Datoteke" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "Broj presloženih redaka." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Lokalno" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Osvježi" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Ažuriraj upit" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentacija" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Detalji..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentacija" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Odustani" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Lokalno" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Greška pri procesiranju zahtjeva" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Brisanje stupca" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Dodavanje primarnog ključa" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "U redu" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Tablica znakova" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tablica mora sadržavati najmanje jedno polje." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Upotrijebi tablice" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Indeksi" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Prikaži mrežu" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Onemogući provjere stranih znakova" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Omogućeno" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Onemogućeno" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Traži" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pretraživanje" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Broj polja" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Vrijednosti za novi stupac" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Unesite svaku vrijednost u drugo polje" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Promijeni" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Vrijeme izvršavanja upita" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1925,220 +1897,225 @@ msgstr "%d nije valjani broj retka." msgid "Save" msgstr "Spremi" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Traži" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Povlačenje pokazivača miša preko točke će pokazati oznaku" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/Izbriši stupce polja" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Odaberite dva različita stupca" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Operacije rezultata upita" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dodaj %s polja" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Dodaj opciju stupcu " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kliknite za sortiranje" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "Nema baza podataka" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Nazivi stupaca" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Ažuriraj redak" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Prikaži sve" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Indeksi" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2148,30 +2125,30 @@ msgstr "" "Najnovija verzija je %s dostupna od %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2179,96 +2156,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Veljača" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Svi" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Rujan" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Studeno" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2276,78 +2253,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Pro" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2355,115 +2332,115 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Sat" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2516,16 +2493,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "po sekundi" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "po minuti" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "po satu" @@ -2551,7 +2528,7 @@ msgstr "Veličina fonta" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Uzlazno" @@ -2560,7 +2537,7 @@ msgstr "Uzlazno" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Silazno" @@ -2681,7 +2658,7 @@ msgstr "Izbacivanje podataka za tablicu" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Izbriši" @@ -2883,7 +2860,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Eliminiraj" @@ -2939,12 +2916,13 @@ msgstr "Označi sve" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" @@ -2952,7 +2930,7 @@ msgstr "Izvoz" msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3042,16 +3020,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3065,21 +3043,21 @@ msgstr "Nema definiranog indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Najvažnije" @@ -3089,13 +3067,13 @@ msgstr "Najvažnije" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Uspoređivanje" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentar" @@ -3139,7 +3117,7 @@ msgstr "Prikaz" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Strukturu" @@ -3212,36 +3190,37 @@ msgstr "Događaji" msgid "Designer" msgstr "Kreator" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binarni zapisnik" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikacija" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Dodatci" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Pogoni" @@ -3298,6 +3277,106 @@ msgstr "Nema tablica" msgid "There are no recent tables" msgstr "Provjeri tablicu" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL upit" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Hvatišta" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Pohrana upita" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Grane" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Odgođena umetanja" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Pohrana ključeva" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Spojevi" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Preslagivanje" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tablice" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinator transakcije" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Datoteke" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Isprazni (zatvori) sve tablice" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Prikaži otvorene tablice" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Prikaži potčinjena računala" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Prikaži stanje potčinjenog" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Prikaži stanje potčinjenog" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Isprazni pohranu upita" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB stanje" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +msgid "Query statistics" +msgstr "Statistike redova" + +#: 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." @@ -3393,7 +3472,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vrijednost" @@ -3797,11 +3876,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL upit" - #: libraries/Util.class.php:710 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:292 @@ -3836,7 +3910,7 @@ msgid "Create PHP Code" msgstr "Izradi PHP kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Osvježi" @@ -3937,13 +4011,6 @@ msgstr "Ispiši" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tablice" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3987,25 +4054,25 @@ msgstr "Provjeri privilegije za bazu podataka \"%s\"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4017,41 +4084,41 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj " "konfiguracijskoj datoteci!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6251,8 +6318,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6947,10 +7014,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB stanje" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Iskoristivost međuspremnika" @@ -7662,18 +7725,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "naziv tablice" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7794,17 +7857,17 @@ msgid "Drop the database (DROP)" msgstr "Nema baza podataka" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Samo strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Strukturu i podatke" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Samo podatke" @@ -8231,8 +8294,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Računalo" @@ -8850,7 +8912,7 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Varijabla" @@ -9429,7 +9491,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dodatno" @@ -10152,7 +10214,7 @@ msgstr "Nema baza podataka" msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10527,7 +10589,7 @@ msgstr "Malo / Veliko" msgid "Toggle relation lines" msgstr "Za odabir relacije pritisnite:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" @@ -10609,41 +10671,41 @@ msgstr "Tablica %1$s je izrađena." msgid "Page creation failed" msgstr "Neuspješno kreiranje stranice" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "stranice" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvezi datoteke" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izradi novi indeks" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Korisničko ime" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "preporučeno" @@ -10765,15 +10827,11 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Datoteke" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -10859,7 +10917,7 @@ msgstr "Modul" msgid "Library" msgstr "Biblioteka" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Perzijski" @@ -10920,11 +10978,6 @@ msgstr "Privilegije su uspješno učitane." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Prikaži stanje potčinjenog" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -11057,224 +11110,54 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status.php:657 -msgid "Handler" -msgstr "Hvatišta" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Pohrana upita" - -#: server_status.php:659 -msgid "Threads" -msgstr "Grane" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Odgođena umetanja" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Pohrana ključeva" - -#: server_status.php:664 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Preslagivanje" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinator transakcije" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Isprazni (zatvori) sve tablice" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Prikaži otvorene tablice" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Prikaži potčinjena računala" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Prikaži stanje potčinjenog" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Isprazni pohranu upita" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Podaci o razini izvršavanja" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Broj polja" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Osvježi" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Datoteke" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Ne mijenjaj lozinku" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Prikaži otvorene tablice" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtriraj po kategoriji" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Prikaži otvorene tablice" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relacije" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Vrsta upita" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Funkcije" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Izjave" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11283,47 +11166,331 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Primljeno" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Poslano" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Naredba" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Funkcije" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sub" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Dodaj %s polja" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Osvježi" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dodaj/Izbriši stupce polja" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Resetiraj na zadano" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Preimenuj bazu podataka u" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Odaberite tablice" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Neispravan naziv tablice" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +msgid "Add this series" +msgstr "Dodaj novog korisnika" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL upit" + +#: server_status_monitor.php:677 +#, fuzzy +msgid "Log statistics" +msgstr "Statistike redova" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Odaberite tablice" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vrsta upita" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "po sekundi" +msgstr[1] "po sekundi" +msgstr[2] "po sekundi" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "u upotrebi" +msgstr[1] "u upotrebi" +msgstr[2] "u upotrebi" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Izjave" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Datoteke" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ne mijenjaj lozinku" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Prikaži otvorene tablice" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtriraj po kategoriji" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Prikaži otvorene tablice" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacije" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11333,17 +11500,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11355,11 +11522,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11367,7 +11534,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11375,7 +11542,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11383,23 +11550,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11409,7 +11576,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11419,7 +11586,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11427,7 +11594,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11437,7 +11604,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11445,7 +11612,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11457,7 +11624,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11469,36 +11636,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11508,7 +11675,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11520,11 +11687,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11532,7 +11699,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11540,11 +11707,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11552,7 +11719,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11566,55 +11733,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11623,35 +11790,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11660,52 +11827,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11713,7 +11880,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11721,7 +11888,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11731,17 +11898,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11752,26 +11919,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11781,17 +11948,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11799,39 +11966,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11844,7 +12011,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11852,19 +12019,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11872,12 +12039,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11886,7 +12053,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11894,17 +12061,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11912,12 +12079,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11925,14 +12092,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11942,23 +12109,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11970,7 +12137,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11980,11 +12147,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11996,220 +12163,16 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sub" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Dodaj %s polja" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Osvježi" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dodaj/Izbriši stupce polja" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Resetiraj na zadano" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Preimenuj bazu podataka u" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Odaberite tablice" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Neispravan naziv tablice" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -msgid "Add this series" -msgstr "Dodaj novog korisnika" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL upit" - -#: server_status.php:1964 -#, fuzzy -msgid "Log statistics" -msgstr "Statistike redova" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Odaberite tablice" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vrsta upita" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "po sekundi" -msgstr[1] "po sekundi" -msgstr[2] "po sekundi" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "u upotrebi" -msgstr[1] "u upotrebi" -msgstr[2] "u upotrebi" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12797,151 +12760,151 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dopušta umetanje i zamjenu podataka." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nema baza podataka" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Deactivate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktiviraj sada" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Izradi relaciju" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" @@ -13084,12 +13047,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL upit" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -13105,131 +13068,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log je omogućen." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Odaberite tablice" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Izradi relaciju" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Perzijski" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Opis" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL tablica znakova" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Pohrana upita" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Poslužitelj ne odgovara" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13237,23 +13212,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Pohrana upita" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Pohrana upita" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tablica" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13650,267 +13625,267 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Prikaži pune upite" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Izradi tablicu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Trenutan broj zapisivanja u čekanju." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Oblikovanje uvezene datoteke" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Oblikovanje uvezene datoteke" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Veličina međuspremnika preslagivanja" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Veličina međuspremnika preslagivanja" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Veličina međuspremnika preslagivanja" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Pohrana ključeva" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Pohrana ključeva" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Pohrana ključeva" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Poslužitelj ne odgovara" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Broj grana koje nisu uspavane." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Broj grana koje nisu uspavane." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13918,49 +13893,49 @@ msgid "" "launch" msgstr "Broj grana koje nisu uspavane." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "najv. uzastopnih veza" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "najv. uzastopnih veza" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Dopušta izradu privremenih tablica." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14075,17 +14050,17 @@ msgid "" "it should not be below 20%%" msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Veličina međuspremnika" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14099,24 +14074,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Veličina međuspremnika" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Veličina međuspremnika" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14131,7 +14106,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14140,29 +14115,58 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "najv. uzastopnih veza" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "MyISAM concurrent inserts" msgid "Enable concurrent_insert by setting it to 1" msgstr "najv. uzastopnih veza" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "MyISAM concurrent inserts" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Odabir poslužitelja" + +#~ msgid "Connections since last refresh" +#~ msgstr "Veze od zadnjeg osvježavanja" + +#~ msgid "Questions since last refresh" +#~ msgstr "Upiti od zadnjeg osvježavanja" + +#~ msgid "Runtime Information" +#~ msgstr "Podaci o razini izvršavanja" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Broj polja" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Osvježi" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Vrsta upita" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/hu.po b/po/hu.po index ab9e6dcbdb..87822b8b3d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-21 15:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hungarian Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Lekérdezési gyorsítótár hatékonysága" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Lekérdezési gyorsítótár használat" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Lekérdezési gyorsítótárat használatban" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Rendszer CPU használat" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Rendszermemória" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Rendszer lapozófájl" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Átlagos terhelés" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Teljes memória" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Gyorsítótárazott memória" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Puffer memória" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Szabad memória" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Használt memória" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Teljes lapozófájl" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Gyorsítótárazott lapozófájl" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Használt lapozófájl" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Szabad lapozófájl" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bájt elküldve" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Kapcsolatok" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Folyamatok" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tábla" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Kérdések" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Beállítások" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Diagram eltávolítása" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Cím és címkék szerkesztése" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Diagram hozzáadása" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Legalább egy változót adjon meg a sorozathoz" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nincs" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Megfigyelés visszakapcsolása" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Megfigyelés megállítása" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "A general_log és a slow_query_log engedélyezve vannak." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "A general_log engedélyezve van." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "A slow_query_log engedélyezve van." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "A slow_query_log és a general_log titlva vannak." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output nincs beállítva a TÁBLÁHOZ." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output be van állítva a TÁBLÁHOZ." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1305,12 +1278,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "A long_query_time %d másodpercre van beállítva." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1319,30 +1292,30 @@ msgstr "" "alapértelmezettre a kiszolgáló újraindításakor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "A log_output beállítása ehhez: %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s engedélyezése" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s letiltása" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "A long_query_time beállítása ehhez: %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1351,417 +1324,419 @@ msgstr "" "rendszergazdaként vagy vegye fel a kapcsolatot az adatbázis " "adminisztrátorával." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Beállítások megváltoztatása" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagramcím" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Osztva %s -el" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Egység" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "a slow naplóból" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "az általános naplóból" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Naplók elemzése" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Elemzés és naplók betöltése. Ez eltarthat egy ideig." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Kérés elvetése" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Ugrás a naplótáblához" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nincs adat" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Elemzés…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "A kimenet magyarázata" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Idő" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Teljes idő:" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Adatgyűjtés" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tábla" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagram" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Diagram szerkesztése" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Adatsorok" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Naplótábla szűrőbeállításai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Szűrő" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Lekérdezések szűrése szó/reguláris kifejezés alapján:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Lekérdezések csoportosítása, változóadat figyelmen kívül hagyása a WHERE " "feltételben" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "A csoportosított sorok összege:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Összesen:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Naplók betöltése" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Oldal újratöltése" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Érintett sorok:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "A beállítófájl feldolgozása nem sikerült. Nem tűnik érvényes JSON kódnak." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Nem importálhatók a beállítások" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Válassza ki azt a fájlt, amelyet importálni szeretne" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Lekérdezés elemzése" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Tanácsadó rendszer" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Lehetséges teljesítmény problémák" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Kiadás" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Javaslat" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Szabály részletek" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Indoklás" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Használt változó / képlet" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Teszt" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Mégse" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Betöltés" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Kérés feldolgozása" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Hiba a kérés feldolgozásában" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Oszlop törlése" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Kattintson az értesítés elutasításához" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Adatbázis(ok) átnevezése" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Adatbázis újratöltése" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Adatbázis másolása" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Karakterkészlet változtatása" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "A táblának legalább egy oszlopot kell tartalmaznia" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Tábla beszúrása" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Indexek elrejtése" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Indexek megjelenítése" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Idegen kulcs ellenőrzése:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Engedélyezve)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Letiltva)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Keresés" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Keresési eredmények elrejtése" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Keresési eredmények megjelenítése" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Böngészés" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Törlés" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A tárolt függvény meghatározásának tqartalmaznia kell VISSZATÉRÉSI utasítást!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "„%s” oszlop értékei" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Az új oszlop értékei" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Minden értéket külön mezőben adjon meg" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d érték hozzáadása" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "SQL-lekérdezési panelek elrejtése" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Lekérdezési dobox megjelenítése" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Módosítás" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "A lekérdezés végrehajtási ideje" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1770,92 +1745,92 @@ msgstr "A(z) %d érvénytelen sorszám." msgid "Save" msgstr "Mentés" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Keresési kritériumok megjelenítése" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Keresés" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Minden pont egy adatsort ábrázol." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Egy pont fölé mutatás megjeleníti annak címkéjét." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Válasszon két oszlopot" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Válasszon két különböző oszlopot" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Lekérdezési eredmények" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Adatmutató mérete" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Másolás" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Oszlopok hozzáadása" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1863,108 +1838,113 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Adjon meg egy opciót az oszlophoz " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Nyomja meg az escape-et a szerkesztés megszakításához" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kattintson a rendezéshez" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ugrás a hivatkozáshoz" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Oszlopnév másolása" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Adatsor(ok) megjelenítése" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generálás" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Több" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Összes megjelenítése" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Indexek elrejtése" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1974,266 +1954,266 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "friss" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Kész" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Ma" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Január" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Február" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Március" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Április" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Május" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Június" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Július" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Augusztus" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Szeptember" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Október" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Péntek" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Hét" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Óra" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Perc" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "másodperc" @@ -2283,16 +2263,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "másodpercenként" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "percenként" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "óránként" @@ -2318,7 +2298,7 @@ msgstr "Betűméret" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Növekvő" @@ -2327,7 +2307,7 @@ msgstr "Növekvő" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Csökkenő" @@ -2441,7 +2421,7 @@ msgstr "Törli a találatokat a %s táblában?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Törlés" @@ -2613,7 +2593,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Leállít" @@ -2670,12 +2650,13 @@ msgstr "Mind kijelölése" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" @@ -2683,7 +2664,7 @@ msgstr "Exportálás" msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2770,16 +2751,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Ettől a ponttól engedélyeznie kell a JavaScriptet" @@ -2791,21 +2772,21 @@ msgstr "Nincs meghatározott index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexek" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Számosság" @@ -2815,13 +2796,13 @@ msgstr "Számosság" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Illesztés" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Megjegyzés" @@ -2866,7 +2847,7 @@ msgstr "Nézet" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Szerkezet" @@ -2939,34 +2920,35 @@ msgstr "Események" msgid "Designer" msgstr "Tervező" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Felhasználók" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Bináris napló" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Többszörözés" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Változók" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Bővítmények" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motorok" @@ -3016,6 +2998,105 @@ msgstr "Legutóbbi táblák" msgid "There are no recent tables" msgstr "Nincsenek utoljára használt táblák" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-lekérdezés" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Kezelő" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Lekérdezési gyorsítótár" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Szálak" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Ideiglenes adatok" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Késleltetett beszúrások" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Kulcs gyorsítótár" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Illesztések" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Rendezés" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Táblák" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Tranzakció koordinátor" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Fájlok" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Összes tábla kiírása (bezárása)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Nyitott táblák megjelenítése" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Kisegítő állomások megjelenítése" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Kisegítő állapot megjelenítése" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Kisegítő állapot megjelenítése" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Lekérdezési gyorsítótár kiírása" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB állapota" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Lekérdezések statisztikája" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Minden állapotváltozó" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Tanácsadó" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3108,7 +3189,7 @@ msgstr "Kezelő" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Érték" @@ -3496,11 +3577,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-lekérdezés" - #: libraries/Util.class.php:710 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:292 @@ -3535,7 +3611,7 @@ msgid "Create PHP Code" msgstr "PHP-kód létrehozása" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Frissítés" @@ -3631,13 +3707,6 @@ msgstr "Nyomtatás" msgid "shared" msgstr "megosztott" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Táblák" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3678,22 +3747,22 @@ msgstr "A(z) "%s" adatbázis jogainak ellenőrzése." msgid "Check Privileges" msgstr "Jogok ellenőrzése" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "A beállítófájl olvasása meghiúsult" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nem lehetett betölteni az alapértelmezett konfigurációt innen: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3701,38 +3770,38 @@ msgstr "" "A [code]$cfg['PmaAbsoluteUri'][/code] utasítás értékét a konfigurációs " "fájlban KELL megadni!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Érvénytelen szerverindex: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6017,8 +6086,8 @@ msgstr "" "Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Felhasználónév" @@ -6668,10 +6737,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB állapota" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Pufferkészlet kihasználtsága" @@ -7362,18 +7427,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "Adatbázisok szűrése név szerint" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7487,17 +7552,17 @@ msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Csak a szerkezet" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Szerkezet és adatok" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Csak az adatok" @@ -7892,8 +7957,7 @@ msgstr "MIME-típusok megjelenítése" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Hoszt" @@ -8516,7 +8580,7 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Változó" @@ -9031,7 +9095,7 @@ msgstr "Tulajdonságok" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9741,7 +9805,7 @@ msgstr "Előtag hozzáadása a táblához" msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Nincs" @@ -10088,7 +10152,7 @@ msgstr "Kicsi/nagy kapcsoló" msgid "Toggle relation lines" msgstr "A kapcsolat kiválasztásához, kattintson :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" @@ -10160,31 +10224,31 @@ msgstr "Az oldal elkészült" msgid "Page creation failed" msgstr "Az oldal létrehozása meghiúsult" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Oldal" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importálás a kiválasztott oldalakról" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportálás a kiválasztott oldalakra" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Oldal létrehozása és exportálás arra" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Új oldal neve: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "ajánlott" @@ -10305,15 +10369,11 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Fájlok" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -10398,7 +10458,7 @@ msgstr "Modul" msgid "Library" msgstr "Könyvtár" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Verzió" @@ -10456,11 +10516,6 @@ msgstr "A jogok újratöltése sikerült." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Kisegítő állapot megjelenítése" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10593,12 +10648,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10606,185 +10661,31 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status.php:657 -msgid "Handler" -msgstr "Kezelő" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Lekérdezési gyorsítótár" - -#: server_status.php:659 -msgid "Threads" -msgstr "Szálak" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Ideiglenes adatok" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Késleltetett beszúrások" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Kulcs gyorsítótár" - -#: server_status.php:664 -msgid "Joins" -msgstr "Illesztések" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Rendezés" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Tranzakció koordinátor" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Összes tábla kiírása (bezárása)" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Nyitott táblák megjelenítése" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Kisegítő állomások megjelenítése" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Kisegítő állapot megjelenítése" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Lekérdezési gyorsítótár kiírása" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Futtatási információk" - -#: server_status.php:830 -msgid "All status variables" -msgstr "Minden állapotváltozó" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Tanácsadó" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Adatpontok száma: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Frissítési időköz: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Szűrők" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Tartalmazza ezt a szót:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Csak a figyelmeztető értékek megjelenítése" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Szűrés kategória szerint..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Formázatlan értékek megjelenítése" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Kapcsolódó hivatkozások:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Elemző futtatása" - -#: server_status.php:966 -msgid "Instructions" -msgstr "Utasítások" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "A kezdőlap testreszabása" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Utasítások" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ez a MySQL szerver %1$s óta fut. Indítás időpontja: %2$s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10792,11 +10693,11 @@ msgstr "" "A szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10804,45 +10705,306 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Fogadott" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Küldött" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "Azonosító" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Parancs" -#: server_status.php:1527 +#: server_status_advisor.php:29 +msgid "Instructions" +msgstr "Utasítások" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Indítás" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "Utasítások/Beállítás" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Diagram hozzáadása" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "Diagramok átrendezése/szerkesztése" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Frissítési időköz" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Diagram oszlopai" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "Diagram elrendezés" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Visszaállítás az alapértékre" + +#: server_status_monitor.php:544 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Információ" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "Jegyezze meg:" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Adatbázis eltávolítása" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "Állapot változó(k)" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Táblák kiválasztása" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "vagy gépelje be a változó nevét:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "Osztó alkalmazása" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "Egység hozzáfűzése az adatértékekhez" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Új szerver hozzáadása" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-lekérdezések" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "Naplóstatisztikák" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Kiválasztott időtartomány:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Lekérdezés elemző" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d másodperc" +msgstr[1] "%d másodperc" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d perc" +msgstr[1] "%d perc" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "A kezdőlap testreszabása" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Utasítások" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Szűrők" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Tartalmazza ezt a szót:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Csak a figyelmeztető értékek megjelenítése" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Szűrés kategória szerint..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Formázatlan értékek megjelenítése" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Kapcsolódó hivatkozások:" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "A MySQL-kiszolgálóhoz való csatlakozás sikertelen kísérleteinek száma." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10852,19 +11014,19 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "A MySQL-kiszolgálóhoz való (sikeres vagy sikertelen) csatlakozás " "kísérleteinek száma." -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10876,11 +11038,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10888,7 +11050,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10896,7 +11058,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10904,23 +11066,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -10930,7 +11092,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -10941,7 +11103,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -10949,7 +11111,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -10959,7 +11121,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10967,7 +11129,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -10979,7 +11141,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -10991,35 +11153,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11029,7 +11191,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11042,11 +11204,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11055,7 +11217,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11063,11 +11225,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11075,7 +11237,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11090,53 +11252,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11144,35 +11306,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsync() írások száma." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11181,51 +11343,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11233,7 +11395,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11241,7 +11403,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11250,17 +11412,17 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Az importált fájl formátuma" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11271,26 +11433,26 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11301,17 +11463,17 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11319,40 +11481,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11365,7 +11527,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11373,19 +11535,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11393,11 +11555,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11406,7 +11568,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11414,15 +11576,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11430,11 +11592,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11442,14 +11604,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11459,23 +11621,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11487,7 +11649,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11497,11 +11659,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11512,207 +11674,16 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nyomkövetés inaktív." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Indítás" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "Utasítások/Beállítás" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Diagram hozzáadása" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "Diagramok átrendezése/szerkesztése" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Frissítési időköz" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Diagram oszlopai" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "Diagram elrendezés" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Visszaállítás az alapértékre" - -#: server_status.php:1856 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Információ" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "Jegyezze meg:" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Adatbázis eltávolítása" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "Állapot változó(k)" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Táblák kiválasztása" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "vagy gépelje be a változó nevét:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "Osztó alkalmazása" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "Egység hozzáfűzése az adatértékekhez" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Új szerver hozzáadása" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-lekérdezések" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "Naplóstatisztikák" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Kiválasztott időtartomány:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Lekérdezés elemző" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d másodperc" -msgstr[1] "%d másodperc" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d perc" -msgstr[1] "%d perc" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "A változó beállítása nem sikerült" @@ -12326,147 +12297,147 @@ msgstr "Idegen kulcs megszorítás" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL utasítások végrehajtva." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Lekérdezési hiba" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Nyomkövetési utasítások" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Nyomkövetési adat sor törlése a jelentésből" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nincs adat" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Adat definiáló utasítás" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Adat manipuláló utasítás" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL kiírás (fájl letöltés)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL kiírás" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Ez az opció ki fogja cserélni a táblát és a tartalmazott adatot." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL végrehajtás" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportálás: %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Verziók megjelenítése" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Inaktiválás" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Kikapcsolás most" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "%s adatai hiányoznak" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Bekapcsolás most" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Verzió létrehozása" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Verzió létrehozása" @@ -12608,11 +12579,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "A long_query_time %d másodpercre van beállítva." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Lekérdezési naplózás megjelenítése" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12630,122 +12601,134 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "A long_query_time %d másodpercre van beállítva." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "A long_query_time %d másodpercre van beállítva." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Táblák kiválasztása" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Jelenlegi verzió: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Verzió" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Frissítenie kellene a MySQL 5.5 stabil verziójára" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Disztribúció" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL architektúra" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Lekérdezési gyorsítótár letiltva" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "A lekérdezési gyorsítótár nincs engedélyezve." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12753,21 +12736,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "A lekérdezés gyorsítótárazási módszere" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query caching method" msgid "Suboptimal caching method." msgstr "A lekérdezés gyorsítótárazási módszere" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s tábla" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13162,268 +13145,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Az SQL-lekérdezések megjelenítése" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Tábla létrehozása" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "A folyamatban lévő írások száma." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Az importált fájl formátuma" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Az importált fájl formátuma" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Új tábla létrehozása a(z) %s adatbázisban" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Rendezőpuffer mérete" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Rendezőpuffer mérete" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Rendezőpuffer mérete" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Kulcs gyorsítótár" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Nyomkövetés inaktív." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Nyomkövetés inaktív." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Nyomkövetés inaktív." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Rendezőpuffer mérete" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are too many threads that are slow to launch." msgid "Threads that are slow to launch" msgstr "Túl sok szál van, amelyek lassítják az indítást." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Túl sok szál van, amelyek lassítják az indítást." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "A long_query_time %d másodpercre van beállítva." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "There are too many threads that are slow to launch." msgid "" @@ -13431,50 +13414,50 @@ msgid "" "launch" msgstr "Túl sok szál van, amelyek lassítják az indítást." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "A long_query_time %d másodpercre van beállítva." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Állandó kapcsolatok" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Állandó kapcsolatok" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Engedélyezi ideiglenes táblák készítését." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13587,17 +13570,17 @@ msgid "" "it should not be below 20%%" msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "InnoDB log size" msgid "Max InnoDB log size" msgstr "InnoDB napló méret" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13611,24 +13594,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Pufferkészlet mérete" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Pufferkészlet mérete" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13643,7 +13626,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13652,29 +13635,59 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "Max. egyidejű kapcsolatok száma" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "Max. egyidejű kapcsolatok száma" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB került elküldésre a legutóbbi frissítés óta" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB került fogadásra a legutóbbi frissítés óta" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Szerverforgalom (KiB-ban)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Kapcsolatok a legutóbbi frissítés óta" + +#~ msgid "Questions since last refresh" +#~ msgstr "Kérdések a legutóbbi frissítés óta" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Kérdések (a kiszolgáló által végrehajtott lekérdezések)" + +#~ msgid "Runtime Information" +#~ msgstr "Futtatási információk" + +#~ msgid "Number of data points: " +#~ msgstr "Adatpontok száma: " + +#~ msgid "Refresh rate: " +#~ msgstr "Frissítési időköz: " + +#~ msgid "Run analyzer" +#~ msgstr "Elemző futtatása" + #~ msgid "Show more actions" #~ msgstr "Több művelet megjelenítése" diff --git a/po/hy.po b/po/hy.po index e0cdc189a8..0cf9e00834 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-06-18 16:41+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: none\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Որոնում" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Որոնում" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "OK" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Ինդեքսի անվանումը" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Նկարագրություն" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s տվյալների բազան ստեղծված է։" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Տվյալների բազայի մեկնաբանությունը՝ " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Աղյուսակի մեկնաբանությունը" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Աղյուսակի մեկնաբանությունը" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Սյուն" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Սյուն" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Տեսակ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Տեսակ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Լռելյան" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Լռելյան" msgid "Links to" msgstr "Կապեր" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Կապեր" msgid "Comments" msgstr "Մեկնաբանություններ" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Մեկնաբանություններ" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ոչ" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Ոչ" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Այո" @@ -316,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Աղյուսակ" @@ -336,7 +336,7 @@ msgstr "Ծավալը" msgid "in use" msgstr "օգտագործվում է" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -344,7 +344,7 @@ msgstr "օգտագործվում է" msgid "Creation" msgstr "Ստեղծում" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -352,7 +352,7 @@ msgstr "Ստեղծում" msgid "Last update" msgstr "Վերջին թարմացումը" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -403,7 +403,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Տվյալների բազա" @@ -411,17 +411,17 @@ msgstr "Տվյալների բազա" msgid "Last version" msgstr "Վերջին տարբերակը" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Ստեղծված է" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Թարմացված է" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Վիճակը" @@ -436,7 +436,7 @@ msgstr "Գործողություն" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Ցուցադրել" @@ -452,11 +452,11 @@ msgstr "" msgid "Drop" msgstr "Հեռացնել" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "միացված է" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "անջատված է" @@ -464,11 +464,11 @@ msgstr "անջատված է" msgid "Versions" msgstr "Տարբերակներ" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Կառուցվածքի պատկերը" @@ -534,45 +534,45 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -580,15 +580,15 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -709,8 +709,9 @@ msgstr "" msgid "Database server" msgstr "" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -729,7 +730,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -945,12 +946,12 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -960,15 +961,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "" @@ -979,13 +980,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1000,48 +1002,14 @@ msgid "." msgstr "" #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1049,196 +1017,201 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1246,449 +1219,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1697,191 +1672,196 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Ցույց տալ բոլորը" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1889,266 +1869,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "" @@ -2198,16 +2178,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2233,7 +2213,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Աճման կարգով" @@ -2242,7 +2222,7 @@ msgstr "Աճման կարգով" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Նվազման կարգով" @@ -2354,7 +2334,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Հեռացնել" @@ -2524,7 +2504,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2579,12 +2559,13 @@ msgstr "Նշել բոլորը" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" @@ -2592,7 +2573,7 @@ msgstr "Արտահանում" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2673,16 +2654,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2694,21 +2675,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2718,13 +2699,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Համեմատումը" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -2767,7 +2748,7 @@ msgstr "Ներկայացում" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2840,34 +2821,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Վերարադրում" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2915,6 +2897,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3006,7 +3086,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3389,11 +3469,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3428,7 +3503,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3524,13 +3599,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3571,59 +3639,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5657,8 +5725,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6267,10 +6335,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6915,16 +6979,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7020,17 +7084,17 @@ msgid "Drop the database (DROP)" msgstr "Հեռացնել տվյալների բազան (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Միայն կառուղվածքը" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Միայն տվյալները" @@ -7417,8 +7481,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7927,7 +7990,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8431,7 +8494,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9094,7 +9157,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9423,7 +9486,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9489,31 +9552,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9629,15 +9692,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9719,7 +9778,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9776,10 +9835,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9905,854 +9960,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10761,7 +10125,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10769,18 +10133,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10788,11 +10152,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10800,92 +10164,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11420,142 +11391,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11689,11 +11660,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11707,118 +11678,128 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: 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:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11826,19 +11807,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12191,268 +12172,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +msgid "Percentage of MyISAM key buffer used" msgstr "" #: libraries/advisory_rules.txt:316 #, php-format -msgid "Index reads from memory: %s%%, this value should be above 95%%" +msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 -msgid "Rate of table open" +#: 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:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12573,20 +12554,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12601,7 +12582,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12610,22 +12591,22 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/id.po b/po/id.po index 629b1351e2..a838891e60 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Indonesian Pengaturan." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efisiensi singgahan kueri" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Pemakaian singgahan kueri" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Singgahan kueri terpakai" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Penggunaan CPU Sistem" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memori sistem" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Swap sistem" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Beban rata-rata" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memori total" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memori singgahan" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memori tersangga" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memori bebas" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memori terpakai" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap Total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap Singgahan" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Swap Terpakai" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Swap Bebas" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bita dikirim" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Koneksi" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Proses Aktif" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabel" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Perintah" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Pengaturan" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Hapus bagan" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Edit judul dan label" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Tambahkan bagan pada grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Tidak ada" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Lanjutkan pemantauan" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Jeda pemantauan" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log dan slow_query_log diaktifkan." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log diaktifkan." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log diaktifkan." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log dan general_log dinonaktifkan." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output tidak disetel menjadi TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output disetel menjadi TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1303,12 +1276,12 @@ msgstr "" "lama dari %d detil. Disarankan untuk menyetel long_query_time 0-2 detik, " "tergantung sistem Anda." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time disetel menjadi %d detik." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1317,30 +1290,30 @@ msgstr "" "sewaktu server dijalankan ulang:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Tetapkan log_output ke %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktifkan %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Nonaktifkan %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Setel long_query_time menjadi %d detik" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1348,55 +1321,55 @@ msgstr "" "Anda tidak dapat mengubah variabel tersebut. Harap masuk sebagai root atau " "hubungi administrator basis data Anda." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Ubah pengaturan" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Judul Bagan" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferensial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dibagi oleh %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unit" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Dari log lambat" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Dari log umum" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "Memuat log" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Menganalisis & memuat log. Mungkin perlu waktu." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Permintaan pembatalan" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1406,7 +1379,7 @@ msgstr "" "Namun, hanya kueri SQL yang digunakan sebagai kriteria pengelompokan. " "Atribut kueri lain, seperti waktu mulai, dapat berbeda." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1415,105 +1388,105 @@ msgstr "" "Sejak pengelompokan query INSERT telah dipilih, INSERT query ke dalam tabel " "yang sama juga sedang dikelompokkan bersama, mengabaikan data dimasukkan." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Data log dimuat. Query dieksekusi dalam rentang waktu ini:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Langsung ke tabel Log" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No data" msgid "No data found" msgstr "Tidak ada data" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Log dianalisis, tetapi tidak ada data ditemukan dalam rentang waktu ini." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Menganalisis…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Jelaskan hasil" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Waktu" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Total waktu:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profil Hasil" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Bagan" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add chart" msgid "Edit chart" msgstr "Tambahkan bagan" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Series:" msgid "Series" msgstr "Seri:" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opsi filter tabel log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Saring query berdasarkan kata/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Pengelompokan queri, abakan variabel data dalan klausa WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Jumlah baris kelompok" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Memuat log" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Penyegaran layar gagal" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1523,264 +1496,266 @@ msgstr "" "kemungkinan besar karena sesi Anda berakhir. Muat ulang halaman dan masukkan " "ulang mandat Anda akan membantu" -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Muat ulang halaman" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Baris yang terpengaruh:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Gagal mengurai berkas config.Ini mungkin kesalahan kode JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gagal membangun Grafik kisi dengan mengimport config. Mengembalikan ke " "Setelan baku…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Tidak dapat mengimpor konfigurasi" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Harap pilih kunci primer atau kunci unik" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analisis Kueri" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistem penasihat" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Isu kinerja yang mungkin" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Isu" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Rekomendasi" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detail aturan" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justifikasi" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variabel / formula terpakai" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Uji" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Batal" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Memproses" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Memproses Permintaan" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Galat sewaktu Memproses Permintaan" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Basis data belum dipilih." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Menghapus Kolom" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Menambahkan Kunci Primer" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Oke" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klik untuk menyingkirkan pemberitahuan" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Ubah nama basis data" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Muat ulang basis data" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Menyalin Basis Data" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Mengganti Set Karakter" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabel harus mengandung sekurangnya satu kolom" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Tambahkan Tabel" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Sembunyikan indeks" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Tampilkan indeks" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Tanpa pemeriksaan kunci asing" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Aktif" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Tidak aktif" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Pencarian" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Tampilkan hasil pencarian" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Menjelajahi" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Menghapus" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Nilai untuk kolom %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Nilai untuk kolom baru" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Masukkan setiap nilai dalam isian terpisah" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Tambahkan nilai %d" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Catatan: Jika berkas mengandung banyak tabel, mereka akan di gabung menjadi " "satu" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Sembunyikan kotak kueri" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Tampilkan kotak kueri" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ubah" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Waktu eksekusi kueri" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1789,92 +1764,92 @@ msgstr "%d bukanlah nomor baris yang berlaku." msgid "Save" msgstr "Simpan" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Pencarian Zum" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Setiap titik mewakili sebaris data." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Melayang di atas titik akan menunjukkan labelnya." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "Klik link Zoom reset untuk kembali ke keadaan semula." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik titik data untuk melihat dan mungkin mengedit baris data." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plot dapat diubah ukurannya dengan menyeretnya di sepanjang sudut kanan " "bawah." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Pilih dua kolom" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Pilih dua kolom yang berbeda" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Operasi hasil pertanyaan" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Salin" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Tambahkan kolom" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Harap pilih kunci primer atau kunci unik" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1882,15 +1857,20 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Tambahkan pilihan untuk kolom " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Tekan escape untuk membatalkan pengeditan" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1898,27 +1878,27 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Seret untuk mengubah urutan" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klik untuk mengurutkan" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klik untuk memberi/menghapus tanda" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1927,7 +1907,7 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1938,68 +1918,68 @@ msgstr "" "Anda juga dapat mengedit sebagian besar
kolom dengan mengeklik langsung " "konten." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Anda juga dapat mengedit sebagian besar
kolom dengan mengeklik langsung " "konten." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Tuju ke tautan" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Nama kolom" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Perbarui baris" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Hasilkan kata sandi" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Hasilkan" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Ubah Sandi" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Lainnya" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Tampilkan semua" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Sembunyikan indeks" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2009,266 +1989,266 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "Mutakhir" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Selesai" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hari ini" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Januari" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Februari" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Maret" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "April" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mei" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agustus" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Des" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Senin" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Jumat" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Mingguan" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Jam" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Menit" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Detik" @@ -2322,16 +2302,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per detik" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per menit" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "dalam sejam" @@ -2358,7 +2338,7 @@ msgstr "Ukuran huruf" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Menaik" @@ -2367,7 +2347,7 @@ msgstr "Menaik" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Menurun" @@ -2481,7 +2461,7 @@ msgstr "Hapus yang cocok untuk %s tabel?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Hapus" @@ -2654,7 +2634,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Tutup" @@ -2711,12 +2691,13 @@ msgstr "Pilih Semua" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" @@ -2724,7 +2705,7 @@ msgstr "Ekspor" msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2807,16 +2788,16 @@ msgstr "Tidak bisa membaca (memindah) file unggah." msgid "Open new phpMyAdmin window" msgstr "Buka jendela phpMyAdmin baru" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini cookies harus diaktifkan." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2830,21 +2811,21 @@ msgstr "Indeks belum ditentukan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitas" @@ -2854,13 +2835,13 @@ msgstr "Kardinalitas" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Penyortiran" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentar" @@ -2905,7 +2886,7 @@ msgstr "Gambarkan" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -2978,34 +2959,35 @@ msgstr "Event" msgid "Designer" msgstr "Desainer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Log biner" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikasi" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Mesin" @@ -3056,6 +3038,104 @@ msgstr "Tabel terakhir" msgid "There are no recent tables" msgstr "Tidak ada tabel terakhir" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Pencarian SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Singgahan kueri" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Thread" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Data temporer" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Penambahan tunda" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Singgahan kunci" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Join" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Pengurutan" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabel" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinator transaksi" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Berkas" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Bersihkan (tutup) semua tabel" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Tampilkan tabel terbuka" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Tampilkan inang slave" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Tampilkan status master" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Tampilka status slave" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Bersihkan singgahan kueri" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Status InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistik kueri" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Semua variabel status" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Pemantauan" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Penasihat" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3155,7 +3235,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Nilai" @@ -3552,11 +3632,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Pencarian SQL" - #: libraries/Util.class.php:710 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:292 @@ -3591,7 +3666,7 @@ msgid "Create PHP Code" msgstr "Buat kode PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Segarkan" @@ -3688,13 +3763,6 @@ msgstr "Cetak" msgid "shared" msgstr "dibagi" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabel" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3735,11 +3803,11 @@ msgstr "Periksa hak akses untuk basis data "%s"." msgid "Check Privileges" msgstr "Periksa Hak Akses" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3747,12 +3815,12 @@ msgstr "" "Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek " "kesalahan di bawah ini." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Tidak dapat memuat konfigurasi default dari: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3764,39 +3832,39 @@ msgstr "" "Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam berkas " "konfigurasi!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "memungkinkan mengeksploitasi" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "tombol angka terdeteksi" @@ -5966,8 +6034,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Nama Pengguna" @@ -6599,10 +6667,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Status InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Penggunaan Penampungan Penyangga" @@ -7271,20 +7335,20 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Filter tabel menurut nama" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Bersihkan seri" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7398,17 +7462,17 @@ msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Struktur saja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Data saja" @@ -7804,8 +7868,7 @@ msgstr "Tampilkan jenis MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Inang" @@ -8369,7 +8432,7 @@ msgid "Slave status" msgstr "Status slave" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabel" @@ -8876,7 +8939,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9583,7 +9646,7 @@ msgstr "Tambahkan prefiks untuk tabel" msgid "Check tables having overhead" msgstr "Pilih tabel berbeban tambahan" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Tidak ada" @@ -9934,7 +9997,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Pembuatan halaman gagal" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10000,31 +10063,31 @@ msgstr "Halaman telah dibuat" msgid "Page creation failed" msgstr "Pembuatan halaman gagal" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Halaman" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Impor dari halaman terpilih" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Ekspor ke halaman terpilih" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Buat halaman dan ekspor ke dalamnya" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nama halaman baru: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Ekspor/Impor dengan skala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "direkomendasikan" @@ -10143,15 +10206,11 @@ msgstr "Berkas tidak ditemukan" msgid "Select binary log to view" msgstr "Pilih log biner untuk ditampilkan" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Berkas" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -10235,7 +10294,7 @@ msgstr "Modul" msgid "Library" msgstr "Pustaka" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versi" @@ -10294,10 +10353,6 @@ msgstr "Server master berhasil diubah menjadi %s" msgid "This server is configured as master in a replication process." msgstr "Server ini dikonfigurasikan sebagai master dalam proses replikasi." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Tampilkan status master" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Tampilkan slave yang tersambung" @@ -10430,12 +10485,12 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai slave dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10443,175 +10498,18 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Singgahan kueri" - -#: server_status.php:659 -msgid "Threads" -msgstr "Thread" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Data temporer" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Penambahan tunda" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Singgahan kunci" - -#: server_status.php:664 -msgid "Joins" -msgstr "Join" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Pengurutan" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinator transaksi" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Bersihkan (tutup) semua tabel" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Tampilkan tabel terbuka" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Tampilkan inang slave" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Tampilka status slave" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Bersihkan singgahan kueri" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informasi Waktu Eksekusi" - -#: server_status.php:830 -msgid "All status variables" -msgstr "Semua variabel status" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Pemantauan" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Penasihat" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Jumlah baris:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Laju penyegaran: " - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -#| msgid "Filter" -msgid "Filters" -msgstr "Filter" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Mengandung kata:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Tampilkan hanya nilai peringatan" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filter menurut kategori..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Tampilkan nilai tanpa format" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Tautan terkait:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Jalankan penganalisis" - -#: server_status.php:966 -msgid "Instructions" -msgstr "Instruksi" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Perintah sejak awal: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Keterangan" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "Lalu lintas jaringan sejak awal: %sw" -#: server_status.php:1143 +#: server_status.php:83 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "Server MySQL ini telah berjalan selama %1$s. Server ini dijalankan pada %2$s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10619,63 +10517,312 @@ msgstr "" "Server MySQL ini berfungsi sebagai master dan slave dalam " "proses replication." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" "Server MySQL ini berfungsi sebagai master dalam proses " "replication." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" "Server MySQL ini berfungsi sebagai slave dalam proses replication." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Status replikasi" -#: server_status.php:1185 +#: server_status.php:139 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:1191 +#: server_status.php:149 msgid "Received" msgstr "Penerimaan" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Koneksi konkuren maks." -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Pengguguran" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Perintah" -#: server_status.php:1527 +#: server_status_advisor.php:29 +msgid "Instructions" +msgstr "Instruksi" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +msgid "Start Monitor" +msgstr "Jalankan Pemantauan" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "Petunjuk/Penyiapan" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "Selesai mengatur ulang/mengedit bagan" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Tambahkan bagan" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "Atur ulang/edit bagan" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Laju penyegaran" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Kolom bagan" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "Pengaturan bagan" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Kembalikan nilai bawaan" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "Instruksi Pemantauan" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "Harap catat:" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +msgid "Preset chart" +msgstr "Bagan bawaan" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "Variabel status" + +#: server_status_monitor.php:617 +msgid "Select series:" +msgstr "Pilih seri:" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "Biasa dipantau" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "atau masukkan nama variabel:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "Tampilkan sebagai nilai diferensial" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "Terapkan pemisah" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "Sertakan satuan kepada nilai data" + +#: server_status_monitor.php:659 +msgid "Add this series" +msgstr "Tambahkan seri ini" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "Bersihkan seri" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "Seri pada Bagan:" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "Statistik log" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Rentang waktu pilihan:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Penganalisis kueri" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d detik" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d menit" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Perintah sejak awal: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Keterangan" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +#| msgid "Filter" +msgid "Filters" +msgstr "Filter" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Mengandung kata:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Tampilkan hanya nilai peringatan" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filter menurut kategori..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Tampilkan nilai tanpa format" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Tautan terkait:" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10683,11 +10830,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10697,16 +10844,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)." -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10718,11 +10865,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10730,7 +10877,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10738,7 +10885,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10746,30 +10893,30 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: server_status.php:1541 +#: server_status_variables.php:381 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 "" -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -10779,7 +10926,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -10788,7 +10935,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -10798,7 +10945,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10806,7 +10953,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -10818,7 +10965,7 @@ msgstr "" "Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh " "tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -10830,42 +10977,42 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: server_status.php:1555 +#: server_status_variables.php:443 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 "" -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -10873,33 +11020,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1558 +#: server_status_variables.php:458 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 "" -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -10908,244 +11055,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1574 +#: server_status_variables.php:516 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 "" -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "" -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "" -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "" -#: server_status.php:1582 +#: server_status_variables.php:541 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 "" -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: server_status.php:1594 +#: server_status_variables.php:579 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 "" -#: server_status.php:1595 +#: server_status_variables.php:584 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 "" -#: server_status.php:1596 +#: server_status_variables.php:588 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 "" -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Persentase limit berkas terbuka yang dipakai" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1599 +#: server_status_variables.php:599 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 "" -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 "" -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "" -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "" -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11153,99 +11300,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1620 +#: server_status_variables.php:679 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 "" -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1622 +#: server_status_variables.php:686 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 "" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1630 +#: server_status_variables.php:717 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 "" -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11253,18 +11400,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1636 +#: server_status_variables.php:740 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 "" -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11272,194 +11419,16 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "Jalankan Pemantauan" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "Petunjuk/Penyiapan" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "Selesai mengatur ulang/mengedit bagan" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Tambahkan bagan" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "Atur ulang/edit bagan" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Laju penyegaran" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Kolom bagan" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "Pengaturan bagan" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Kembalikan nilai bawaan" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "Instruksi Pemantauan" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "Harap catat:" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -msgid "Preset chart" -msgstr "Bagan bawaan" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "Variabel status" - -#: server_status.php:1908 -msgid "Select series:" -msgstr "Pilih seri:" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "Biasa dipantau" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "atau masukkan nama variabel:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "Tampilkan sebagai nilai diferensial" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "Terapkan pemisah" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "Sertakan satuan kepada nilai data" - -#: server_status.php:1944 -msgid "Add this series" -msgstr "Tambahkan seri ini" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "Bersihkan seri" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "Seri pada Bagan:" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "Statistik log" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Rentang waktu pilihan:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Penganalisis kueri" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d detik" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d menit" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "Pengaturan variabel gagal" @@ -12018,29 +11987,29 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Perintah SQL dieksekusi." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12048,120 +12017,120 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan basis data " "sementara. Harap pastikan Anda mempunyai hak untuk melakukannya." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi snapshot %s (kode SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Pelacakan definisi data berhasil dihapus" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Galat kueri" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Pelacakan manipulasi data berhasil dihapus" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Hapus baris pelacakan data dari laporan" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Tidak ada data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Tanggal" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Dump SQL (unduhan berkas)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Pilihan ini akan mengganti table dan data isi table" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Eksekusi SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Tunjukkan Versi" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktifkan sekarang" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Buat versi %s dari %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Buat versi" @@ -12303,11 +12272,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time disetel menjadi %d detik." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Log kueri lambat" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12325,118 +12294,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time disetel menjadi %d detik." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time disetel menjadi %d detik." + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Seri Rilis" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versi saat ini: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versi Minor" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Anda harus memperbarui ke versi stabil MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribusi" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arsitektur MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Singgahan kueri dinonaktifkan" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Singgahan kueri tidak diaktifkan." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12444,21 +12425,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Metode penyinggahan kueri" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query caching method" msgid "Suboptimal caching method." msgstr "Metode penyinggahan kueri" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, fuzzy, php-format #| msgid "" #| "Rate of temporary tables being written to disk: %s, this value should be " @@ -12858,11 +12839,11 @@ msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Tingkat diska temporer" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12873,7 +12854,7 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -12882,98 +12863,98 @@ msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Ukuran penyangga kunci MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "MyISAM key buffer size" msgid "key_buffer_size is 0" msgstr "Ukuran penyangga kunci MyISAM" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Penyangga kunci MyISAM (singgahan indeks) %% yang dipakai rendah." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Persentase penyangga kunci MyISAM yang dipakai" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Percentage of slow queries" msgid "Percentage of index reads from memory" msgstr "Persentase kueri lambat" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Tingkat tabel yang terbuka" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Jumlah tulis tunda saat ini." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "" #| "Aborted connections rate is at %s, this value should be less than 1 per " @@ -12983,39 +12964,39 @@ msgstr "" "Tingkat koneksi yang digugurkan adalah pada %s, hasil ini seharusnya kurang " "dari 1 per jam" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Persentase limit berkas terbuka yang dipakai" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Tingkat berkas yang terbuka" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Rate of open files" msgid "The rate of opening files is high." msgstr "Tingkat berkas yang terbuka" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "" #| "Aborted connections rate is at %s, this value should be less than 1 per " @@ -13025,30 +13006,30 @@ msgstr "" "Tingkat koneksi yang digugurkan adalah pada %s, hasil ini seharusnya kurang " "dari 1 per jam" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Kunci tabel langsung %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 +#: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, fuzzy, php-format #| msgid "" #| "Aborted connections rate is at %s, this value should be less than 1 per " @@ -13058,79 +13039,79 @@ msgstr "" "Tingkat koneksi yang digugurkan adalah pada %s, hasil ini seharusnya kurang " "dari 1 per jam" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Singgahan thread" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "The thread cache is set to 0" msgstr "Tingkat penggunaan singgahan thread %%" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Tingkat penggunaan singgahan thread %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Singgahan thread tidak efisien." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are too many joins without indexes." msgid "Threads that are slow to launch" msgstr "Terlalu banyak join tanpa indeks." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are too many joins without indexes." msgid "There are too many threads that are slow to launch." msgstr "Terlalu banyak join tanpa indeks." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time disetel menjadi %d detik." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "There are too many joins without indexes." msgid "" @@ -13138,44 +13119,44 @@ msgid "" "launch" msgstr "Terlalu banyak join tanpa indeks." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time disetel menjadi %d detik." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Persentase koneksi terpakai" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Persentasi koneksi yang digugurkan" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Terlalu banyak koneksi yang digugurkan" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13303,15 +13284,15 @@ msgstr "" "Ukuran log InnoDB anda adalah %s%% terkait dengan ukuran pool InnoDB, ini " "harus diatas 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Besar log InnoDB maksimum" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13325,20 +13306,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Ukuran absolut log InnoDB anda adalah %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Besar penampungan penyangga InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Ukuran buffer InnoDB anda lumayan kecil." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13353,7 +13334,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13362,29 +13343,61 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "Koneksi konkuren maks." -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "Koneksi konkuren maks." +#~ msgid "KiB sent since last refresh" +#~ msgstr "KB terkirim sejak dibuka terakhir" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KB diterima sejak dibuka terakhir" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Lalu lintas server (dalam KB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Koneksi sejak dibuka terakhir" + +#~ msgid "Questions since last refresh" +#~ msgstr "Perintah sejak penyegaran terakhir" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Pertanyaan (statement yang dieksekusi server)" + +#~ msgid "Runtime Information" +#~ msgstr "Informasi Waktu Eksekusi" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Jumlah baris:" + +#~ msgid "Refresh rate: " +#~ msgstr "Laju penyegaran: " + +#~ msgid "Run analyzer" +#~ msgstr "Jalankan penganalisis" + #~ msgid "Show more actions" #~ msgstr "Tampilkan tindakan lain" diff --git a/po/it.po b/po/it.po index e6d45647b2..1c53ae71c4 100644 --- a/po/it.po +++ b/po/it.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:58+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Italian " -"\n" -"Language: it\n" +"Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Cerca" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Esegui" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Chiave" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descrizione" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Commento del database: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Commenti alla tabella" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Campo" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Campo" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Predefinito" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Predefinito" msgid "Links to" msgstr "Collegamenti a" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Commenti" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Sì" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabella" @@ -339,7 +339,7 @@ msgstr "Dimensione" msgid "in use" msgstr "in uso" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "in uso" msgid "Creation" msgstr "Creazione" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Creazione" msgid "Last update" msgstr "Ultimo cambiamento" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -407,7 +407,7 @@ msgstr "Tabelle monitorate" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Database" @@ -415,17 +415,17 @@ msgstr "Database" msgid "Last version" msgstr "Ultima versione" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Creato" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stato" @@ -440,7 +440,7 @@ msgstr "Azione" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostra" @@ -456,11 +456,11 @@ msgstr "Cancella dati di tracciamento per questa tabella" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "attivo" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "non attivo" @@ -468,11 +468,11 @@ msgstr "non attivo" msgid "Versions" msgstr "Versioni" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Rapporto tracking" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Snapshot della struttura" @@ -541,46 +541,46 @@ msgstr "Usa OpenStreetMaps come livello base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punto %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Aggiungi un punto" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Cerchio Esterno" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Cerchio Interno" @@ -588,15 +588,15 @@ msgstr "Cerchio Interno" msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Aggiungi un poligono" @@ -741,8 +741,9 @@ msgstr "Ulteriori impostazioni" msgid "Database server" msgstr "Server del Database" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -761,7 +762,7 @@ msgstr "Versione protocollo" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Utente" @@ -1009,12 +1010,12 @@ msgstr "Ricaricamento privilegi" msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Chiudi" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1024,15 +1025,15 @@ msgstr "Chiudi" msgid "Edit" msgstr "Modifica" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Grafico del traffico in tempo reale" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Grafico delle connessioni e processi in tempo reale" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Grafico delle query in tempo reale" @@ -1043,13 +1044,14 @@ msgstr "Dati statici" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Altre" @@ -1064,48 +1066,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB inviati dall'ultimo aggiornamento" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB ricevuti dall'ultimo aggiornamento" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Traffico del server (in KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Numero di connessioni dall'ultimo aggiornamento" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processi" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Connessioni / Processi" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Numero di 'questions' dall'ultimo aggiornamento" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Questions (instruzioni eseguiti dal server)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistiche query" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configurazione del monitor locale incompatibile" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1118,196 +1086,201 @@ msgstr "" "funzionino. Sei pregato di ripristinare queste impostazioni ai valori " "iniziali nel menù Settings." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efficienza della cache delle query" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Utilizzo della cache delle query" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Cache delle query utilizzata" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Utilizzo della CPU" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memoria" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Carico medio" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memoria totale" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memoria cached" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memoria buffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memoria libera" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memoria utilizzata" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap totale" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap in cache" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Swap utilizzata" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Swap libera" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Byte inviati" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Connessioni" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabella/e" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Domande" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Impostazioni" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Rimuovi il diagramma" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Modifica titolo ed etichette" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Aggiungi diagramma alla griglia" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Aggiungi almeno una variabile alla serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nessuno" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Avvia il monitoraggio" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Arresta il monitoraggio" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log sono abilitati." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log è abilitato." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log è abilitato." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log sono disabilitati." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output non è impostato su TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output è impostato su TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1318,12 +1291,12 @@ msgstr "" "più di %d secondi. É consigliato di impostare long_query_time a 0-2 seconds, " "a secondi del tipo di sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time é impostato a %d secondi." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1332,30 +1305,30 @@ msgstr "" "valori predefiniti durante il riavvio del server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Imposta log_output a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Abilita %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Disabilita %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Imposta long_query_time a %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1363,55 +1336,55 @@ msgstr "" "Non puoi cambiare i valori di queste variabili. Prega effettua il login come " "root o contatta l'amministratore del database." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Modifica impostazioni" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Titolo del diagramma" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Differenziali" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Diviso per %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unità" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Dallo slow log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Dal log generale" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analisi dei log in corso" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" "L'analisi e il caricamento dei log in corso. Questa operazione potrebbe " "richiedere del tempo." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Annulla la richiesta" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1421,7 +1394,7 @@ msgstr "" "raggruppamento è fatto in base al testo che costituisce la query SQL, quindi " "altri attributi, come lo start time, potrebbero essere diversi." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1431,100 +1404,100 @@ msgstr "" "queste query effettuate sulla stessa tabella verranno raggruppate, ignorando " "i dati inseriti." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Dati di log caricati. Query eseguite in questo intervallo di tempo:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Vai alla tabella di Log" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nessun dato trovato" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Il log é stato analizzato, ma nessun dato è stato trovato per questo " "intervallo di tempo." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analisi in corso…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Spiega l'output" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tempo" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Tempo totale:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Risultati del profiling" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabella" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafico" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Modifica grafico" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serie" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opzioni di filtro per il log delle tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtra" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtra query per parola/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Raggruppa query ignorando dati variabili nelle condizioni del WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Somma delle righe raggruppate:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Totale:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Caricamento dei log in corso" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "L'aggiornamento del monitor è fallito" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1534,262 +1507,264 @@ msgstr "" "invalida. Potrebbe essere accaduto a causa del termine della validità della " "tua sessione. Prova a ricaricare la pagina reinserendo i tuoi dati di login." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Ricarica la pagina" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Righe coinvolte:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "L'analisi del file di configurazione é fallita. Non sembra essere codice " "JSON valido." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Impossibile creare la tabella dei grafici con la configurazione importata. " "Ripristino alle impostazioni predefinite in corso…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Non é stato possibile caricare la configurazione" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Seleziona il file da importare" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analizza la Query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Advisor" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Possibili problemi di prestazioni" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problema" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Avviso" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Dettagli della regola" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Giustificazione" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variabile / formula utilizzata" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Prova" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Annulla" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Caricamento" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Elaborazione Richiesta" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Errore nel processare la richiesta" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nessun database selezionato." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Eliminazione Campo" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Creazione chiave primaria" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Clicca per chiudere questa notifica" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Rinominazione dei Database" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ricarica Database" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Sto copiando il Database" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Sto cambiando il charset" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "La tabella deve avere come minimo un campo" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Inserisci tabella" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Nascondi gli indici" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostra gli indici" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Controllo delle chiavi straniere:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Abilitato)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Disabilitato)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Ricerca in corso" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Nascondi i risultati della ricerca" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostra i risultati della ricerca" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Navigazione" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definizione delle funzioni memorizzate deve contenere un istruzione " "RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valori per il campo %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valori per un nuovo campo" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Inserisci ogni valore in un campo separato" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Aggiungi %d valore/i" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " "unica tabella" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Modifica" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Tempo di esecuzione della query" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1798,94 +1773,94 @@ msgstr "%d non è un numero valido di righe." msgid "Save" msgstr "Salva" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Ricerca Zoom" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Ogni punto rappresenta una riga dei dati." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Passando il mouse su un punto mostrerà la sua etichetta." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "Fai clic su \"Ripristina zoom\" per tornare allo stato originale." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clicca su un punto nel piano per visualizzare ed eventualmente modificare la " "riga di dati." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Il piano può essere ridimensionato trascinandolo dall'angolo in basso a " "destra." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Seleziona due campi" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Seleziona due campi diversi" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Risultati della query" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copia" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Aggiungi campi" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Scegli il campo da mostrare" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1893,15 +1868,20 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Aggiungi un'opzione al campo " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Premi Esc per annullare la modifica" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1909,28 +1889,28 @@ msgstr "" "Hai modificato dei dati e non hai salvato. Sei sicuro di voler navigare via " "da questa pagina senza salvare i dati?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Trascina per riordinare" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Clicca per ordinare" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Clicca per selezionare/deselezionare" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Clicca sulla freccia
per cambiare lo stato di visualizzazzione dei campi" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1939,7 +1919,7 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1950,56 +1930,56 @@ msgstr "" "È possibile modificare la maggior parte dei campi
cliccando " "direttamente sul loro contenuto." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "È possibile modificare la maggior parte dei campi
cliccando " "direttamente sul loro contenuto." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Vai al link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copia il nome del campo" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Aggiorna riga/righe" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Genera" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Più" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Mostra pannello" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Nascondi pannello" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." @@ -2007,7 +1987,7 @@ msgstr "" "La pagina richiesta non é stata trovata nella cronologia, potrebbe essere " "scaduta." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2017,266 +1997,266 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "aggiornata" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Fatto" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Oggi" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Gennaio" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Febbraio" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Marzo" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Aprile" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maggio" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Giugno" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Luglio" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agosto" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Setttembre" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Ottobre" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembre" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dic" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sett" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Ora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuto" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Secondo" @@ -2327,16 +2307,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "al secondo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "al minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "all'ora" @@ -2364,7 +2344,7 @@ msgstr "Dimensione font" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Crescente" @@ -2373,7 +2353,7 @@ msgstr "Crescente" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Decrescente" @@ -2487,7 +2467,7 @@ msgstr "Eliminare le corrispondenze relative alla tabella %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Elimina" @@ -2657,7 +2637,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Rimuovi" @@ -2714,12 +2694,13 @@ msgstr "Seleziona tutti" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" @@ -2727,7 +2708,7 @@ msgstr "Esporta" msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2810,16 +2791,16 @@ msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato." msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Da questo punto in poi, JavaScript deve essere abilitato" @@ -2831,21 +2812,21 @@ msgstr "Nessun indice definito!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indici" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalità" @@ -2855,13 +2836,13 @@ msgstr "Cardinalità" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Codifica caratteri" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Commenti" @@ -2906,7 +2887,7 @@ msgstr "Vista" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struttura" @@ -2979,34 +2960,35 @@ msgstr "Eventi" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Utenti" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Log binario" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicazione" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motori" @@ -3054,6 +3036,108 @@ msgstr "Tabelle recenti" msgid "There are no recent tables" msgstr "Non ci sono tabelle recenti" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Query SQL" + +#: libraries/ServerStatusData.class.php:184 +#, fuzzy +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Cache delle query" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Processi" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dati temporanei" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Inserimento ritardato" + +#: libraries/ServerStatusData.class.php:190 +#, fuzzy +msgid "Key cache" +msgstr "Key cache" + +#: libraries/ServerStatusData.class.php:191 +#, fuzzy +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Ordinando" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabelle" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordinatore delle transazioni" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "File" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Rinfresca (chiudi) tutte le tabelle" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Mostra le tabelle aperte" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Mostra gli hosts slave" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Mostra lo stato del master" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Mostra lo stato degli slave" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Rinfresca la cache delle query" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stato InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistiche query" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Tutte le variabili di stato" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitoraggio" + +#: libraries/ServerStatusData.class.php:357 +#, fuzzy +msgid "Advisor" +msgstr "Advisor" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3153,7 +3237,7 @@ msgstr "Operatore" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valore" @@ -3546,11 +3630,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Query SQL" - #: libraries/Util.class.php:710 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:292 @@ -3585,7 +3664,7 @@ msgid "Create PHP Code" msgstr "Crea il codice PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Aggiorna" @@ -3681,13 +3760,6 @@ msgstr "Stampa" msgid "shared" msgstr "condiviso" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabelle" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3728,11 +3800,11 @@ msgstr "Controlla i privilegi per il database "%s"." msgid "Check Privileges" msgstr "Controlla i privilegi" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Lettura del file di configurazione fallita" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3740,12 +3812,12 @@ msgstr "" "Questo di solito significa che vi è un errore di sintassi in esso, verifica " "eventuali errori riportati in basso." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3753,39 +3825,39 @@ msgstr "" "La direttiva [code]$cfg['PmaAbsoluteUri'][/code] DEVE essere impostata nel " "file di configurazione!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione impostato nella configurazione non valido:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Tentativo di sovrascrivere GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "possibile exploit" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "chiave numerica rilevata" @@ -6086,8 +6158,8 @@ msgstr "" "Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Nome utente" @@ -6757,10 +6829,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stato InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Utilizzo del Buffer Pool" @@ -7460,18 +7528,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtra i database in base al nome" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Cancella la serie" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtra elementi in base al nome" @@ -7569,17 +7637,17 @@ msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Solo struttura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struttura e dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Solo dati" @@ -7977,8 +8045,7 @@ msgstr "Mostra tipi MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8028,7 +8095,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:99 msgid "Additional custom header comment (\\n splits lines):" -msgstr "Aggiunge un commento personalizzato al header (\\n per tornare a capo):" +msgstr "" +"Aggiunge un commento personalizzato al header (\\n per tornare a capo):" #: libraries/plugins/export/ExportSql.class.php:106 msgid "" @@ -8594,7 +8662,7 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabile" @@ -9121,7 +9189,7 @@ msgstr "Attributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 #, fuzzy msgid "Extra" msgstr "Extra" @@ -9825,7 +9893,7 @@ msgstr "Aggiungi prefisso alla tabella" msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Nessuno" @@ -10176,7 +10244,7 @@ msgstr "Contrai/Espandi" msgid "Toggle relation lines" msgstr "Attiva le linee della relazione" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" @@ -10242,31 +10310,31 @@ msgstr "La pagina è stata creata" msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importa dalla pagina selezionata" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Esporta alla pagina selezionata" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Crea una nuova pagina ed esportala" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nome per la nuova pagina: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "raccomandato" @@ -10387,15 +10455,11 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "File" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -10479,7 +10543,7 @@ msgstr "Modulo" msgid "Library" msgstr "Libreria" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versione" @@ -10539,10 +10603,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Mostra lo stato del master" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Mostra i slave connessi" @@ -10684,12 +10744,12 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10697,125 +10757,90 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status.php:657 -#, fuzzy -msgid "Handler" -msgstr "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Traffico rete dall'avvio: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Cache delle query" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Questo server MySQL sta girando da %1$s. É stato avviato il %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Processi" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Questo server MySQL funziona come un master e slave nel " +"processo di replicazione." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dati temporanei" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Questo server MySQL funziona come un master nel processo di " +"replicazione." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Inserimento ritardato" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Questo server MySQL funziona come un slave nel processo di " +"replicazione." -#: server_status.php:663 -#, fuzzy -msgid "Key cache" -msgstr "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Per ulteriori informazioni a riguardo lo stato di replicazione su questo " +"server, vedi la seztione sulla replicazione." -#: server_status.php:664 -#, fuzzy -msgid "Joins" -msgstr "Joins" +#: server_status.php:122 +msgid "Replication status" +msgstr "Stato di replicazione" -#: server_status.php:666 -msgid "Sorting" -msgstr "Ordinando" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Su di un server sovraccarico, il contatore dei byte potrebbe aumentare a " +"dismisura e per questa ragione le statistiche riportate dal server MySQL " +"potrebbero non essere corrette." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordinatore delle transazioni" +#: server_status.php:149 +msgid "Received" +msgstr "Ricevuti" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Rinfresca (chiudi) tutte le tabelle" +#: server_status.php:168 +msgid "Sent" +msgstr "Spediti" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Mostra le tabelle aperte" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "max. connessioni contemporanee" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Mostra gli hosts slave" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Tentativi falliti" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Mostra lo stato degli slave" +#: server_status.php:253 +msgid "Aborted" +msgstr "Fallito" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Rinfresca la cache delle query" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informazioni di Runtime" +#: server_status.php:329 +msgid "Command" +msgstr "Comando" -#: server_status.php:830 -msgid "All status variables" -msgstr "Tutte le variabili di stato" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitoraggio" - -#: server_status.php:834 -#, fuzzy -msgid "Advisor" -msgstr "Advisor" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Numero di righe:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Ritmo dell'aggiornamento: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtri" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Contenente la parola:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Mostra solo i valori di allarme" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtra per categoria..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Mostra i valore non formattati" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Collegamenti associati:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Lancia l'analyzer" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Introduzioni" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10823,7 +10848,7 @@ msgstr "" "Il sistema Advisor può fornire raccomandazioni sulle variabili del server " "analizzando le variabili di stato del server." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10833,7 +10858,7 @@ msgstr "" "semplici calcoli e regole pratiche che non necessariamente si possono " "applicare al vostro sistema." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10844,7 +10869,7 @@ msgstr "" "cambiamento. Una regolazione sbagliata può avere effetti negativi sulle " "prestazioni." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10855,100 +10880,252 @@ msgstr "" "ripristinare il cambiamento se non si riscontra un miglioramento chiaramente " "misurabile." -#: server_status.php:1003 +#: server_status_monitor.php:472 +msgid "Start Monitor" +msgstr "Avvia monitoraggio" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "Istruzioni/Configurazione" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "Ho finito di modificare/muovere i grafici" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Aggiungi grafico" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "Muovi/modifica i grafici" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Ritmo di aggiornamenti" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Numero di grafici per rigo" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "Disposizione dei grafici" + +#: server_status_monitor.php:524 +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 "" +"La configurazione dei grafici è memorizzata nella memoria locale dei " +"browser. Potreste voler esportarla se avete una configurazione complicata." + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Ripristina i valori predefiniti" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "Istruzioni per monitoraggio" + +#: server_status_monitor.php:546 +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 "" +"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " +"configurazione del server e per il tracciamento di query intensive. Per " +"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " +"slow_query_log oppure general_log. Notate comunque che general_log produce " +"molti dati e aumenta il carico del server fino al 15%" + +#: server_status_monitor.php:558 +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 "" +"Purtroppo il vostro server di Database non supporta il log su tabella che è " +"un requisito per analizzare i log del database con phpMyAdmin. Il log su " +"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " +"potete ancora utilizzare le funzionalità di generazione dei grafici del " +"server." + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "Utilizzo del monitor:" + +#: server_status_monitor.php:576 +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 "" +"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " +"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " +"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " +"dentellata su ogni grafico." + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" +"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " +"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " +"grafico. Una volta data conferma, verrà caricata una tabella di query " +"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " +"per l'analisi successiva." + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "Nota:" + +#: server_status_monitor.php:595 +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 "" +"Abilitare il general_log può incrementare il carico del server del 5-15%. " +"Tenete presente che la generazione delle statistiche a partire dai log è un " +"compito intensivo per cui si consiglia di selezionare solo un intervallo " +"temporale piccolo e disabilitare il general_log e svuotare la sua tabella." + +#: server_status_monitor.php:610 +msgid "Preset chart" +msgstr "Valori predefiniti del grafico" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "Variabili di stato" + +#: server_status_monitor.php:617 +msgid "Select series:" +msgstr "Seleziona serie:" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "Monitorate di solito" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "or scrivi il nome di una variabile:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "Visualizzare come valore differenziale" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "Applica un divisore" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "Aggiungi un unitá ai valori dei dati" + +#: server_status_monitor.php:659 +msgid "Add this series" +msgstr "Aggiungi questa serie" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "Cancella la serie" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "Serie del grafico:" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "Registra statistiche" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Intervallo di tempo selezionato:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " +"raggruppamento" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Scegli il log dal quale generare le statistiche." + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "I risultati verranno raggruppati secondo il testo di query." + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Analyzer della query" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d secondo" +msgstr[1] "%d secondi" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minuti" + +#: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" msgstr "Questions eseguiti dall'avvio: %s" -#: server_status.php:1044 +#: server_status_queries.php:103 msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: server_status.php:1047 +#: server_status_queries.php:106 msgid "#" msgstr "#" -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Traffico rete dall'avvio: %s" +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtri" -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Questo server MySQL sta girando da %1$s. É stato avviato il %2$s." +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Contenente la parola:" -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Questo server MySQL funziona come un master e slave nel " -"processo di replicazione." +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Mostra solo i valori di allarme" -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Questo server MySQL funziona come un master nel processo di " -"replicazione." +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtra per categoria..." -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Questo server MySQL funziona come un slave nel processo di " -"replicazione." +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Mostra i valore non formattati" -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Per ulteriori informazioni a riguardo lo stato di replicazione su questo " -"server, vedi la seztione sulla replicazione." +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Collegamenti associati:" -#: server_status.php:1171 -msgid "Replication status" -msgstr "Stato di replicazione" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Su di un server sovraccarico, il contatore dei byte potrebbe aumentare a " -"dismisura e per questa ragione le statistiche riportate dal server MySQL " -"potrebbero non essere corrette." - -#: server_status.php:1191 -msgid "Received" -msgstr "Ricevuti" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Spediti" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "max. connessioni contemporanee" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Tentativi falliti" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Fallito" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Comando" - -#: server_status.php:1527 +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10956,11 +11133,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Il numero di tentativi falliti di connettere al server MySQL." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10970,19 +11147,19 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Il numero di tentativi di connesione al server MySQL (completati con " "successo o no)." -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10994,11 +11171,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11006,7 +11183,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11014,7 +11191,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11022,23 +11199,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11048,7 +11225,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11059,7 +11236,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11068,7 +11245,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11079,7 +11256,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11088,7 +11265,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11101,7 +11278,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11114,37 +11291,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11154,7 +11331,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11166,11 +11343,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11178,7 +11355,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11186,11 +11363,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11198,7 +11375,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11213,55 +11390,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11269,35 +11446,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11306,51 +11483,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11359,7 +11536,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11367,7 +11544,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11377,15 +11554,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:1597 +#: server_status_variables.php:593 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11396,26 +11573,26 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11426,7 +11603,7 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11434,12 +11611,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11447,20 +11624,20 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:1611 +#: server_status_variables.php:645 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 " @@ -11470,19 +11647,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11495,7 +11672,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11503,19 +11680,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11523,13 +11700,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11538,7 +11715,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11546,17 +11723,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11564,12 +11741,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11577,12 +11754,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11592,23 +11769,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11620,7 +11797,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11630,11 +11807,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11646,223 +11823,16 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "Avvia monitoraggio" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "Istruzioni/Configurazione" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "Ho finito di modificare/muovere i grafici" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Aggiungi grafico" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "Muovi/modifica i grafici" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Ritmo di aggiornamenti" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Numero di grafici per rigo" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "Disposizione dei grafici" - -#: server_status.php:1851 -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 "" -"La configurazione dei grafici è memorizzata nella memoria locale dei " -"browser. Potreste voler esportarla se avete una configurazione complicata." - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Ripristina i valori predefiniti" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "Istruzioni per monitoraggio" - -#: server_status.php:1857 -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 "" -"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " -"configurazione del server e per il tracciamento di query intensive. Per " -"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " -"slow_query_log oppure general_log. Notate comunque che general_log produce " -"molti dati e aumenta il carico del server fino al 15%" - -#: server_status.php:1862 -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 "" -"Purtroppo il vostro server di Database non supporta il log su tabella che è " -"un requisito per analizzare i log del database con phpMyAdmin. Il log su " -"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " -"potete ancora utilizzare le funzionalità di generazione dei grafici del " -"server." - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "Utilizzo del monitor:" - -#: server_status.php:1877 -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 "" -"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " -"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " -"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " -"dentellata su ogni grafico." - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" -"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " -"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " -"grafico. Una volta data conferma, verrà caricata una tabella di query " -"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " -"per l'analisi successiva." - -#: server_status.php:1886 -msgid "Please note:" -msgstr "Nota:" - -#: server_status.php:1888 -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 "" -"Abilitare il general_log può incrementare il carico del server del 5-15%. " -"Tenete presente che la generazione delle statistiche a partire dai log è un " -"compito intensivo per cui si consiglia di selezionare solo un intervallo " -"temporale piccolo e disabilitare il general_log e svuotare la sua tabella." - -#: server_status.php:1902 -msgid "Preset chart" -msgstr "Valori predefiniti del grafico" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "Variabili di stato" - -#: server_status.php:1908 -msgid "Select series:" -msgstr "Seleziona serie:" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "Monitorate di solito" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "or scrivi il nome di una variabile:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "Visualizzare come valore differenziale" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "Applica un divisore" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "Aggiungi un unitá ai valori dei dati" - -#: server_status.php:1944 -msgid "Add this series" -msgstr "Aggiungi questa serie" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "Cancella la serie" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "Serie del grafico:" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "Registra statistiche" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Intervallo di tempo selezionato:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " -"raggruppamento" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Scegli il log dal quale generare le statistiche." - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "I risultati verranno raggruppati secondo il testo di query." - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Analyzer della query" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d secondo" -msgstr[1] "%d secondi" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minuti" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "L'impostazione della variablile è fallita" @@ -12463,26 +12433,26 @@ msgstr "Vincolo della chiave esterna" msgid "Tracking report for table `%s`" msgstr "Report di monitoraggio per la tabella `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitoraggio per %1$s é disattivato dalla version %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitoraggio di %1$s é attivo dalla version %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Instruzione SQL eseguita." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12490,118 +12460,118 @@ msgstr "" "Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego " "assicurati che hai i corretti permessi per effettuare queste azioni." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Commenta le linee seguenti se non ne hai bisogno." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Istruzione SQL esportata. Copia il dump o eseguilo." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versione %s dello snapshot (codice SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Errore nella query" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" "Le manipolazioni dei dati di monitoraggio sono state cancellate con successo" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Instruzioni per il monitoraggio" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s con date dal %2$s al %3$s dell'utente %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Cancella dati di tracciamento dal report" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nessun dato" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Instruzione di definizione dei dati" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Instruzione di manipolazione dei dati" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Dump SQL (scarica il file)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Questa opzione sostituirà la tua tabella e i dati contenuti." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Esecuzione SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Esporta come %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Mostra le versioni" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Disattiva il tracking per %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Disattiva ora" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Attiva il tracking per %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Attiva ora" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versione %1$s di %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Monitora le istuzioni di definizione dei dati:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Monitora le istruzioni di manipolazione dei dati:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Crea versione" @@ -12756,11 +12726,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time è impostato a %d secondi." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Log delle quey lente" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Lo slow_query_log è disabilitato." @@ -12777,15 +12747,34 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries è impostato a 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Abilitate il log delle query lente impostando {log_slow_queries} a 'ON'. " +"Questo aiuterà nella risoluzione dei problemi per le query con prestazioni " +"non buone." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries è impostato a 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Cancella la serie" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "La versione del server MySQL è inferiore a 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12793,21 +12782,21 @@ msgstr "" "E' consigliabile effettuare un aggiornamento poiché MySQL 5.1 ha migliorato " "le prestazioni e MySQL 5.5. ancora di più." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versione corrente: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versione minore" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Versione inferiore a 5.1.30 (la prima release GA della 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12815,27 +12804,27 @@ msgstr "" "E' consigliabile effettuare un aggiornamento poiché le recenti versioni " "MySQL 5.1 hanno migliorato le prestazioni e MySQL 5.5. ancora di più." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Versione inferiore a 5.5.8 (la prima release GA della 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" "Dovresti effettuare l'aggiornamento ad una versione stabile di MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribuzione" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Questa versione è stata compilata dal sorgente, non è un eseguibile " "ufficiale di MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12846,42 +12835,42 @@ msgstr "" "ufficiali MySQL, non per tutti i pacchetti delle distribuzioni (come RedHat, " "Debian/Ubuntu ecc.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' trovato nel version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "Il manuale MySQL è accurato solo per gli eseguibili ufficiali MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "La documentazione Percona si trova su http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' trovato nel version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "La documentazione Drizzle si trova su http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" "La stringa di versione (%s) combacia con lo schema di versione di Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Architettura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL non è compilato come pacchetto a 64-bit." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12892,20 +12881,20 @@ msgstr "" "memoria disponibile. Si consiglia di installare la versione a 64-bit di " "MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Memoria disponibile su questo host: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Cache della query disabilitata" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "La cache delle query non è abilitata." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12917,20 +12906,20 @@ msgstr "" "valore in MiB di due cifre e impostando {query_cache_type} a 'ON'. Nota: Se state usando memcached, ignorate questo suggerimento." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size è impostato a 0 or query_cache_type è impostato a 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Metodo di caching della query" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Metodo di caching subottimale." -#: libraries/advisory_rules.txt:157 +#: 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 " "invece della cache delle query MySQL, soprattutto se avete slave multipli." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12951,38 +12940,38 @@ msgstr "" "La cache delle query è abilitata e il server riceve %d query al secondo. " "Questa regola si attiva se ci sono più di 100 query al secondo." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Efficienza della cache delle query (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "La cache delle query non sta lavorando in maniera efficiente, risulta una " "frequenza bassa di hit." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Provate a incrementare {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" "Il tasso corrente di %s%% delle hit nella cache delle query è al di sotto " "del 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Utilizzo della cache della query" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Verrà utilizzato meno dell'80%% della cache delle query." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12991,7 +12980,7 @@ msgstr "" "{query_cache_limit}. Effettuare il flush della cache potrebbe risolvere il " "problema." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -13001,15 +12990,15 @@ msgstr "" "dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%" "%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Frammentazione della cache della query" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "La cache delle query risulta essere considerevolmente frammentata." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13030,7 +13019,7 @@ msgstr "" "dimensione media delle vostre query nella cache utilizzando la formula: " "(query_cache_size - qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13041,11 +13030,11 @@ msgstr "" "indica che la cache delle query presenta uno schema alternato di blocchi " "liberi e usati. Questo valore dovrebbe essere inferiore al 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Riduzioni della cache delle query per mancanza di memoria" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13053,7 +13042,7 @@ msgstr "" "Le query in cache sono state rimosse per mancanza di memoria nella cache " "delle query." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13063,7 +13052,7 @@ msgstr "" "l'overhead per mantenere la cache cresce in proporzione alla sua dimensione, " "quindi fatelo con piccoli incrementi e monitorate i risultati." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13072,11 +13061,11 @@ msgstr "" "Il rapporto tra le query rimosse e quelle inserite è %s%%. Più basso è " "questo valore, meglio è (Limite per l'attivazione di questa regola: 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Dimensione massima della cache delle query" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13085,7 +13074,7 @@ msgstr "" "query grandi possono causare un overhead significativo per il mantenimento " "della cache stessa." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13093,23 +13082,23 @@ msgstr "" "A seconda del vostro ambiente, la riduzione di questo valore potrebbe " "aumentare le prestazioni." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "La dimensione attuale della cache delle delle query è: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Dimensione minima del risultato della cache delle query" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "La dimensione massima del result set nella cache delle query è per default " "di 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13130,19 +13119,19 @@ msgstr "" "memorizzati nella cache (spesso invalidati a causa di aggiornamenti delle " "tabelle) aumentare {query_cache_limit} potrebbe ridurre l'efficienza." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit impostsato a 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Percentuale di ordinamenti che producono tabelle temporanee" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Troppi ordinamenti stanno creando tabelle temporanee." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13150,7 +13139,7 @@ msgstr "" "Incrementate sort_buffer_size e/o read_rnd_buffer_size, a seconda dei limiti " "di memoria del vostro sistema" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13159,11 +13148,11 @@ msgstr "" "%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, " "questo valore dovrebbe essere inferiore al 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Frequenza di ordinamenti che producono tabelle temporanee" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13171,15 +13160,15 @@ msgstr "" "Media di tabelle temporanee: %s, questo valore dovrebbe essere inferiore a 1 " "all'ora." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Oridna le righe" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Ci sono molte righe da ordinare." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13191,20 +13180,20 @@ msgstr "" "ordinamenti usino campi indicizzati nella clausola ORDER BY, poiché questo " "risulterebbe in un ordinamento molto più veloce" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Media di righe ordinate: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Frequenza di join senza indici" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Ci sono troppe join prive di indici." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13213,22 +13202,22 @@ msgstr "" "Aggiungendo indici alle colonne utilizzate nelle condizioni di join si " "otterranno notevoli riduzioni dei tempi di esecuzione" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Media di join di tabella: %s, questo valore dovrebbe essere inferiore a 1 " "all'ora" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Tasso di lettura della prima voce nell'indice" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Il tasso di lettura della prima voce nell'indice è alto." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13245,22 +13234,22 @@ msgstr "" "scansioni complete dell'indice. Oltre a questo scansioni complete " "dell'indice possono essere ridotte solo riscrivendo le query." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Media di scansioni dell'indice: %s, questo valore dovrebbe essere inferiore " "a 1 all'ora" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Tasso di lettura in posizione fissa" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Il tasso di lettura dei dati da una posizione fissa è alto." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13270,7 +13259,7 @@ msgstr "" "scansione completa della tabella, includendo query con join che non usa gli " "indici. Aggiungete gli indici ove possibile." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13279,15 +13268,15 @@ msgstr "" "Tasso medio di lettura su posizione fissa: %s, questo valore dovrebbe essere " "inferiore a 1 all'ora" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Frequenza di lettura della riga nella prossima tabella" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "La frequenza di lettura della riga nella prossima tabella è alta." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13295,7 +13284,7 @@ msgstr "" "Questo indica che molte query stanno facendo scansioni complete su tabella. " "Aggiungete degli indici ove possibile." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13303,16 +13292,16 @@ msgstr "" "Tasso di lettura della riga successiva nella tabella: %s, questo valore " "dovrebbe essere inferiore a 1 all'ora" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 #, fuzzy msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size vs. max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size e max_heap_table_size non coincidono." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13324,16 +13313,16 @@ msgstr "" "tabelle in-memory. Quindi, se volete aumentare il limite della tabella in-" "memory, dovete incrementare anche l'altro valore." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "I valori attuali di tmp_table_size sono: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Percentuale di tabelle temporanee su disco" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13341,7 +13330,7 @@ msgstr "" "Molte tabelle temporanee vengono scritte nel disco invece di essere " "mantenute in memoria." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13360,7 +13349,7 @@ msgstr "" "\"http://www.facebook.com/note.php?note_id=10150111255065841&comments" "\">Articolo del Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13369,11 +13358,11 @@ msgstr "" "Il %s%% di tutte le tabelle temporanee verrà scritto su disco, questo valore " "dovrebbe essere inferiore al 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Frequenza disco temporaneo" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13392,7 +13381,7 @@ msgstr "" "mysql.com/doc/refman/5.5/en/internal-temporary-tables.html\">Documentazione " "MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13401,17 +13390,17 @@ msgstr "" "Tasso di tabelle temporanee che verranno scritte su disco: %s, questo valore " "dovrebbe essere inferiore a 1 all'ora" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Dimensione del key buffer MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Key buffer non inizializzato. Nessun indice MyISAM verrà memorizzato in " "cache." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13419,23 +13408,23 @@ msgstr "" "Impostare {key_buffer_size} a seconda della dimensione dei vostri indici " "MyISAM. 64M è un buon inizio." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size è uguale a 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Massima %% di utilizzo del key buffer MyISAM" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "" "Bassa percentuale di utilizzo del buffer delle chiavi MyISAM (cache degli " "indici)." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13446,7 +13435,7 @@ msgstr "" "oppure esaminare le query e controllare che siano utilizzati gli indici che " "ci si aspetta." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13454,46 +13443,46 @@ msgstr "" "Masisma %% MyISAM key buffer mai usata: %s%%, questo valore dovrebbe essere " "sopra il 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Percentuale di utilizzo del buffer key MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% di key buffer MyISAM utilizzato: %s%%, questo valore dovrebbe essere " "superiore al 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Percentuale di letture degli indici dalla memoria" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "La percentuale di indici che usa il buffer MyISAM è bassa." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Potrebbe essere necessario aumentare {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Letture degli indici dalla memoria: %s%%, questo valore dovrebbe essere " "superiore al 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Frequenza di tabelle aperte" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "La frequenza di apertura di tabelle è alta." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13501,18 +13490,18 @@ msgstr "" "Aprire tabelle richiede I/O su disco che è un'operazione costosa. Aumentare " "{table_open_cache} potrebbe evitarlo." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Tasso di apertura delle tabelle: %s, questo valore dovrebbe essere inferiore " "a 10 all'ora" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Limite percentuale di file aperti utilizzati" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13520,7 +13509,7 @@ msgstr "" "Il numero di file aperti si sta avvicinando al massimo numero di file " "aperti. Potrebbe ricevere un errore \"Troppi file aperti\"." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13528,7 +13517,7 @@ msgstr "" "Incrementate {open_files_limit} e controllate il log degli errori quando " "riavviate dopo avere cambiato open_files_limit." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13536,58 +13525,58 @@ msgstr "" "Il numero di file aperti è al %s%% del limite. Dovrebbe essere al di sotto " "dell'85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Frequenza di file aperti" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "La frequenza di apertura di file è alta." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Tasso di file aperti: %s, questo valore dovrebbe essere inferiore a 5 all'ora" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% di lock immediati delle tabelle" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Troppi lock delle tabelle non sono stati assegnati immediatamente." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Ottimizzate le query e/o utilizzate InnoDB per ridurre i ritardi dovuti al " "lock." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Lock di tabelle immediato: %s%%, questo valore dovrebbe essere al di sopra " "del 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Tasso di lock delle tabelle in attesa" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Tasso di lock di tabelle in attesa: %s, questo valore dovrebbe essere " "inferiore a 1 all'ora" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Cache del thread" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13595,43 +13584,43 @@ msgstr "" "La chace dei thread è disabilitata: questo causa un overhead maggiore delle " "nuove connessioni verso MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Abilitate la cache dei thread impostando {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "La cache dei thread è impostata a 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Percentuale hit nella cache del thread" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "La cache dei thread non è efficiente." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Aumenta {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Frequenza hit nella cache dei thread: %s%%, questo valore dovrebbe essere " "superiore all'80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Thread che sono lenti da avviarsi" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Ci sono troppi thread lenti da avviare." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13640,21 +13629,21 @@ msgstr "" "anche per operazioni piuttosto semplici. Sarebbe opportuno monitorare " "attentamente il carico del sistema." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s thread hanno richiesto più di %s secondi per partire, dovrebbe essere 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Tempo di avvio lento" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads è superiore a 2 secondi" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13662,16 +13651,16 @@ msgstr "" "Impostate slow_launch_time a 1 secondo o 2 secondi per contare correttamente " "i thread che sono lenti all'avvio" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time é impostato a %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Percentuale di connessioni utilizzate" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13679,7 +13668,7 @@ msgstr "" "Il numero massimo di connessioni utilizzate si sta avvicinando al valore " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13690,7 +13679,7 @@ msgstr "" "Controllate che nel codice gli handler al database vengano chiusi " "correttamente." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13698,15 +13687,15 @@ msgstr "" "Max_used_connections è al %s%% di max_connections, dovrebbe essere inferiore " "all'80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Percentuale di connessioni abortite" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Sono state interrotte troppe connessioni." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Questo articolo potrebbe " "essere d'aiuto per tracciare il sorgente." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "Il %s%% di tutte le connessioni è stato interrotto. Questo valore dovrebbe " "essere inferiore all'1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Frequenza di connessioni abortite" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13737,15 +13726,15 @@ msgstr "" "Il tasso di connessioni interrotte è %s, questo valore dovrebbe essere " "inferiore a 1 all'ora" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Percentuale di client abortiti" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Sono state interrotti troppi client." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13756,45 +13745,45 @@ msgstr "" "causato da problemi di rete o da codice che non termina correttamente le " "connessioni. Controllare rete e codice." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "Il server termina il %s%% delle connessioni dei client. Questo valore " "dovrebbe essere inferiore al 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Frequenza di connessioni client terminate" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "La frequenza di interruzione di connessioni dei client è %s, questo valore " "dovrebbe essere inferiore ad 1 per ora" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB è disabilitato?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB non è abilitato." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB è solitamente la miglior scelta tra i motori di archiviazione." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb è impostato a 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Dimensione log InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13802,7 +13791,7 @@ msgstr "" "La dimensione del file di log InnoDB non è appropriata, in relazione alla " "dimensione del buffer pool InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13826,7 +13815,7 @@ msgstr "" "anche questo articolo di blog" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13835,15 +13824,15 @@ msgstr "" "La dimensione del log InnoDB è %s%% in relazione alla dimensione del buffer " "pool InnoDB, dovrebbe essere non inferiore al 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Dimensione massima log InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "La dimensione del file di log InnoDB è eccessivamente grande." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13867,20 +13856,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">questo articolo di blog" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "La vostra dimensione assoluta del log InnoDB è %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Dimensione del buffer pool InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Il vostro buffer pool InnoDB è abbastanza piccolo." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13906,7 +13895,7 @@ msgstr "" "anche questo articolo" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13919,15 +13908,15 @@ msgstr "" "potrebbe essere perfettamente adeguato al vostro sistema se non avete troppe " "tabelle InnoDB o servizi attivi sulla stessa macchina." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Inserimenti MyISAM contemporanei" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Abilitate concurrent_insert impostandolo a 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Documentazione MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB inviati dall'ultimo aggiornamento" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB ricevuti dall'ultimo aggiornamento" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Traffico del server (in KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Numero di connessioni dall'ultimo aggiornamento" + +#~ msgid "Questions since last refresh" +#~ msgstr "Numero di 'questions' dall'ultimo aggiornamento" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (instruzioni eseguiti dal server)" + +#~ msgid "Runtime Information" +#~ msgstr "Informazioni di Runtime" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Numero di righe:" + +#~ msgid "Refresh rate: " +#~ msgstr "Ritmo dell'aggiornamento: " + +#~ msgid "Run analyzer" +#~ msgstr "Lancia l'analyzer" + #~ msgid "Show more actions" #~ msgstr "Mostra piú azioni" diff --git a/po/ja.po b/po/ja.po index 67f42ba6bb..405b6a5b93 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:02+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Japanese " -"\n" -"Language: ja\n" +"Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "検索" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "検索" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "実行" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "キー名" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "説明" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "データベースのコメント: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "テーブルのコメント" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "カラム" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "カラム" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "データ型" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "データ型" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "NULL" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "NULL" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "デフォルト値" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "デフォルト値" msgid "Links to" msgstr "リンク先" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "コメント" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "いいえ" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "いいえ" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "はい" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "テーブル" @@ -338,7 +338,7 @@ msgstr "サイズ" msgid "in use" msgstr "使用中" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "使用中" msgid "Creation" msgstr "作成日時" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "作成日時" msgid "Last update" msgstr "最終更新" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -405,7 +405,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "データベース" @@ -413,17 +413,17 @@ msgstr "データベース" msgid "Last version" msgstr "最後の世代" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "作成日時" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "更新日時" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "状態" @@ -438,7 +438,7 @@ msgstr "操作" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "表示" @@ -454,11 +454,11 @@ msgstr "このテーブルに対しての追跡データを削除する" msgid "Drop" msgstr "削除" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "アクティブ" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "非アクティブ" @@ -466,11 +466,11 @@ msgstr "非アクティブ" msgid "Versions" msgstr "世代" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "追跡レポート" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "構造のスナップショット" @@ -538,45 +538,45 @@ msgstr "ベースレイヤーに OpenStreetMap を使用する" msgid "SRID" msgstr "空間参照識別子" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "幾何データ" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "座標 %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "座標を追加する" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "線分" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "外輪" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "内輪" @@ -584,15 +584,15 @@ msgstr "内輪" msgid "Add a linestring" msgstr "線分を追加する" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "内輪を追加する" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "ポリゴン" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "ポリゴンを追加する" @@ -736,8 +736,9 @@ msgstr "詳細設定" msgid "Database server" msgstr "データベースサーバ" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "サーバ" @@ -756,7 +757,7 @@ msgstr "プロトコルバージョン" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "ユーザ" @@ -1000,12 +1001,12 @@ msgstr "特権を再読み込み" msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "閉じる" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1015,15 +1016,15 @@ msgstr "閉じる" msgid "Edit" msgstr "編集" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "リアルタイムでのトラフィックグラフ" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "リアルタイムでの接続/プロセスグラフ" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "リアルタイムでのクエリグラフ" @@ -1034,13 +1035,14 @@ msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "その他" @@ -1055,48 +1057,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "更新間隔中の送信量 (単位:KiB)" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "更新間隔中の受信量 (単位:KiB)" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "サーバのトラフィック (単位:KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "更新間隔中の接続数" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "プロセス" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "接続/プロセス" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "更新間隔中の問い合わせ数" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "問い合わせ数 (サーバで実行された命令文)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "クエリの統計" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "ローカルのモニタ環境設定に互換性なし" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1107,196 +1075,201 @@ msgstr "" "せん。この環境設定ではおそらく機能させることはできないでしょう。設定項" "目よりモニタ環境設定をデフォルトに戻してください。" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "クエリキャッシュ効率" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "クエリキャッシュの使用状況" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "使用されているクエリキャッシュ" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "システム CPU の使用状況" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "システムメモリ" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "システムスワップ" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "平均負荷" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "総メモリ" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "キャッシュ割り当てメモリ" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "バッファ割り当てメモリ" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "空きメモリ" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "使用中メモリ" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "総スワップ領域" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "キャッシュ割り当てスワップ領域" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "使用中スワップ領域" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "空きスワップ領域" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "送信" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "受信" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "接続" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "プロセス" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "バイト" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d テーブル" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "設定" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "グラフの削除" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "題名・ラベルの編集" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "モニタリンググラフを追加する" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "なし" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "モニタ再開" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "モニタ一時中断" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log および slow_query_log は有効です。" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log は有効です。" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log は有効です。" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log および general_log は無効です。" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output はテーブルに設定されていません。" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output はテーブルに設定されています。" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1307,12 +1280,12 @@ msgstr "" "をログに記録します。お使いのシステムによっては、long_query_time を 0~2 秒に" "設定したほうがいいでしょう。" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time は %d 秒に設定されています。" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1321,30 +1294,30 @@ msgstr "" "されます。" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "log_output に %s を設定する" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s を有効にする" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s を無効にする" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time を %d 秒に設定する" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1352,54 +1325,54 @@ msgstr "" "これらの変数を変更することはできません。root でログインするか、データベース管" "理者に連絡してください。" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "設定の変更" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "グラフの題名" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "差分値" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "除数 %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "単位" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "スロークエリログより" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "一般クエリログより" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "ログの解析中" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" "ログの解析および読み込みを行っています。少し時間がかかることがあります。" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "キャンセル" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1409,7 +1382,7 @@ msgstr "" "クエリをグループの基準として使用しています。そのため、開始時刻いったような属" "性は、他クエリでは異なる場合があります。" -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1419,99 +1392,99 @@ msgstr "" "INSERT クエリは挿入されたデータ部は同一のようにみなされて、グループ化が行われ" "ます。" -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "ログデータを読み込みました。この期間に行われたクエリは以下の通りです。" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "ログの表に移動する" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "データが存在しません" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "ログの解析を行いましたが、この期間のデータは見つかりませんでした。" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "解析しています…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "EXPLAIN の結果" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "時間" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "合計時間:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "プロファイリングの結果" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "表" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "グラフ" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "グラフの編集" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "系列" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "ログの表のフィルタオプション" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "フィルタ" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "単語/正規表現でクエリを絞る:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "WHERE 節内のデータ部(文字列や数値など)は同一として扱いクエリをまとめる" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "グループ後の行数:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "合計:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "ログの読み込み" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "モニタの再描画に失敗しました" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1521,254 +1494,256 @@ msgstr "" "期限切れであるなら、これは正常な動作です。ページを再読み込みしてください。認" "証はやり直す必要があるかもしれません。" -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "ページの再読み込み" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "変更された行:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "設定ファイルの構文解析に失敗しました。有効な JSON コードではないようです。" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻します…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "モニタ環境設定のインポート" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "インポートするファイルを選択してください" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "クエリを解析する" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "アドバイザ・システム" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "パフォーマンス的に検討が推奨される事象" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "事象" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "推奨設定" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "事象の詳細と判断理由" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "判断理由" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "判断値の算出方法" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "判断基準" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "読み込んでいます" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "要求を処理しています" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "要求処理中でのエラー" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "データベースが選択されていません。" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "カラムを削除しています" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "主キーを追加しています" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "クリックすると、この通知を破棄します" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "データベースの名称を変更しています" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "データベースの再読み込み中" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "データベースをコピーしています" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "文字セットを変更しています" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "テーブルには最低 1 つのカラムが必要です" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "テーブルを挿入する" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "インデックスを隠す" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "インデックスを表示する" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "外部キーのチェック:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(有効)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(無効)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "検索しています" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "検索結果を隠す" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "検索結果を表示する" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "表示中" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "削除しています" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "カラム %s に対しての値" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "新しいカラムに対しての値" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "個々の入力欄にそれぞれ値を入力してください" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "値 %d を追加する" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" "す。" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "クエリボックスを隠す" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "変更" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "クエリの実行時間" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1777,90 +1752,90 @@ msgstr "%d は不正な行番号です。" msgid "Save" msgstr "保存する" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "検索プロット" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "プロット点は、それぞれの行のデータを表します。" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "拡大するには、マウスでグラフ内を範囲選択してください。" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "「Reset zoom」リンクをクリックすることで元の状態に戻せます。" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "カラムを 2 つ選択してください" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "異なるカラムを 2 つ選択してください" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "クエリの結果" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "無視" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "コピー" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "カラムを追加する" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1868,15 +1843,20 @@ msgstr "" "レイアウトの変更を保存されていません。保存していない場合、それらは失われま" "す。このまま続けてもよろしいですか?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "カラムに対するオプションを追加する " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "ESC キーで編集キャンセル" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1884,27 +1864,27 @@ msgstr "" "いくつかのデータが編集されていますが、それらは保存されていません。データを保" "存せずにこのページから移動してもよろしいですか?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "クリックでソート" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "クリックでカラムを反転/解除" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "ダブルクリックでカラム名をコピー" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "クリックでカラムの表示/非表示
ができるドロップダウンを表示" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1913,7 +1893,7 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1924,64 +1904,64 @@ msgstr "" "ほとんどのカラムは、内容を直接クリック
することでも、編集することができ" "ます。" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "ほとんどのカラムは、内容を直接クリック
することでも、編集することができ" "ます。" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "リンク先へ移動する" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "カラム名のコピー" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "データ行の表示" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "生成する" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "その他" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "すべて表示" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "インデックスを隠す" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "特権テーブルには選択したユーザがいません。" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1991,266 +1971,266 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "最新版" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "決定" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "今日" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "1 月" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "2 月" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "3 月" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "4 月" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "5 月" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "6 月" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "7 月" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "8 月" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "9 月" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "10 月" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "11 月" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "12 月" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "日" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "月" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "火" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "水" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "木" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "金" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "時" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "分" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "秒" @@ -2301,16 +2281,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "予期しない文字 (行: %1$s)。タブ文字があるべきところに \"%2$s\" がありました。" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "/ 秒" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "/ 分" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "/ 時" @@ -2338,7 +2318,7 @@ msgstr "フォントサイズ" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "昇順" @@ -2347,7 +2327,7 @@ msgstr "昇順" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "降順" @@ -2461,7 +2441,7 @@ msgstr "テーブル %s に対して条件に一致したものを削除しま #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "削除" @@ -2632,7 +2612,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "停止" @@ -2687,12 +2667,13 @@ msgstr "すべてチェックする" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" @@ -2700,7 +2681,7 @@ msgstr "エクスポート" msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2787,16 +2768,16 @@ msgstr "アップロードされ(移動し)たファイルが読み込めま msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください。" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript を有効にしてください" @@ -2808,21 +2789,21 @@ msgstr "インデックスが定義されていません!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "インデックス" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "一意な値の数" @@ -2832,13 +2813,13 @@ msgstr "一意な値の数" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "照合順序" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "コメント" @@ -2883,7 +2864,7 @@ msgstr "ビュー" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "構造" @@ -2956,34 +2937,35 @@ msgstr "イベント" msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "ユーザ" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "バイナリログ" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "レプリケーション" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "変数" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "プラグイン" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "エンジン" @@ -3028,6 +3010,104 @@ msgstr "最近使用したテーブル" msgid "There are no recent tables" msgstr "最近使用したテーブルはありません" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "実行した SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "ハンドラ" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "クエリキャッシュ" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "スレッド" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "一時データ" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "遅延インサート" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "キーキャッシュ" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "結合" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "ソート" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "テーブル" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "トランザクションコーディネータ" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "ファイル" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "すべてのテーブルをフラッシュする(閉じる)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "開いているテーブルを表示する" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "スレーブホストを表示する" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "マスタステータスの表示" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "スレーブの状態を表示する" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "クエリキャッシュをフラッシュする" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB ステータス" + +#: 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." @@ -3123,7 +3203,7 @@ msgstr "演算子" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "値" @@ -3557,11 +3637,6 @@ msgstr "列挙型、定義しておいた列挙リストより値を取ること msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "実行した SQL" - #: libraries/Util.class.php:710 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:292 @@ -3596,7 +3671,7 @@ msgid "Create PHP Code" msgstr "PHP コードの作成" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "再描画" @@ -3692,13 +3767,6 @@ msgstr "印刷" msgid "shared" msgstr "共有" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "テーブル" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3739,11 +3807,11 @@ msgstr "データベース「%s」の特権を確認します。" msgid "Check Privileges" msgstr "特権をチェックする" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3751,12 +3819,12 @@ msgstr "" "通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認し" "てください。" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "デフォルトの設定を読み込めませんでした: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3764,38 +3832,38 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] は必ず設定ファイルに設定しなければ" "なりません!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS 変数が書き換えられている可能性があります" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "なんらかの攻撃をされている可能性があります" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" @@ -6059,8 +6127,8 @@ msgstr "" "ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/" "kbd])。" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "ユーザ名" @@ -6717,10 +6785,6 @@ msgstr "" msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB ステータス" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "バッファプールの使用量" @@ -7409,20 +7473,20 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "データベース名を絞る" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "系列をクリアする" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7536,17 +7600,17 @@ msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "構造のみ" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "構造とデータ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "データのみ" @@ -7941,8 +8005,7 @@ msgstr "MIME タイプを表示する" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "ホスト" @@ -8534,7 +8597,7 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "変数" @@ -9047,7 +9110,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "その他" @@ -9737,7 +9800,7 @@ msgstr "接頭辞をテーブル名に追加する" msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "なし" @@ -10081,7 +10144,7 @@ msgstr "大小を切り替える" msgid "Toggle relation lines" msgstr "リレーションラインの表示切替" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" @@ -10147,31 +10210,31 @@ msgstr "ページが作成されました" msgid "Page creation failed" msgstr "ページの作成に失敗しました" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "ページ" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "選択したページからインポートする" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "選択したページへエクスポートする" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "ページを作成し、そこへエクスポートする。" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "新しいページの名前: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "推奨" @@ -10295,15 +10358,11 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "ファイル" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -10386,7 +10445,7 @@ msgstr "モジュール" msgid "Library" msgstr "ライブラリ" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "バージョン" @@ -10444,10 +10503,6 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。" msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "マスタステータスの表示" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "接続しているスレーブの表示" @@ -10592,132 +10647,100 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました。" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。" -#: server_status.php:657 -msgid "Handler" -msgstr "ハンドラ" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "起動以後のネットワークトラフィック:%s" -#: server_status.php:658 -msgid "Query cache" -msgstr "クエリキャッシュ" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "この MySQL サーバの稼働時間: %1$s (起動時刻: %2$s)" -#: server_status.php:659 -msgid "Threads" -msgstr "スレッド" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのマスタス" +"レーブとして動作しています。" -#: server_status.php:661 -msgid "Temporary data" -msgstr "一時データ" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのマスタとして動作" +"しています。" -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "遅延インサート" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"この MySQL サーバは、レプリケーションプロセスのスレーブとして動" +"作しています。" -#: server_status.php:663 -msgid "Key cache" -msgstr "キーキャッシュ" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:664 -msgid "Joins" -msgstr "結合" +#: server_status.php:122 +msgid "Replication status" +msgstr "レプリケーションステータス" -#: server_status.php:666 -msgid "Sorting" -msgstr "ソート" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" +"が報告してくる統計は不正確なことがあります。" -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "トランザクションコーディネータ" +#: server_status.php:149 +msgid "Received" +msgstr "受信済" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "すべてのテーブルをフラッシュする(閉じる)" +#: server_status.php:168 +msgid "Sent" +msgstr "送信済" -#: server_status.php:682 -msgid "Show open tables" -msgstr "開いているテーブルを表示する" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "最大同時接続数" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "スレーブホストを表示する" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "失敗回数" -#: server_status.php:693 -msgid "Show slave status" -msgstr "スレーブの状態を表示する" +#: server_status.php:253 +msgid "Aborted" +msgstr "中断" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "クエリキャッシュをフラッシュする" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "ランタイム情報" +#: server_status.php:329 +msgid "Command" +msgstr "コマンド" -#: server_status.php:830 -msgid "All status variables" -msgstr "すべての状態変数" - -#: server_status.php:832 -msgid "Monitor" -msgstr "モニタ" - -#: server_status.php:834 -msgid "Advisor" -msgstr "アドバイザ" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "行数:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "再描画間隔: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "フィルタ" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "含まれている文字:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "警告値のみ表示する" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "種別による絞り込み..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "生の値 (書式化なし) で表示する" - -#: server_status.php:930 -msgid "Related links:" -msgstr "関連リンク:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "事象の解析をする" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "アドバイザの利用にあたって" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10725,7 +10748,7 @@ msgstr "" "アドバイザ・システムは、サーバの状態変数を分析することにより、ふさわしいと思" "われるサーバ変数の調整方法を提供するものです。" -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10734,7 +10757,7 @@ msgstr "" "このシステムは、単純な計算を基にして経験則によって調整方法を提供するため、お" "使いのシステムに必ずしも当てはまるものではないことに注意してください。" -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10744,7 +10767,7 @@ msgstr "" "を確認しておいてください。間違ったチューニングは、パフォーマンスに非常に悪影" "響を与える可能性があります。" -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10754,796 +10777,39 @@ msgstr "" "す。変更の度に、監視やベンチマークを行い、明確な改善が測定されなかった場合は" "変更した箇所を元に戻します。" -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "起動以後の問い合わせ数:%s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "ステートメント" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "クエリ数" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "起動以後のネットワークトラフィック:%s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "この MySQL サーバの稼働時間: %1$s (起動時刻: %2$s)" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのマスタス" -"レーブとして動作しています。" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのマスタとして動作" -"しています。" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"この MySQL サーバは、レプリケーションプロセスのスレーブとして動" -"作しています。" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "レプリケーションステータス" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" -"が報告してくる統計は不正確なことがあります。" - -#: server_status.php:1191 -msgid "Received" -msgstr "受信済" - -#: server_status.php:1208 -msgid "Sent" -msgstr "送信済" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "最大同時接続数" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "失敗回数" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "中断" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "コマンド" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL サーバへの接続を試みて失敗した回数。" - -#: server_status.php:1529 -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 "" -"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" -"め一時ファイルにステートメントを保存したトランザクション数。" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "一時バイナリログキャッシュを使用したトランザクション数。" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" - -#: server_status.php:1532 -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 "" -"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。" -"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" -"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "mysqld が生成した一時ファイル数。" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" -"ルの数だけ固有のスレッドが用意されます。" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "INSERT DELAYED で書き込まれた行数。" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "FLUSH 文の実行回数。" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "内部で COMMIT 文を実行した回数。" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "テーブルから行を削除した回数。" - -#: server_status.php:1541 -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 "" -"MySQL サーバは NDB クラスタストレージエンジンに特定の名前を持つテーブルについ" -"ての情報を持っているか問い合わせることができます。これを開示と言いますが、" -"Handler_discover はその開示されたタイムテーブルの数です。" - -#: server_status.php:1542 -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 "" -"インデックスの最初のエントリを読み込んだ回数。この値が高い場合はサーバが何度" -"もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " -"FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" - -#: server_status.php:1543 -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 "" -"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" -"ルが適切にインデックスされているものと考えられます。" - -#: server_status.php:1544 -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 "" -"キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" -"エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" -"す。" - -#: server_status.php:1545 -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 "" -"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " -"BY ... DESC の最適化に利用されます。" - -#: server_status.php:1546 -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 "" -"決まった位置を基準に行を読み込んだリクエストの数。この値が高いのは結果をソー" -"トする必要があるクエリを大量に実行している場合です。おそらくテーブル全体をス" -"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" -"不適切なところがあります。" - -#: server_status.php:1547 -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 "" -"データファイルの次の行を読み込んだリクエストの数。この値が高いのはテーブルス" -"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" -"切か、クエリがインデックスを利用するように書かれていないことを意味します。" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "内部で ROLLBACK 文を実行した回数。" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "テーブル内の行を更新したリクエストの数。" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "テーブル内に行を挿入したリクエストの数。" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" -"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "現在のダーティページの数。" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "フラッシュリクエストを受けたバッファプールのページ数。" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "空きページ数。" - -#: server_status.php:1555 -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 "" -"InnoDB バッファプールでラッチされているページ数。これは現在読み込んでいる、あ" -"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" -"たりできなくなっているページの数です。" - -#: server_status.php:1556 -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 "" -"行ロックやアダプティブハッシュインデックスといった管理オーバヘッドのせいでビ" -"ジーになっているページ数。この値は Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" -"算できます。" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "ページのバッファプールサイズの合計。" - -#: server_status.php:1558 -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 "" -"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" -"ダムな順番でスキャンするときに発生します。" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" -"なテーブル全スキャンを行うときに発生します。" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "InnoDB が実行した論理読み込みリクエストの数。" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" -"ばならなかった論理読み込みの回数。" - -#: server_status.php:1562 -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 "" -"通常 InnoDB バッファプールへの書き込みはバックグラウンドで行われますが、ペー" -"ジの読み込みないし作成を行う必要があるのにクリーンなページが得られない場合" -"は、まずそのページがフラッシュされるのを待つ必要があります。このカウンタは、" -"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" -"ていれば、この値は小さいはずです。" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "InnoDB バッファプールへの書き込み回数。" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "これまでに fsync() を実行した回数。" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "現在保留されている fsync() の回数。" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "現在保留されている読み込みの数。" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "現在保留されている書き込みの数。" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "これまでのデータ読み込み量 (単位:バイト)。" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "データ読み込み回数の合計。" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "データ書き込み回数の合計。" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "これまでのデータの書き込み量 (単位:バイト)。" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" - -#: server_status.php:1574 -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 "" -"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" -"したウェイトの回数。" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "ログ書き込みリクエストの数。" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "ログファイルへの物理書き込みの回数。" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "ログファイルへの fsync 書き込みの回数。" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "保留中のログファイルへの fsync 回数。" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "保留中のログファイルへの書き込み回数。" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "ログファイルに書き込んだバイト数。" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "作成されたページ数。" - -#: server_status.php:1582 -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 "" -"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" -"で計算されますが、この値を使えば簡単にバイト単位に変換できます。" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "読み込んだページ数。" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "書き込んだページ数。" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "現在待機中の行ロックの数。" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "行ロック取得時に待機した回数。" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB テーブルから削除した行数。" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB テーブルに挿入した行数。" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB テーブルから読み込んだ行数。" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB テーブルで更新された行数。" - -#: server_status.php:1594 -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 "" -"変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" -"数。以前は Not_flushed_key_blocks でした。" - -#: server_status.php:1595 -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 "" -"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" -"ます。" - -#: server_status.php:1596 -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 "" -"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" -"クの最大数です。" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "使われているキーキャッシュの比率 (計算値)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" - -#: server_status.php:1599 -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 "" -"ディスクからキーブロックを物理読み込みした回数。Key_reads が大きいのはおそら" -"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" -"Key_read_requests で計算できます。" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" -"値)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "ディスクにキーブロックを物理書き込みした回数。" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" - -#: server_status.php:1604 -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 "" -"クエリオプティマイザーの計算による、最後にコンパイルされたクエリの総コスト。" -"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" -"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "サーバが起動してからの同時接続の最大数。" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" -"シュの値が小さすぎます。" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "開いているファイルの数。" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "開いているストリームの数 (主にログの記録用です)。" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "開いているテーブルの数。" - -#: server_status.php:1611 -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 "" -"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ" -"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" -"るかもしれません。" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "クエリキャッシュの空きメモリ量。" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "キャッシュのヒット数。" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "キャッシュに追加されたクエリの数。" - -#: server_status.php:1615 -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 "" -"新しいクエリをキャッシュするためにメモリを解放するべくキャッシュから削除され" -"たクエリの数。この情報はクエリキャッシュのサイズを調整するときに便利です。ク" -"エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" -"て削除するクエリを決めます。" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" -"シュしないことになっている) クエリの数。" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "キャッシュに登録されているクエリの数。" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "クエリキャッシュの総ブロック数。" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "フェイルセーフレプリケーションの状態 (未実装)。" - -#: server_status.php:1620 -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 "" -"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" -"デックスをよく確認してください。" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "参照テーブルで範囲検索をした結合の数。" - -#: server_status.php:1622 -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 "" -"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" -"(0 でない場合はテーブルのインデックスをよく確認してください)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" -"ん)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "最初のテーブルを全スキャンした結合の数。" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" -"動時からの合計)。" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" - -#: server_status.php:1630 -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 "" -"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" -"は sort_buffer_size システム変数の値を増やした方がよいでしょう。" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "範囲指定付きでソートが行われた回数。" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "ソート済の行数。" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "テーブルをスキャンしたときに実行されたソートの回数。" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "テーブルロックをすぐに取得できた回数。" - -#: server_status.php:1635 -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 "" -"テーブルロックをすぐに取得できずウェイトが発生した回数。この値が高く、パ" -"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" -"もだめならテーブルを分割するか、レプリケーションを利用してください。" - -#: server_status.php:1636 -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 "" -"スレッドキャッシュ内のスレッド数。キャッシュのヒット率は Threads_created/" -"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" -"大きくしてください。" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "現在開いている接続の数。" - -#: server_status.php:1638 -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 "" -"接続処理のために作成されたスレッドの数。Threads_created が大きい場合は " -"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" -"がない場合はふつうあまりパフォーマンスは向上しません)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "スレッドキャッシュのヒット割合 (計算値)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "スリープしていないスレッドの数。" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "モニタ開始" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "使用方法/セットアップ" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "グラフの再配置/編集完了" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "グラフの追加" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "グラフの再配置/編集" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "1 段のグラフ数" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "モニタ環境設定" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11551,15 +10817,15 @@ msgstr "" "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" "トできます。" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "デフォルトに戻す" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "モニタの使用方法" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11573,7 +10839,7 @@ msgstr "" "いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" "し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11585,11 +10851,11 @@ msgstr "" "グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" "タ機能は使用することができます。" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "モニタの使い方:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11599,7 +10865,7 @@ msgstr "" "のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" "ある歯車のアイコンを通じて削除が行えます。" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11612,11 +10878,11 @@ msgstr "" "れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" "をクリックすることで、更なるクエリ解析が可能です。" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "注意事項:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11629,90 +10895,793 @@ msgstr "" "うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" "テーブルを空にしておくのが望ましいです。" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "プリセットグラフ" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "状態変数" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "系列の選択:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "一般的なモニタ対象" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "もしくは対象変数名:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "差分値として表示する" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "除数を適用する" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "データ値に単位を追加する" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "この系列を追加する" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "系列をクリアする" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "グラフの系列:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "ログの統計" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "選択期間:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "ログの統計元を選択することができます。" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "結果はクエリ文でグループ化されます。" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "クエリの解析" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "起動以後の問い合わせ数:%s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "ステートメント" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "クエリ数" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "フィルタ" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "含まれている文字:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "警告値のみ表示する" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "種別による絞り込み..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "生の値 (書式化なし) で表示する" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "関連リンク:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL サーバへの接続を試みて失敗した回数。" + +#: server_status_variables.php:334 +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 "" +"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" +"め一時ファイルにステートメントを保存したトランザクション数。" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "一時バイナリログキャッシュを使用したトランザクション数。" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" + +#: server_status_variables.php:346 +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 "" +"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。" +"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" +"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "mysqld が生成した一時ファイル数。" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" +"ルの数だけ固有のスレッドが用意されます。" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "INSERT DELAYED で書き込まれた行数。" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "FLUSH 文の実行回数。" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "内部で COMMIT 文を実行した回数。" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "テーブルから行を削除した回数。" + +#: server_status_variables.php:381 +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 "" +"MySQL サーバは NDB クラスタストレージエンジンに特定の名前を持つテーブルについ" +"ての情報を持っているか問い合わせることができます。これを開示と言いますが、" +"Handler_discover はその開示されたタイムテーブルの数です。" + +#: server_status_variables.php:387 +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 "" +"インデックスの最初のエントリを読み込んだ回数。この値が高い場合はサーバが何度" +"もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " +"FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" + +#: server_status_variables.php:393 +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 "" +"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" +"ルが適切にインデックスされているものと考えられます。" + +#: server_status_variables.php:398 +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 "" +"キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" +"エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" +"す。" + +#: server_status_variables.php:403 +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 "" +"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " +"BY ... DESC の最適化に利用されます。" + +#: server_status_variables.php:407 +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 "" +"決まった位置を基準に行を読み込んだリクエストの数。この値が高いのは結果をソー" +"トする必要があるクエリを大量に実行している場合です。おそらくテーブル全体をス" +"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" +"不適切なところがあります。" + +#: server_status_variables.php:414 +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 "" +"データファイルの次の行を読み込んだリクエストの数。この値が高いのはテーブルス" +"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" +"切か、クエリがインデックスを利用するように書かれていないことを意味します。" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "内部で ROLLBACK 文を実行した回数。" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "テーブル内の行を更新したリクエストの数。" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "テーブル内に行を挿入したリクエストの数。" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" +"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "現在のダーティページの数。" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "フラッシュリクエストを受けたバッファプールのページ数。" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "空きページ数。" + +#: server_status_variables.php:443 +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 "" +"InnoDB バッファプールでラッチされているページ数。これは現在読み込んでいる、あ" +"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" +"たりできなくなっているページの数です。" + +#: server_status_variables.php:448 +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 "" +"行ロックやアダプティブハッシュインデックスといった管理オーバヘッドのせいでビ" +"ジーになっているページ数。この値は Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" +"算できます。" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "ページのバッファプールサイズの合計。" + +#: server_status_variables.php:458 +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 "" +"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" +"ダムな順番でスキャンするときに発生します。" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" +"なテーブル全スキャンを行うときに発生します。" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "InnoDB が実行した論理読み込みリクエストの数。" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" +"ばならなかった論理読み込みの回数。" + +#: server_status_variables.php:474 +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 "" +"通常 InnoDB バッファプールへの書き込みはバックグラウンドで行われますが、ペー" +"ジの読み込みないし作成を行う必要があるのにクリーンなページが得られない場合" +"は、まずそのページがフラッシュされるのを待つ必要があります。このカウンタは、" +"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" +"ていれば、この値は小さいはずです。" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "InnoDB バッファプールへの書き込み回数。" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "これまでに fsync() を実行した回数。" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "現在保留されている fsync() の回数。" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "現在保留されている読み込みの数。" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "現在保留されている書き込みの数。" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "これまでのデータ読み込み量 (単位:バイト)。" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "データ読み込み回数の合計。" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "データ書き込み回数の合計。" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "これまでのデータの書き込み量 (単位:バイト)。" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" + +#: server_status_variables.php:516 +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 "" +"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" +"したウェイトの回数。" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "ログ書き込みリクエストの数。" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "ログファイルへの物理書き込みの回数。" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "ログファイルへの fsync 書き込みの回数。" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "保留中のログファイルへの fsync 回数。" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "保留中のログファイルへの書き込み回数。" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "ログファイルに書き込んだバイト数。" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "作成されたページ数。" + +#: server_status_variables.php:541 +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 "" +"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" +"で計算されますが、この値を使えば簡単にバイト単位に変換できます。" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "読み込んだページ数。" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "書き込んだページ数。" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "現在待機中の行ロックの数。" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "行ロック取得時に待機した回数。" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB テーブルから削除した行数。" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB テーブルに挿入した行数。" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB テーブルから読み込んだ行数。" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB テーブルで更新された行数。" + +#: server_status_variables.php:579 +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 "" +"変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" +"数。以前は Not_flushed_key_blocks でした。" + +#: server_status_variables.php:584 +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 "" +"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" +"ます。" + +#: server_status_variables.php:588 +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 "" +"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" +"クの最大数です。" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "使われているキーキャッシュの比率 (計算値)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" + +#: server_status_variables.php:599 +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 "" +"ディスクからキーブロックを物理読み込みした回数。Key_reads が大きいのはおそら" +"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" +"Key_read_requests で計算できます。" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" +"値)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "ディスクにキーブロックを物理書き込みした回数。" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" + +#: server_status_variables.php:619 +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 "" +"クエリオプティマイザーの計算による、最後にコンパイルされたクエリの総コスト。" +"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" +"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "サーバが起動してからの同時接続の最大数。" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" +"シュの値が小さすぎます。" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "開いているファイルの数。" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "開いているストリームの数 (主にログの記録用です)。" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "開いているテーブルの数。" + +#: server_status_variables.php:645 +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 "" +"クエリキャッシュ内の空きメモリのブロック数。この値が高い場合は 断片化が起こっ" +"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" +"るかもしれません。" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "クエリキャッシュの空きメモリ量。" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "キャッシュのヒット数。" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "キャッシュに追加されたクエリの数。" + +#: server_status_variables.php:659 +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 "" +"新しいクエリをキャッシュするためにメモリを解放するべくキャッシュから削除され" +"たクエリの数。この情報はクエリキャッシュのサイズを調整するときに便利です。ク" +"エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" +"て削除するクエリを決めます。" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" +"シュしないことになっている) クエリの数。" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "キャッシュに登録されているクエリの数。" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "クエリキャッシュの総ブロック数。" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "フェイルセーフレプリケーションの状態 (未実装)。" + +#: server_status_variables.php:679 +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 "" +"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" +"デックスをよく確認してください。" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "参照テーブルで範囲検索をした結合の数。" + +#: server_status_variables.php:686 +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 "" +"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" +"(0 でない場合はテーブルのインデックスをよく確認してください)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" +"ん)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "最初のテーブルを全スキャンした結合の数。" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" +"動時からの合計)。" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" + +#: server_status_variables.php:717 +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 "" +"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" +"は sort_buffer_size システム変数の値を増やした方がよいでしょう。" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "範囲指定付きでソートが行われた回数。" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "ソート済の行数。" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "テーブルをスキャンしたときに実行されたソートの回数。" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "テーブルロックをすぐに取得できた回数。" + +#: server_status_variables.php:734 +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 "" +"テーブルロックをすぐに取得できずウェイトが発生した回数。この値が高く、パ" +"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" +"もだめならテーブルを分割するか、レプリケーションを利用してください。" + +#: server_status_variables.php:740 +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 "" +"スレッドキャッシュ内のスレッド数。キャッシュのヒット率は Threads_created/" +"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" +"大きくしてください。" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "現在開いている接続の数。" + +#: server_status_variables.php:748 +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 "" +"接続処理のために作成されたスレッドの数。Threads_created が大きい場合は " +"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" +"がない場合はふつうあまりパフォーマンスは向上しません)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "スレッドキャッシュのヒット割合 (計算値)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "スリープしていないスレッドの数。" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "変数の設定に失敗しました" @@ -12308,27 +12277,27 @@ msgstr "外部キー制約" msgid "Tracking report for table `%s`" msgstr "テーブル `%s` に対しての追跡レポート" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL 文が実行されました。" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12336,121 +12305,121 @@ msgstr "" "作成された一時的なデータベースを使用してダンプを実行することができます。これ" "を実行できる特権を持っていることを確認してください。" -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" "さい。" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "世代 %s のスナップショット (SQL コード)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドは正常に削除されました" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "クエリエラー" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドは正常に削除されました" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "追跡しているコマンド" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "データが存在しません" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "日時" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "データ定義コマンド" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "データ操作コマンド" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL 文のダンプ (ファイルでダウンロード)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL 文のダンプ" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL 文を実行" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "上の結果をエクスポートする %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "世代を表示する" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "%s への SQL コマンド追跡を非アクティブにする" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "すぐに非アクティブにする" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "%s への SQL コマンド追跡をアクティブにする" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "すぐにアクティブにする" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s に世代 %1$s を作成" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "追跡するデータ定義コマンド:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "追跡するデータ操作コマンド:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "世代を作成する" @@ -12602,11 +12571,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time は現在 %d 秒に設定されています。" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "スロークエリログ" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "スロークエリログが無効になっています。" @@ -12622,15 +12591,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries が「OFF」に設定されています。" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"{log_slow_queries} を「ON」に設定することで、スロークエリログが有効になりま" +"す。これは、パフォーマンスの悪いクエリの切り分けに役立つでしょう。" + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries が「OFF」に設定されています。" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "バージョン系統" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL サーバのバージョンが 5.1 未満です。" -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12638,21 +12625,21 @@ msgstr "" "アップグレードを推奨します。MySQL 5.1 はパフォーマンスが向上していますし、" "MySQL 5.5 であれば更に向上しています。" -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "現在のバージョン: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "マイナーバージョン" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "バージョン 5.1.30 (5.1 の 最初の安定版) 未満です。" -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12660,26 +12647,26 @@ msgstr "" "アップグレードを推奨します。最新バージョンの MySQL 5.1 はパフォーマンスが向上" "していますし、MySQL 5.5 であれば更に向上しています。" -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "バージョン 5.5.8 (5.5 の 最初の安定版) 未満です。" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "安定版 MySQL 5.5 へのアップグレードを推奨します。" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "ディストリビューション" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "ご使用のバージョンはソースからコンパイルされたもので、MySQL オフィッシャルの" "バイナリではありません。" -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12691,44 +12678,44 @@ msgstr "" "(RedHat、Debian/Ubuntu などのような) ディストリビューションのパッケージに対し" "ては多少異なる部分もあります。" -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" "バージョンコメント (version_comment) に 「source」という文字があります。" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "MySQL のマニュアルは、MySQL オフィッシャルのバイナリに対してだけ厳格になって" "います。" -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona ドキュメントは http://www.percona.com/docs/wiki/ にあります。" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" "バージョンコメント (version_comment) に 「percona」という文字があります。" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle ドキュメントは http://docs.drizzle.org/ にあります。" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "バージョンの文字列 (%s) が Drizzle のバージョン形態と一致しています。" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL 仕様" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL が、64 ビットのパッケージとしてコンパイルされていません。" -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12738,20 +12725,20 @@ msgstr "" "モリを十分活用できないでしょう。64 ビット版の MySQL の導入を検討してみてくだ" "さい。" -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "このホスト上の利用可能メモリ: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "クエリキャッシュが無効" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "クエリキャッシュが有効になっていません。" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12763,21 +12750,21 @@ msgstr "" "2 桁 MiB にして、{query_cache_type} を「ON」に設定してください。注:memcached を使用している場合は、この事象に関することは無視してください。" -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size が 0 に設定されているか、query_cache_type が「OFF」に設定さ" "れています。" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "クエリのキャッシュ方式" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "準最適キャッシュ方式です。" -#: libraries/advisory_rules.txt:157 +#: 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 The Pythian Group の記事 (英語)に詳" "しく記載されています。" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13202,11 +13189,11 @@ msgstr "" "全一時テーブルの内 %s%% がディスク上に展開されています。この値は、25%% 未満が" "いいと言われています。" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "一時テーブルがディスク上に展開される割合" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13224,7 +13211,7 @@ msgstr "" "internal-temporary-tables.html\">MySQL ドキュメントに詳しく記載されていま" "す。" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13233,17 +13220,17 @@ msgstr "" "ディスク書き込みを伴う一時テーブル割合:%s。この値は、1 時間当たり 1 未満がい" "いと言われています。" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM キーバッファのサイズ" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "キーバッファが初期化されていません。おそらく、MyISAM インデックスはキャッシュ" "されていません。" -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13251,21 +13238,21 @@ msgstr "" "お使いの MyISAM インデックスのサイズに合わせた {key_buffer_size} を設定してく" "ださい。最初の設定としては、64M からがいいでしょう。" -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size は 0 です。" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "使われていた MyISAM キーバッファの最大比率" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM キーバッファ(インデックスキャッシュ)の使用率が低いです。" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13275,7 +13262,7 @@ msgstr "" "でインデックスが削除されていないかよく確認してください。また、クエリあるいは" "インデックスの使用が想定されるものがないか確認してみてください。" -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13283,46 +13270,46 @@ msgstr "" "使われていた MyISAM キーバッファの最大比率: %s%%。この値は、95%% 以上がいいと" "言われています。" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "MyISAM キーバッファの使用比率" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "MyISAM キーバッファの使用比率: %s%%。この値は、95%% 以上がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "メモリから読み込まれるインデックスの比率" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "MyISAM キーバッファを使用するインデックスの比率が低いです。" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "{key_buffer_size} を増やす必要があるかもしれません。" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "メモリから読み込まれるインデックスの比率: %s%%。この値は、95%% 以上がいいと言" "われています。" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "テーブルを開く割合" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "テーブルを開く割合が高いです。" -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13330,18 +13317,18 @@ msgstr "" "テーブルを開くというのは、負荷がかかるディスクへの入出力を行うということで" "す。{table_open_cache} を大きくすることで、これを緩和できることがあります。" -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "テーブルを開く割合:%s。この値は、1 時間当たり 10 未満がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "開いているファイルの上限に対する比率" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13349,7 +13336,7 @@ msgstr "" "開いているファイルの数が最大になりつつあります。エラー「開いているファイルが" "多すぎます」になるかもしれません。" -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13357,7 +13344,7 @@ msgstr "" "{open_files_limit} 増やすことを検討してください。open_files_limit を変更して" "再起動した場合は、エラーログを確認するようにしてください。" -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13365,59 +13352,59 @@ msgstr "" "開いているファイルの数は上限に対して %s%% です。この値は、85%% 未満がいいと言" "われています。" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "開いているファイルの割合" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "開いているファイルの割合が高いです。" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "開いているファイルの割合:%s。この値は、1 時間当たり 5 未満がいいと言われてい" "ます。" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "速やかに行われたテーブルロックの比率" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "テーブルロック要求に対して速やかに取得できないことが多いです。" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "テーブルの最適化もしくは InnoDB のロック待ち時間の減少、のいずれかもしくは両" "方を行ってください。" -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "速やかに行われたテーブルロック: %s%%。この値は、95%% 以上がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "テーブルロックの待つ割合" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "テーブルロックの待つ割合: %s。この値は、1 時間当たり 1 未満がいいと言われてい" "ます。" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "スレッドキャッシュ" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13425,45 +13412,45 @@ msgstr "" "スレッドキャッシュが無効になっているため、MySQL への新たな接続に対してのオー" "バヘッドが大きくなります。" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "{thread_cache_size} に 0 より大きな値を設定して、スレッドキャッシュを有効にし" "てください。" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "スレッドキャッシュは 0 に設定されています。" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "スレッドキャッシュのヒット率" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "スレッドキャッシュが効果的に機能していません。" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "{thread_cache_size} を増やしてください。" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "スレッドキャッシュのヒット率: %s%%。この値は、80%% 以上がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "起動が遅いスレッド" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "起動が遅いスレッドが多く存在します。" -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13471,22 +13458,22 @@ msgstr "" "一般的に、比較的単純な操作なわりには、システム全体に負荷がかかっている状態で" "す。お使いのシステムの負荷を入念にモニタしてみてください。" -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s スレッドの開始に %s 秒以上かかっています。この値は、0 がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "遅い起動時間" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads が 2 秒を超えています。" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13494,16 +13481,16 @@ msgstr "" "起動が遅いスレッドなくなるように、slow_launch_time を 1 秒か 2 秒に設定してく" "ださい。" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time は %s に設定されています。" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "使用されている接続の比率" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13511,7 +13498,7 @@ msgstr "" "使用されている接続数が max_connections の値に達すると、閉じられてしまう接続が" "発生します。" -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13522,7 +13509,7 @@ msgstr "" "コード上において、データベースが適切に閉じられているかも確認してみてくださ" "い。" -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13530,15 +13517,15 @@ msgstr "" "Max_used_connections は max_connections の %s%% になっています。この値は、80%" "% 未満がいいと言われています。" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "中断された接続の比率" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "中断された接続が多いです。" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. この記事 (英語) は、原因を突き止めるのに参" "考になるかもしれません。" -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "全接続のうち %s%% が中断されています。この値は、1%% 未満がいいと言われていま" "す。" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "中断された接続の割合" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13569,15 +13556,15 @@ msgstr "" "中断された接続の割合は %s です。この値は、1 時間当たり 1 未満がいいと言われて" "います。" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "クライアントによって中断された比率" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "中断されたクライアントが多いです。" -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13588,45 +13575,45 @@ msgstr "" "を適切に閉じていないコードが原因と考えられます。ネットワークとコードを確認し" "てください。" -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "全クライアントの内 %s%% が中断されています。この値は、2%% 未満がいいと言われ" "ています。" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "中断されたクライアントの割合" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "中断されたクライアントの割合: %s。この値は、1 時間当たり 1 未満がいいと言われ" "ています。" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB が無効?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB を有効にできていません。" -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "一般的に、InnoDB はテーブル用のエンジンとして適切な選択となりえます。" -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb は 'value' に設定されています。" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB のログサイズ" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13634,7 +13621,7 @@ msgstr "" "InnoDB のログサイズが適切ではありません。この値は InnoDB バッファプールと関連" "があります。" -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13658,7 +13645,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">こちらのブログ記事 (英語) もご覧になってください。" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13668,15 +13655,15 @@ msgstr "" "きさに対して %s%% です。この値は、20%% 未満にしないほうがいいと言われていま" "す。" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "InnoDB の最大ログサイズ" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB ログファイルの大きさが、十分にありません。" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13701,20 +13688,20 @@ msgstr "" "innodblogfilesize-proper-way.html\">こちらのブログ記事 (英語) もご覧くだ" "さい。" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "使用されている InnoDB のログサイズの総計は、%s MiB です。" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB のバッファプールの大きさ" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "ご使用されている InnoDB のバッファプールはかなり小さいです。" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13740,7 +13727,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/\">こち" "らの記事 (英語) も参考にしてください。" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13753,15 +13740,15 @@ msgstr "" "用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、" "ご使用のシステムではこの設定で十分かもしれません。" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM における同時挿入" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "concurrent_insert に 1 を設定して、同時挿入を有効にしてください。" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL ドキュメントもご覧になってください。" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています。" +#~ msgid "KiB sent since last refresh" +#~ msgstr "更新間隔中の送信量 (単位:KiB)" + +#~ msgid "KiB received since last refresh" +#~ msgstr "更新間隔中の受信量 (単位:KiB)" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "サーバのトラフィック (単位:KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "更新間隔中の接続数" + +#~ msgid "Questions since last refresh" +#~ msgstr "更新間隔中の問い合わせ数" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "問い合わせ数 (サーバで実行された命令文)" + +#~ msgid "Runtime Information" +#~ msgstr "ランタイム情報" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "行数:" + +#~ msgid "Refresh rate: " +#~ msgstr "再描画間隔: " + +#~ msgid "Run analyzer" +#~ msgstr "事象の解析をする" + #~ msgid "Show more actions" #~ msgstr "他の操作を表示します" diff --git a/po/ka.po b/po/ka.po index 54c5d189fa..23c157091a 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Georgian " -"\n" -"Language: ka\n" +"Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -44,7 +44,7 @@ msgstr "" msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -74,21 +74,21 @@ msgstr "ძებნა" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "გადასვლა" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "აღწერილობა" @@ -111,17 +111,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "კომენტარი მონაცემთა ბაზაში: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,12 +135,12 @@ msgstr "ცხრილის კომენტარები" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "სვეტები" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -158,11 +158,11 @@ msgstr "სვეტები" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "ტიპი" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -174,11 +174,11 @@ msgstr "ტიპი" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -189,11 +189,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "სტანდარტული" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -202,7 +202,7 @@ msgstr "სტანდარტული" msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -215,7 +215,7 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -233,12 +233,12 @@ msgstr "კომენტარები" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "არა" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -261,8 +261,8 @@ msgstr "არა" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "დიახ" @@ -315,7 +315,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "ცხრილი" @@ -335,7 +335,7 @@ msgstr "ზომა" msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -343,7 +343,7 @@ msgstr "in use" msgid "Creation" msgstr "შეიქმნა" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -351,7 +351,7 @@ msgstr "შეიქმნა" msgid "Last update" msgstr "უკანასკნელი განახლება" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -404,7 +404,7 @@ msgstr "ნანახი ცხრილები" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -413,17 +413,17 @@ msgstr "მონაცემთა ბაზა" msgid "Last version" msgstr "Create relation" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "შეიქმნა" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "სტატუსი" @@ -438,7 +438,7 @@ msgstr "მოქმედება" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "ჩვენება" @@ -454,11 +454,11 @@ msgstr "" msgid "Drop" msgstr "Drop" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -466,11 +466,11 @@ msgstr "" msgid "Versions" msgstr "ვერსია" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" @@ -539,47 +539,47 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "წერტილის დამატება" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -587,15 +587,15 @@ msgstr "" msgid "Add a linestring" msgstr "ველის დამატება" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "შიდა ქსელის დამატება" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -726,8 +726,9 @@ msgstr "Other core settings" msgid "Database server" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "სერვერი" @@ -748,7 +749,7 @@ msgstr "ოქმის ვერსია" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "მომხმარებელი" @@ -1011,12 +1012,12 @@ msgstr "პრივილეგიების გადატვირთვ msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1026,15 +1027,15 @@ msgstr "" msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "გრაფიკული ტრაფიკის სქემა" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "" @@ -1045,13 +1046,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1066,56 +1068,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "სერვერის არჩევა" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "პროცესები" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "კავშირები" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "სტატისტიკის ჩევნება" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1123,220 +1087,225 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Query cache" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Query cache" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Query cache" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Log file count" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Buffer Pool" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "სულ" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Free pages" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "კავშირები" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "პროცესები" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "სპარსული" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "General relation features" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Rename database to" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap to grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "არაა" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1344,544 +1313,546 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ფაილის სახის შენახვა" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "ჩართულია" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "გათიშვა" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Other core settings" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Report title" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "ჩატვირთვა" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "მოთხოვნების წაკითხვა" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analyze" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-ის ახსნა" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "დრო" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "სულ" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profiling" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "ცხრილი" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "სიმბოლოთა ნაკრებები" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "ახალი ველის დამატება" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL მოთხოვნები" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "ცხრილების ჩვენების პარამეტრები" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "ფაილები" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "სულ" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "ჩატვირთვა" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "გადატვირთვა" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Could not load default configuration from: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "მოთხოვნის განახლება" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "დოკუმენტაცია" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "დეტალები..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Customization" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "ჩატვირთვა" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "პროცესები" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Rename database to" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Rename database to" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Copy database to" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "სიმბოლოთა ნაკრები" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Table must have at least one field." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "გამოიყენე ცხრილები" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "ახალი ველის დამატება" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Disable foreign key checks" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "ჩართულია" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "გათიშულია" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ძებნა" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL Query box" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL Query box" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "არჩევა" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-ის წაშლა" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "ახალი სერვერის დამატება" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL Query box" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL Query box" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "შეცვლა" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "Maximum execution time" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1890,220 +1861,225 @@ msgstr "" msgid "Save" msgstr "შენახვა" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "ძებნა" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Query results operations" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "ასლი" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s ველის დამატება" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "სვეტების სახელები" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Start" msgid "Show data row(s)" msgstr "Startup" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2111,32 +2087,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2144,96 +2120,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "მაი" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2241,78 +2217,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "დეკ" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2320,115 +2296,115 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2481,16 +2457,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "წამში" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "წუთში" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "საათში" @@ -2516,7 +2492,7 @@ msgstr "შრიფტის ზომა" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ზრდადობით" @@ -2525,7 +2501,7 @@ msgstr "ზრდადობით" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "კლებადობით" @@ -2643,7 +2619,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "წაშლა" @@ -2844,7 +2820,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Kill" @@ -2899,12 +2875,13 @@ msgstr "ყველას შემოწმება" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" @@ -2912,7 +2889,7 @@ msgstr "ექსპორტი" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2996,16 +2973,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -3017,21 +2994,21 @@ msgstr "ინდექსი არაა განსაზღვრული! #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -3041,13 +3018,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "კოლაცია" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "კომენტარი" @@ -3090,7 +3067,7 @@ msgstr "ხედო" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "სტრუქტურა" @@ -3163,36 +3140,37 @@ msgstr "მოვლენები" msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "მომხმარებელი" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "ბინარული ჟურნალი" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "რეპლიკაცია" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "ძრავები" @@ -3251,6 +3229,107 @@ msgstr "ცხრილების დათვლა" msgid "There are no recent tables" msgstr "There are no configured servers" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL მოთხოვნა" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Query cache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Threads" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "დროებითი მონაცემები" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Delayed inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Key cache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "დალაგება" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "ცხრილები" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "ფაილები" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Show slave status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Flush query cache" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB-ის მდგომარეობა" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Show statistics" +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." @@ -3345,7 +3424,7 @@ msgstr "ოპერატორი" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "მნიშვნელობა" @@ -3750,11 +3829,6 @@ msgstr "" msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL მოთხოვნა" - #: libraries/Util.class.php:710 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:292 @@ -3791,7 +3865,7 @@ msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "განახლება" @@ -3892,13 +3966,6 @@ msgstr "დაბეჭდვა" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "ცხრილები" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3943,63 +4010,63 @@ msgstr "" msgid "Check Privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6288,8 +6355,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" @@ -6987,10 +7054,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB-ის მდგომარეობა" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7657,18 +7720,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "ცხრილის სახელი" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7771,17 +7834,17 @@ msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "მხოლოდ მონაცემები" @@ -8206,8 +8269,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "ჰოსტი" @@ -8818,7 +8880,7 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "ცვლადი" @@ -9407,7 +9469,7 @@ msgstr "ატრიბუტები" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "ექსტრა" @@ -10094,7 +10156,7 @@ msgstr "პრეფიქსის დამატება მაგიდი msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10463,7 +10525,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "To select relation, click :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10545,41 +10607,41 @@ msgstr "Table %1$s has been created." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "pages" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ფაილების შემოტანა" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Export/Import to scale" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ახალი ინდექსის შექმნა" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "მომხმარებლის სახელი" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "რეკომენდებული" @@ -10707,15 +10769,11 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "ფაილები" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10799,7 +10857,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "სპარსული" @@ -10860,11 +10918,6 @@ msgstr "The privileges were reloaded successfully." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Show slave status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10995,889 +11048,176 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Query cache" - -#: server_status.php:659 -msgid "Threads" -msgstr "Threads" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "დროებითი მონაცემები" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Delayed inserts" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Key cache" - -#: server_status.php:664 -msgid "Joins" -msgstr "Joins" - -#: server_status.php:666 -msgid "Sorting" -msgstr "დალაგება" - -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Flush query cache" - -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 +#: server_status.php:122 #, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "ველების რაოდენობა" +msgid "Replication status" +msgstr "რეპლიკაცია" -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "განახლება" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "ფაილები" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "არ შეცვალო პაროლი" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Show open tables" - -#: server_status.php:914 -msgid "Filter by category..." +#: server_status.php:139 +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:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Show open tables" +#: server_status.php:149 +msgid "Received" +msgstr "მიღებულია" -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relations" +#: server_status.php:168 +msgid "Sent" +msgstr "გაიგზავნა" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "მოთხოვნის ტიპი" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" -#: server_status.php:966 +#: server_status.php:229 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:253 +msgid "Aborted" +msgstr "შეწყვეტილია" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "ბრძანება" + +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "ინფორმაცია" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Customize startup page" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Statements" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -#, fuzzy -msgid "Replication status" -msgstr "რეპლიკაცია" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "მიღებულია" - -#: server_status.php:1208 -msgid "Sent" -msgstr "გაიგზავნა" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "შეწყვეტილია" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "ბრძანება" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -#| msgid "Could not connect to MySQL server" -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "შემოტანილი ფაილების ფორმატი" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Key cache" -msgid "Thread cache hit rate (calculated value)" -msgstr "Key cache" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Startup" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "ახალი ველის დამატება" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1856 +#: server_status_monitor.php:544 #, fuzzy msgid "Monitor Instructions" msgstr "ინფორმაცია" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11886,7 +11226,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11894,18 +11234,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11913,11 +11253,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11925,95 +11265,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Rename database to" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "ცხრილების არჩევა" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ცხრილის არასწორი სახელი" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "ახალი სერვერის დამატება" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL მოთხოვნები" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "სტატისტიკის ჩევნება" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ყველას მონიშნვა" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12021,7 +11361,7 @@ msgid_plural "%d seconds" msgstr[0] "წამში" msgstr[1] "წამში" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12029,6 +11369,629 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Customize startup page" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Statements" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "ფაილები" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "არ შეცვალო პაროლი" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Show open tables" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Show open tables" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relations" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +#| msgid "Could not connect to MySQL server" +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "შემოტანილი ფაილების ფორმატი" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Key cache" +msgid "Thread cache hit rate (calculated value)" +msgstr "Key cache" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12700,151 +12663,151 @@ msgstr "Foreign key limit" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "შეცდომების იგნორირება" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "მონაცემთა ბაზები არაა" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Deactivate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Create relation" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Create relation" @@ -12990,13 +12953,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "SQL Query box" msgid "Slow query logging" msgstr "SQL Query box" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13012,131 +12975,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "ცხრილების არჩევა" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Create relation" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "სპარსული" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "You should upgrade to %s %s or later." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "აღწერილობა" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-ის სიმბოლოთა ნაკრები" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Query cache" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "სერვერი არ პასუხობს" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13144,23 +13117,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Query cache" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Query cache" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s table(s)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13560,268 +13533,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "SQL მოთხოვნების ჩვენება" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "ცხრილის შექმნა" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "The current number of pending writes." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "The number of pending log file fsyncs." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Create new table on database %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sort buffer size" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sort buffer size" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sort buffer size" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Key cache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Key cache" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Key cache" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "სერვერი არ პასუხობს" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13829,49 +13802,49 @@ msgid "" "launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Persistent connections" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Persistent connections" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Allows creating temporary tables." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13986,17 +13959,17 @@ msgid "" "it should not be below 20%%" msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14010,24 +13983,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14042,7 +14015,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14051,31 +14024,51 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "max. concurrent connections" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "სერვერის არჩევა" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "ველების რაოდენობა" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "განახლება" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "მოთხოვნის ტიპი" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/kk.po b/po/kk.po index 1eab8cc993..9ec79de371 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-06-01 09:41+0200\n" "Last-Translator: Berikbol Zharylkassyn \n" "Language-Team: none\n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -50,7 +50,7 @@ msgstr "" msgid "Search" msgstr "Іздеу" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -80,21 +80,21 @@ msgstr "Іздеу" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Өту" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Индекс атауы" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Сипаттама" @@ -117,17 +117,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s дерекқоры құрылды." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Дерекқорына түсініктеме: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Кестеге түсініктеме:" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -141,12 +141,12 @@ msgstr "Кестеге түсініктеме:" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Бағана" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -164,11 +164,11 @@ msgstr "Бағана" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Типі" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -180,11 +180,11 @@ msgstr "Типі" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Бос/Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -195,11 +195,11 @@ msgstr "Бос/Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Келісім бойынша" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -208,7 +208,7 @@ msgstr "Келісім бойынша" msgid "Links to" msgstr "Сілтемелер" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -221,7 +221,7 @@ msgstr "Сілтемелер" msgid "Comments" msgstr "Түсініктеме" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -239,12 +239,12 @@ msgstr "Түсініктеме" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Жоқ" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -267,8 +267,8 @@ msgstr "Жоқ" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Иә" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Кесте" @@ -341,7 +341,7 @@ msgstr "Мөлшері" msgid "in use" msgstr "қолданыста" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "қолданыста" msgid "Creation" msgstr "Құру" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "Құру" msgid "Last update" msgstr "Соңғы жаңартылым" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -409,7 +409,7 @@ msgstr "Қадағаланатын кестелер" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Дерекқор" @@ -417,17 +417,17 @@ msgstr "Дерекқор" msgid "Last version" msgstr "Соңғы нұсқа" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Құрылған" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Жаңартылған" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Күй" @@ -442,7 +442,7 @@ msgstr "Әрекет" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Көрсету" @@ -458,11 +458,11 @@ msgstr "Кесте үшін мәліметтерді бақылауды тоқт msgid "Drop" msgstr "Жою" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "қосулы" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "өшірулі" @@ -470,11 +470,11 @@ msgstr "өшірулі" msgid "Versions" msgstr "Нұсқа" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" @@ -542,45 +542,45 @@ msgstr "OpenStreetMaps негізгі қабат ретінде қолданың msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Нүкте %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Нүкте қосу" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Сызық" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Сыртқы пішін" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Ішкі пішін" @@ -588,15 +588,15 @@ msgstr "Ішкі пішін" msgid "Add a linestring" msgstr "Сызықты қосу" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Көпбұрыш" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Көпбұрышты қосу" @@ -728,8 +728,9 @@ msgstr "" msgid "Database server" msgstr "" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -748,7 +749,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -968,12 +969,12 @@ msgstr "Артықшылықтардың қайта қосылуы" msgid "Removing Selected Users" msgstr "Таңдалынған қолдаушыларды жою" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Жабу" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -983,15 +984,15 @@ msgstr "Жабу" msgid "Edit" msgstr "Өзгерту" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Трафиктің графикалық қорытындысы" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Қосылыстар мен процесстердің графикалық құрытындысы" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Сұраныстардың графикалық қорытындысы" @@ -1002,13 +1003,14 @@ msgstr "Статикалық мәлiметтер" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Барлығы" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Басқа" @@ -1023,49 +1025,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB соңғы жаңартылған сәттен бастап жіберілді." - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB соңғы жаңартылған сәттен бастап қабылданды." - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Сервер трафигі (KiB)" - -#: js/messages.php:79 -#, fuzzy -msgid "Connections since last refresh" -msgstr "Соңғы жаңартылған сәттен бастап қосылыстар." - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Процесстер" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Соңғы жаңартылған сәттен басталған сұрақтар." - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Сұраныстардың статистикасы" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1073,197 +1040,202 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Жүйелiк жад" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Үстемелеу жүйесі" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Бос жад" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Қолданылудағы жад" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процесстер" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Байт" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d Кесте(лер)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Баптау" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Графикті жою" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Аты мен қол таңбасын өзгерту" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Торға график қосу" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Жоқ" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "Айнымалылар general_log және slow_query_log қосулы." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "Айнымалы general_log қосулы." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "Айнымалы slow_query_log қосулы." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "Айнымалы slow_query_log және general_log өшірілген." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылмаған." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылды." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1271,449 +1243,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Қосу %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Өшіру %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time орнату %d сек" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Баптауын өзгерту" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "График тақырыбы" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Бiрлiк" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Журналдарды талдау" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Журнал кестесіне өту" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Мәліметтер жоқ" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Уақыт" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Толық уақыт:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Кесте" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "График" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Графикті өңдеу" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Топтама" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Сүзгі" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Топтасқан қатарлар сомасы" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Барлығы:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Журналдардың жүктелуі" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Мәселе" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Ұсыныс" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Дәлелдеу" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Қолданған айнымалы / формула" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Жүктелуде" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Бағананың жойылуы" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Жарайды" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Дерекқорының қайта қосылуы" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Кестені қою" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Индекстерді жасыру" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Индекстерді көрсету" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Сыртқы кілттерді тексерілісі:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Қосулы)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Өшірулі)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Іздеу" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Іздеу нәтижелерін көрсету" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Көру" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Жою" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s баған мәні" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Жаңа баған мәні" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Әрбір мәнді жеке өріске енгізіңіз" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d мән(ін)(дерін) қосу" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Сұраныс өрісін жасыру" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Сұраныс өрісін көрсету" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Өзгерту" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Сұраныстың орындалу уақыты" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1722,193 +1696,198 @@ msgstr "" msgid "Save" msgstr "Сақтау" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Iздестiрудi үлкейту" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Сұраныс нәтижелері" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Көшіру" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Бағаналар қосу" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Сыртқы кілтті таңдаңыз" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Сұрыптау үшін шертіңіз" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Сілтемеге өту" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Баған атын көшіру" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Мәліметтер қатарын(ларын) көрсету" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Шығару" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Тағы" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Бәрін көрсету" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Индекстерді жасыру" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1916,266 +1895,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Дайын" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Бүгін" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Қаңтар" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Ақпан" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Наурыз" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Сәуір" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Мамыр" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Маусым" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Шілде" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Тамыз" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Қазан" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Қараша" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Жел" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Жұма" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Апт" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Сағат" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Минут" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Секунд" @@ -2225,16 +2204,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "секундке" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "Минутқа" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "сағатқа" @@ -2261,7 +2240,7 @@ msgstr "Қарiп өлшемi" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Өсу бойынша" @@ -2270,7 +2249,7 @@ msgstr "Өсу бойынша" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Кему бойынша" @@ -2386,7 +2365,7 @@ msgstr "Кесте %s үшін сәйкестіктерді өшіреміз б #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Жою" @@ -2556,7 +2535,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2611,12 +2590,13 @@ msgstr "Барлығын белгілеу" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" @@ -2624,7 +2604,7 @@ msgstr "Экспорт" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2705,16 +2685,16 @@ msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін е msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2726,21 +2706,21 @@ msgstr "Индексі анықталмаған!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2750,13 +2730,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Салыстыру" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Пікірлеу" @@ -2799,7 +2779,7 @@ msgstr "Түр" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2872,34 +2852,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Репликация" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2947,6 +2928,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3038,7 +3117,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3423,11 +3502,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3462,7 +3536,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3558,13 +3632,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3605,59 +3672,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5699,8 +5766,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6309,10 +6376,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6958,16 +7021,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7063,17 +7126,17 @@ msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Тек құрылымы ғана" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Тек мәліметтер ғана" @@ -7460,8 +7523,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7970,7 +8032,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8474,7 +8536,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9137,7 +9199,7 @@ msgstr "Кестеге префикс қосу" msgid "Check tables having overhead" msgstr "Ықшамдауды қажет ететіндерді белгілеу" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9470,7 +9532,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9536,31 +9598,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9676,15 +9738,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9766,7 +9824,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9823,10 +9881,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9952,854 +10006,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10808,7 +10171,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10816,18 +10179,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10835,11 +10198,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10847,92 +10210,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11469,142 +11439,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11746,13 +11716,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time орнату %d сек" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Сұраныс өрісін көрсету" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -11768,129 +11738,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "Айнымалы slow_query_log қосулы." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Series" msgid "Release Series" msgstr "Топтама" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Current settings" msgid "Current version: %s" msgstr "Ағымдағы баптау" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Versions" msgid "Minor Version" msgstr "Нұсқа" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Сипаттама" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query execution time" msgid "Query cache disabled" msgstr "Сұраныстың орындалу уақыты" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." msgstr "Бақылауды белсендендірілу" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11898,23 +11880,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query execution time" msgid "Query caching method" msgstr "Сұраныстың орындалу уақыты" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query execution time" msgid "Suboptimal caching method." msgstr "Сұраныстың орындалу уақыты" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12280,278 +12262,278 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +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:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Replace table prefix" msgid "Rate of table open" msgstr "Кестениң префиксін ауыстыру" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Replace table prefix" msgid "Rate of open files" msgstr "Кестениң префиксін ауыстыру" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Бақылауды белсендендірілу" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Бақылауды белсендендірілу" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Бақылауды белсендендірілу" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "slow_launch_time is set to %s" msgstr "long_query_time орнату %d сек" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12676,20 +12658,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12704,7 +12686,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12713,29 +12695,45 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "concurrent_insert is set to 0" msgid "MyISAM concurrent inserts" msgstr "Паралельді_кірістірмелерді анықтау" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "concurrent_insert is set to 0" msgid "Enable concurrent_insert by setting it to 1" msgstr "Паралельді_кірістірмелерді анықтау" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "Паралельді_кірістірмелерді анықтау" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB соңғы жаңартылған сәттен бастап жіберілді." + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB соңғы жаңартылған сәттен бастап қабылданды." + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Сервер трафигі (KiB)" + +#, fuzzy +#~ msgid "Connections since last refresh" +#~ msgstr "Соңғы жаңартылған сәттен бастап қосылыстар." + +#~ msgid "Questions since last refresh" +#~ msgstr "Соңғы жаңартылған сәттен басталған сұрақтар." + #~ msgid "phpMyAdmin is more friendly with a frames-capable browser." #~ msgstr "" #~ "PhpMyAdmin мен жұмыс істеу үшін, фреймдерді қолдайтын браузер " diff --git a/po/ko.po b/po/ko.po index da372e1ba0..5cecdb0400 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-21 15:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Korean 설정메뉴에" "서 설정을 초기화해 주세요." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "질의 캐시 효율" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "질의 캐시 사용량" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "질의 캐시 사용됨" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "시스템 CPU 사용량" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "시스템 메모리" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "시스템 스왑" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "평균 부하" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "전체 메모리" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "캐시된 메모리" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "버퍼 메모리" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "사용가능 메모리" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "사용된 메모리" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "전체 스왑" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "캐시된 스왑" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "사용된 스왑" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "사용가능 스왑" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "바이트 보냄" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "연결 수" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "프로세스" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d개 테이블(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "질의" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "소통량" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "설정" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "차트 삭제" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "타이틀과 레이블 편집" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "차트에 그리드 추가" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "없음" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "모니터링 재개" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "모니터링 정지" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log 와 slow_query_log 가 활성화 되었습니다." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log 가 활성화 되었습니다." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "슬로우 쿼리 로그가 활성화 되었습니다." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "슬로우 쿼리 로그와 일반 로그가 비활성화 되었습니다." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되지 않았습니다." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되었습니다." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1297,12 +1270,12 @@ msgstr "" "을 0-2초로 설정하는 것을 권장합니다. 사용하는 시스템에 따라 적절하게 설정하" "십시오." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time이 %d초로 설정되였습니다." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1310,30 +1283,30 @@ msgstr "" "다음 설정은 서버 전체에 적용되고 서버 재기동시 기본 설정으로 초기화됩니다:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "로그 출력을 %s로 설정" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s 사용가능" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s 사용안함" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time을 %d초로 설정합니다" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1341,53 +1314,53 @@ msgstr "" "변수들을 변경할 수 없습니다. root로 로그인하거나 데이터베이스 관리자에게 문의" "하십시오." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "설정 변경" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "차트 제목" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "차이" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "%s로 구분" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "단위" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "느린 로그로부터" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "일반 로그로부터" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "로그 분석중" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "로그를 읽고 분석합니다. 이 작업은 시간이 걸릴 수 있습니다." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "요청 취소" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1396,7 +1369,7 @@ msgstr "" "이 열은 함께 그룹화된 동일한 질의의 양을 보여줍니다. 그러나 질의 자체만으로 " "그룹화하기 때문에, 시작 시간 등의 질의에 대한 다른 특성은 다를 수 있습니다." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1405,98 +1378,98 @@ msgstr "" "INSERT 쿼리들만 선택되었기 때문에, 입력하는 데이터에 상관없이 같은 테이블을 " "대상으로 하는 쿼리들끼리 또 분류되었습니다." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "로그자료가 로드되었습니다. 쿼리들이 실행되었던 기간:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "로그 테이블로 이동" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "자료가 없습니다" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "로그가 분석되었습니다. 하지만 해당 기간내에는 자료가 없습니다." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "분석중…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "SQL 해석" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "시간" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "전체 시간:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "프로파일링 결과" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "테이블" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "차트" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "차트 편집" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "시리즈" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "로그 테이블의 필터 옵션" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "필터" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "단어/정규식에 의한 필터 질의:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "그룹 쿼리, WHERE 절 변수 데이터를 무시합니다" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "그룹화된 행의 합계:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "전체:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "로그를 불러오는 중" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "모니터링 리프리쉬가 실패하였습니다" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1506,252 +1479,254 @@ msgstr "" "의 경우 세션이 만료되었기 때문입니다.페이지를 다시 로드하고 새로 인증받는 것" "이 도움이 될것입니다." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "페이지 새로고침" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "적용된 행:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "구성 파일을 분석할 수 없습니다. 유효한 JSON 코드가 아닙니다." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. 기본 설정으로 적용중…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "모니터 설정 가져오기" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "가져올 파일을 선택해 주시기 바랍니다" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "질의 분석" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "조언 시스템" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "가능한 성능 문제" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "이슈" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "추천" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "규칙 세부 사항" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "인증" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "사용된 변수 / 수식" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "테스트" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "취소" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "불러오는 중" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "요청을 처리중입니다" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "요청 처리중 에러가 발생했습니다" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "열을 삭제하고 있습니다" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "기본 키를 추가하고 있습니다" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "확인" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "클릭하면 이 알림을 받지 않습니다" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "데이터베이스 이름을 변경중입니다" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "데이터베이스를 다시 불러오기" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "데이터베이스를 복사중입니다" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "언어를 변경하고 있습니다" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "테이블은 적어도 1개 이상의 컬럼이 있어야 합니다" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "테이블 삽입" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "인덱스 숨기기" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "인덱스 보이기" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "외래 키(foreign key) 체크 사용 안함" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(사용함)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(사용안함)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "검색중" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "검색 결과 숨기기" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "검색 결과 보이기" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "보기" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "삭제중" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET 수정" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "\"%s\" 열의 값" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "새로운 열의 값" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "각각의 필드에 값을 입력하세요" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d 값 추가" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "참고: 파일에 여러 테이블이 포함되어 있다면, 하나로 결합됩니다" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "질의 상자 숨기기" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "질의 상자 보이기" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "선택된 행이 없습니다" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "변경" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "질의 실행 시간" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d는 올바른 행번호가 아닙니다." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1760,209 +1735,214 @@ msgstr "%d는 올바른 행번호가 아닙니다." msgid "Save" msgstr "저장" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "검색 조건 숨기기" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "추가 검색" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "각 포인트는 데이터 행을 나타냅니다." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "두 개의 열 선택" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "두 개의다른 열 선택" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "질의 결과" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy msgid "Data point content" msgstr "테이블 설명" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "무시" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "복사" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy msgid "Add columns" msgstr "필드 추가하기" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "열(칼럼) 이름" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "행 업데이트" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mo" msgid "More" msgstr "월" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "모두 보기" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "인덱스 숨기기" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1970,28 +1950,28 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "데이터베이스가 없습니다" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "완료" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1999,149 +1979,149 @@ msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "오늘" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "1월" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "2월" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "3월" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "4월" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "5월" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "6월" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "7월" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "8월" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "9월" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "10월" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "11월" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "12월" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "일요일" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "월요일" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "목요일" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "금요일" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2149,97 +2129,97 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "주" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "시" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "분" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "초" @@ -2290,16 +2270,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2325,7 +2305,7 @@ msgstr "글꼴 크기" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "오름차순" @@ -2334,7 +2314,7 @@ msgstr "오름차순" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "내림차순" @@ -2448,7 +2428,7 @@ msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까? #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "삭제" @@ -2628,7 +2608,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Kill" @@ -2684,12 +2664,13 @@ msgstr "모두 체크" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" @@ -2697,7 +2678,7 @@ msgstr "내보내기" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2784,16 +2765,16 @@ msgstr "업로드 파일을 읽을 수 없습니다." msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2807,21 +2788,21 @@ msgstr "인덱스가 설정되지 않았습니다!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "인덱스" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinality" @@ -2831,13 +2812,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "데이터정렬방식" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "설명" @@ -2880,7 +2861,7 @@ msgstr "뷰" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "구조" @@ -2953,37 +2934,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "사용자" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "바이너리" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "복제" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3029,6 +3011,108 @@ msgstr "테이블이 없습니다" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL 질의" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "질의 종류" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "확장된 inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "테이블 수" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "필드" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "테이블 보기" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3122,7 +3206,7 @@ msgstr "테이블 작업" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "값" @@ -3524,11 +3608,6 @@ msgstr "" msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL 질의" - #: libraries/Util.class.php:710 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:292 @@ -3563,7 +3642,7 @@ msgid "Create PHP Code" msgstr "PHP 코드 보기" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "다시 보기" @@ -3660,13 +3739,6 @@ msgstr "인쇄" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "테이블 수" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3708,11 +3780,11 @@ msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." msgid "Check Privileges" msgstr "사용권한 검사" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "설정 파일을 읽는데 실패했습니다." -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3720,12 +3792,12 @@ msgstr "" "일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십" "시오." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "기본 설정을 가져올 수 없습니다: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3736,38 +3808,38 @@ msgid "" msgstr "" "환경설정 파일에 $cfg['PmaAbsoluteUri'] 변수가 정의되어야 합니다!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 인증 방식이 제대로 설정이 되어 있지 않습니다." -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "어떤 공격을 받고있을 가능성이 있습니다." -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다." @@ -5893,8 +5965,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "사용자명:" @@ -6553,10 +6625,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7215,18 +7283,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "테이블명" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7328,17 +7396,17 @@ msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "구조만" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "구조와 데이터 모두" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "데이터만" @@ -7752,8 +7820,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "호스트" @@ -8279,7 +8346,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "변수" @@ -8832,7 +8899,7 @@ msgstr "보기" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "추가" @@ -9526,7 +9593,7 @@ msgstr "테이블에 접두사 추가" msgid "Check tables having overhead" msgstr "오버헤드를 가진 테이블들을 체크" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -9883,7 +9950,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9964,39 +10031,39 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "사용법(량)" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "파일 가져오기" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "새 인덱스 만들기" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "사용자명" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10116,16 +10183,11 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "필드" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10209,7 +10271,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "PHP 버전" @@ -10270,10 +10332,6 @@ msgstr "권한을 다시 로딩했습니다." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10405,877 +10463,171 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" -msgstr "" - -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "질의 종류" - -#: server_status.php:659 -msgid "Threads" -msgstr "" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "" - -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "확장된 inserts" - -#: server_status.php:663 -msgid "Key cache" -msgstr "" - -#: server_status.php:664 -msgid "Joins" -msgstr "" - -#: server_status.php:666 -msgid "Sorting" -msgstr "" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "테이블 보기" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "런타임 정보" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of columns" -msgid "Number of data points: " -msgstr "컬럼수" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "암호를 변경하지 않음" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "테이블 보기" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "테이블 보기" - -#: server_status.php:930 -#, fuzzy -msgid "Related links:" -msgstr "테이블 작업" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "질의 종류" - -#: server_status.php:966 -#, fuzzy -msgid "Instructions" -msgstr "함수" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "명세" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "" -#: server_status.php:1185 +#: server_status.php:139 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:1191 +#: server_status.php:149 msgid "Received" msgstr "받음" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "보냄" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "최대 동시 연결" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "커맨드" -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "연결을 닫지 않고 클라이언트가 종료되어서 실패한 연결의 숫자" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL 서버에 연결 실패한 횟수" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "MySQL 서버에 연결 시도한 횟수" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 +#: server_status_advisor.php:29 #, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "파일 문자셋:" +msgid "Instructions" +msgstr "함수" -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 +#: server_status_advisor.php:35 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." +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." msgstr "" -#: server_status.php:1600 +#: server_status_advisor.php:41 msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" +"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.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 +#: server_status_advisor.php:48 msgid "" -"Percentage of physical writes compared to write requests (calculated value)" +"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.php:1604 +#: server_status_advisor.php:56 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." +"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.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "트래킹이 활성화되어 있지 않습니다." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "토" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "필드 추가하기" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "컬럼 추가/삭제" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11284,7 +10636,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11292,18 +10644,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11311,11 +10663,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11323,99 +10675,714 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "데이터베이스 이름 변경" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy msgid "Select series:" msgstr "모두 선택" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "새 사용자 추가" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL 질의" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "행(레코드) 통계" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy msgid "Selected time range:" msgstr "모두 선택" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "질의 종류" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 초" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 분" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "명세" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "암호를 변경하지 않음" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "테이블 보기" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "테이블 보기" + +#: server_status_variables.php:133 +#, fuzzy +msgid "Related links:" +msgstr "테이블 작업" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "연결을 닫지 않고 클라이언트가 종료되어서 실패한 연결의 숫자" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL 서버에 연결 실패한 횟수" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "MySQL 서버에 연결 시도한 횟수" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "파일 문자셋:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "트래킹이 활성화되어 있지 않습니다." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11995,151 +11962,151 @@ msgstr "외래키 제약" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "트래킹이 활성화되었습니다." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "트래킹이 활성화되었습니다." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL 문장 실행됨" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "질의 오류" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "데이터베이스가 없습니다" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "데이터" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL 덤프(파일 다운로드)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL 덤프" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL 실행" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "버전 보기" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "지금 비활성화" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "지금 비활성화" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "지금 활성화" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "지금 활성화" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "서버 버전" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "서버 버전" @@ -12282,12 +12249,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time이 %d초로 설정되였습니다." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL 질의" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12305,129 +12272,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time이 %d초로 설정되였습니다." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time이 %d초로 설정되였습니다." + +#: libraries/advisory_rules.txt:100 #, fuzzy msgid "Release Series" msgstr "모두 선택" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "서버 버전" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "PHP 버전" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "%s를 %s 이상으로 업그레이드 하십시오" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "설명" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL 문자셋" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "질의 종류" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "서버 응답이 없습니다" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12435,21 +12414,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "질의 종류" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "질의 종류" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s개 테이블 " -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12830,292 +12809,292 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "SQL 질의" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "SQL 질의" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "SQL 질의" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "SQL 질의" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "새 페이지 만들기" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "파일 문자셋:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "파일 문자셋:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "파일 문자셋:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "파일 문자셋:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "질의 종류" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "트래킹이 활성화되어 있지 않습니다." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "트래킹이 활성화되어 있지 않습니다." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "트래킹이 활성화되어 있지 않습니다." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time이 %d초로 설정되였습니다." -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time이 %d초로 설정되였습니다." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "연결 수" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "연결 수" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "임시테이블 생성 허용." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13242,20 +13221,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13270,7 +13249,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13279,25 +13258,56 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB가 마지막 새로고침 이후로 전송되었습니다." + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB를 마지막 새로고침 이후로 받았습니다." + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "서버 전송량(KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "마지막 새로고침 이후 연결 수" + +#~ msgid "Questions since last refresh" +#~ msgstr "마지막 새로고침 이후 Questions" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions(서버에 의해 실행된 문장)" + +#~ msgid "Runtime Information" +#~ msgstr "런타임 정보" + +#, fuzzy +#~| msgid "Number of columns" +#~ msgid "Number of data points: " +#~ msgstr "컬럼수" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "질의 종류" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/lt.po b/po/lt.po index 9ba1fc8dd1..3c448bd96a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:59+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Lithuanian " -"\n" -"Language: lt\n" +"Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" "100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Paieška" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Vykdyti" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Indekso pavadinimas" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Paaiškinimas" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Duomenų bazės komentaras: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Lentelės komentarai" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Stulpelis" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipas" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipas" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Nutylint" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Nutylint" msgid "Links to" msgstr "Sąryšis su" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Komentarai" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Taip" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Lentelė" @@ -339,7 +339,7 @@ msgstr "Dydis" msgid "in use" msgstr "šiuo metu naudojama" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "šiuo metu naudojama" msgid "Creation" msgstr "Sukurta" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Sukurta" msgid "Last update" msgstr "Paskutinis atnaujinimas" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "Sekamos lentelės" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Duomenų bazė" @@ -416,17 +416,17 @@ msgstr "Duomenų bazė" msgid "Last version" msgstr "Paskutinė versija" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Sukurta" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Būsena" @@ -441,7 +441,7 @@ msgstr "Veiksmas" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Rodyti" @@ -457,11 +457,11 @@ msgstr "Ištrinti šios lentelės sekimo duomenis" msgid "Drop" msgstr "Šalinti" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktyvus" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "neaktyvus" @@ -469,11 +469,11 @@ msgstr "neaktyvus" msgid "Versions" msgstr "Versijos" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" @@ -541,47 +541,47 @@ msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Taškas" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Taškas %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Pridėti tašką" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Eilutės baigiasi" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -591,17 +591,17 @@ msgstr "" msgid "Add a linestring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Daugiakampis" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Pridėti daugiakampį" @@ -741,8 +741,9 @@ msgstr "Daugiau nustatymų" msgid "Database server" msgstr "Duomenų bazės serveris" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Serveris" @@ -761,7 +762,7 @@ msgstr "Protokolo versija" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Naudotojas" @@ -999,12 +1000,12 @@ msgstr "Perkraunamos privilegijos" msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Uždaryti" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1014,15 +1015,15 @@ msgstr "Uždaryti" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Tiesioginių duomenų srauto diagrama" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Tiesioginių prisijungimų/procesų diagrama" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Tiesioginė užklausos diagrama" @@ -1033,13 +1034,14 @@ msgstr "Statiniai duomenys" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Kita" @@ -1054,50 +1056,16 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB išsiųsta nuo paskutinio naujinimo" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB gauta nuo paskutinio naujinimo" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Serverio duomenų srautas (KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesai" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Prisijungimai / Procesai" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Questions nuo paskutinio atnaujinimo" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Užklausų statistika" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration incompatible" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1105,198 +1073,203 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Užklausų pagreitinimo (kešo) efektyvumas" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Užklausų pagreitinimo (kešo) naudojamumas" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Užklausų pagreitinimas (kešas) naudojamas" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Sistemos CPU naudojimas" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistemos atmintis" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Sistemos swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Vidutinis apkrovimas" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Iš viso atminties" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Podėlio atmintis" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Buferio atmintis" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Laisva atmintis" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Naudojama atmintis" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Iš viso Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Podėlio Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Naudojama swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Laisva Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Išsiųsta baitų" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Prisijungimai" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesai" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d lentelė(-ės)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Nustatymai" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Pašalinti diagramą" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Keisti pavadinimą ir etiketes" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Pritraukti prie tinklelio" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ne" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log ir slow_query_log yra įjungti." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log įjungtas." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log įjungtas." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ir general_log yra išjungti." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1304,12 +1277,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1318,30 +1291,30 @@ msgstr "" "serverio pakartotino paleidimo:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Nustatyti log_output į %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Įjungti %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Išjungti %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Nustatyti long_query_time į %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1349,196 +1322,196 @@ msgstr "" "Jūs negalite pakeisti šių kintamųjų. Prašome prisijungti kaip root arba " "susisiekite su Jūsų duombazės administratoriumi." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Keisti nustatymus" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagramos antraštė" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Skirtumas" -#: js/messages.php:167 +#: js/messages.php:154 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Padalintas į %s:" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Vienetas" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "Įkeliami žurnalai" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Atsisakyti užklausos" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Eiti į žurnalo lentelę" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No data" msgid "No data found" msgstr "Nėra duomenų" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analizuoti" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Paaiškinti SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Laikas" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Iš viso užtruko:" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profiliavimas" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Lentelė" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charts" msgid "Chart" msgstr "Diagramos" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add chart" msgid "Edit chart" msgstr "Pridėti diagramą" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL užklausos" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Lentelių rodymo nustatymai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtras" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtro užklausa pagal žodį/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sugrupuoti užklausas, nepaisant kintamųjų duomenų WHERE dalyje" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "Įkeltų eilučių skaičius" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Iš viso:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Įkeliami žurnalai" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Puslapį įkelti iš naujo" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:210 +#: js/messages.php:197 #, fuzzy #| msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgid "Failed parsing config file. It doesn't seem to be valid JSON code." @@ -1546,256 +1519,258 @@ msgstr "" "Nepavyko išnagrinėti konfigūracinio failo. Atrodo, kad tai nėra teisingas " "JSON kodas." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Nepavyko importuoti konfigūracijos" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Atnaujinti užklausą" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Galimos našumo bėdos" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Bėda" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Rekomendacija" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Taisyklės detalės" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Atpažinimas" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Naudojamas kintamasis / formulė" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Išbandyti" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Įkeliama" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Vykdoma užklausa" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Šalinamas stulpelis" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Pridedamas pirminis raktas" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Gerai" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Paspauskite, kad praleistumėte šį perspėjimą" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Keičiamas duomenų bazės pavadinimas" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Perkrauti duomenų bazę" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopijuojama duomenų bazė" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Keičiama koduotė" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Lentelė turi turėti bent vieną stulpelį" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Įterpti lentelę" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Nerodyti indeksų" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Rodyti indeksus" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Įjungta" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Išjungta" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Ieškoma" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Rodyti paieškos rezultatas" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Peržiūrėti" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Šaliname" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Stulpelio „%s“ reikšmės" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Reikšmės naujajam stulpeliui" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Pridėti %d reikšmę(-es)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Pastaba: Jei failas turi keletą lentelių jos bus sukombinuotos į vieną" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Redaguoti" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Užklausos vykdymo laikas" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1804,203 +1779,208 @@ msgstr "%d nėra galimas eilutės numeris." msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Paieška" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Pasirinkite du stulpelius" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Pasirinkite du skirtingus stulpelius" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Užklausos rezultatai" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopijuoti" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Pridėti stulpelį(-ius)" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Pridėti parinktį stulpeliui/skilčiai " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Paspausti escape (klavišas Esc), kad išeiti iš redagavimo" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Vilkite, kad pertvarkytumėte" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Spustelėkite, kad surūšiuoti" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Eiti pagal nuorodą" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Stulpelių vardai" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Atnaujinti eilutę(es)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Daugiau" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Rodyti viską" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Nerodyti indeksų" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2010,27 +1990,27 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "naujausias" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Atlikta" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2038,149 +2018,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Šiandien" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "sausio" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "vasario" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "kovo" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "balandžio" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Geg" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "birželio" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "liepos" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "rugsėjo" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "spalio" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "lapkričio" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Grd" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2188,97 +2168,97 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sav." #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Valanda" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minutė" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekundės" @@ -2333,16 +2313,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per sekundę" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minutę" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per valandą" @@ -2369,7 +2349,7 @@ msgstr "Šrifto dydis" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Didėjimo tvarka" @@ -2378,7 +2358,7 @@ msgstr "Didėjimo tvarka" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Mažėjimo tvarka" @@ -2496,7 +2476,7 @@ msgstr "Ištrinti sutapimus %s lentelėje(ei)?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Trinti" @@ -2678,7 +2658,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Stabdyti procesą" @@ -2735,12 +2715,13 @@ msgstr "Pažymėti visas" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" @@ -2748,7 +2729,7 @@ msgstr "Eksportuoti" msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2831,16 +2812,16 @@ msgstr "Negalima perskaityti (perkelti) įkelto failo." msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Slapukai turi būti priimami." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2854,21 +2835,21 @@ msgstr "Nėra aprašytų indeksų!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Elementų skaičius" @@ -2878,13 +2859,13 @@ msgstr "Elementų skaičius" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Palyginimas" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentaras" @@ -2928,7 +2909,7 @@ msgstr "Rodinys" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktūra" @@ -3001,34 +2982,35 @@ msgstr "Įvykiai" msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Naudotojai" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Dvejetainis log'as" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikavimas" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Varikliai" @@ -3079,6 +3061,105 @@ msgstr "Paskiausios lentelės" msgid "There are no recent tables" msgstr "Nėra jokių paskiausių lentelių" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL užklausa" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Užklausų saugykla" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Gijos" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Laikini duomenys" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Užlaikyti įterpimai" + +#: libraries/ServerStatusData.class.php:190 +#, fuzzy +msgid "Key cache" +msgstr "Užklausų saugykla" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Rikiavimas" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Lentelės" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Failai" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Rodyti atidarytas lenteles" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Rodyti pagrindinio serverio būklę" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Rodyti pavaldinio būklę" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB būsena" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Užklausų statistika" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Visi būsenos kintamieji" + +#: 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." @@ -3173,7 +3254,7 @@ msgstr "Operatorius" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Reikšmė" @@ -3578,11 +3659,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL užklausa" - #: libraries/Util.class.php:710 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:292 @@ -3617,7 +3693,7 @@ msgid "Create PHP Code" msgstr "PHP kodas" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Atnaujinti" @@ -3713,13 +3789,6 @@ msgstr "Spausdinti" msgid "shared" msgstr "padalintas" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Lentelės" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3760,11 +3829,11 @@ msgstr "Patikrinti duomenų bazės „%s“ privilegijas." msgid "Check Privileges" msgstr "Patikrinti privilegijas" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3772,12 +3841,12 @@ msgstr "" "Tai dažniausiai reiškia, kad yra įvelta sintaksės klaida, prašome patikrinti " "žemiau esančias klaidas." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3788,38 +3857,38 @@ msgid "" msgstr "" "BŪTINA nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "galimas pažeidžiamumas" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6063,8 +6132,8 @@ msgstr "" "Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis " "yra [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Vartotojo vardas" @@ -6706,10 +6775,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB būsena" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Buferio Pool'o naudojimas" @@ -7381,18 +7446,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7490,17 +7555,17 @@ msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Tik struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktūra ir duomenys" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Tik duomenys" @@ -7899,8 +7964,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Darbinė stotis" @@ -8518,7 +8582,7 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Kintamasis" @@ -9038,7 +9102,7 @@ msgstr "Atributai" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Papildomai" @@ -9737,7 +9801,7 @@ msgstr "Pridėti priešdėlį lentelės pavadinimui" msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Jokio" @@ -10093,7 +10157,7 @@ msgstr "Suskleisti/Išskleisti" msgid "Toggle relation lines" msgstr "Sąryšio pasirinkimui, paspauskite:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importuoti/eksportuoti koordinates PDF schemai" @@ -10163,31 +10227,31 @@ msgstr "Puslapis sukurtas" msgid "Page creation failed" msgstr "Puslapio kūrimas nepavyko" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Puslapis" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importuoti iš pasirinkto puslapio" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Sukurti puslapį ir eksportuoti į jį" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Naujas puslapio vardas: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "rekomenduojame" @@ -10305,15 +10369,11 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Failai" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -10399,7 +10459,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versija" @@ -10462,10 +10522,6 @@ msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Rodyti pagrindinio serverio būklę" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Rodyti prisijungusius pavaldinius" @@ -10609,191 +10665,30 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status.php:657 -msgid "Handler" -msgstr "" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Užklausų saugykla" - -#: server_status.php:659 -msgid "Threads" -msgstr "Gijos" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Laikini duomenys" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Užlaikyti įterpimai" - -#: server_status.php:663 -#, fuzzy -msgid "Key cache" -msgstr "Užklausų saugykla" - -#: server_status.php:664 -msgid "Joins" -msgstr "" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Rikiavimas" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Rodyti atidarytas lenteles" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Rodyti pavaldinio būklę" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Veikimo informacija" - -#: server_status.php:830 -msgid "All status variables" -msgstr "Visi būsenos kintamieji" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Eilučių skaičius:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Atnaujinimo dažnis: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtrai" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Turintys žodį:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtruoti pagal kategoriją..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Rodyti nesuformatuotas reikšmes" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Susijusios nuorodos:" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query analyzer" -msgid "Run analyzer" -msgstr "Užklausos analizatorius" - -#: server_status.php:966 -#, fuzzy -#| msgid "Introduction" -msgid "Instructions" -msgstr "Įvadas" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Parametrai" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10801,19 +10696,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10821,664 +10716,124 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:1185 +#: server_status.php:139 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:1191 +#: server_status.php:149 msgid "Received" msgstr "Gauta" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Siųsta" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Komanda" -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Kiek laikinųjų failų mysqld sukūrė." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Įvykdytų FLUSH užklausų skaičius." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Vidinių COMMIT užklausų skaičius." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Vidinių ROLLBACK užklausų skaičius." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Tuščių puslapių skaičius." - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Esamu momentu laukiančių skaitymų skaičius." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Esamu momentu laukiančių rašymų skaičius." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Duomenų nuskaitymų skaičius." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Duomenų įrašymų skaičius." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Sukurtų puslapių skaičius." - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Puslapių skaitymų skaičius." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Įrašytų puslapių skaičius." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 +#: server_status_advisor.php:29 #, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Įkelto failo formatas" +#| msgid "Introduction" +msgid "Instructions" +msgstr "Įvadas" -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 +#: server_status_advisor.php:35 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." +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." msgstr "" -#: server_status.php:1600 +#: server_status_advisor.php:41 msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" +"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.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 +#: server_status_advisor.php:48 msgid "" -"Percentage of physical writes compared to write requests (calculated value)" +"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.php:1604 +#: server_status_advisor.php:56 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." +"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.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Failų kurie yra atidaryti skaičius." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Lentelių kurios yra atidarytos skaičius." - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Podėlio kreipimųsi skaičius." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Surikiuotų eilučių skaičius." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Sekimas yra neaktyvus." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Paleisti Monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instrukcijos/Diegimas" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Pridėti diagramą" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Monitor instrukcijos" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11487,7 +10842,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11495,18 +10850,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11514,11 +10869,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11526,81 +10881,81 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Pašalinti diagramą" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Būsenos kintamasis(ieji)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Pasirinkite eiles:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "arba įveskite kintamojo vardą:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Pridėti šią eilę" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Eilės diagramoje:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Registruoti statistiką" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Pasirinktas laiko tarpas:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11609,7 +10964,7 @@ msgstr[0] "Sekundė" msgstr[1] "Sekundės" msgstr[2] "Sekundžių" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11618,6 +10973,618 @@ msgstr[0] "Minutė" msgstr[1] "Minutė" msgstr[2] "Minučių" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Parametrai" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtrai" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Turintys žodį:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtruoti pagal kategoriją..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Rodyti nesuformatuotas reikšmes" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Susijusios nuorodos:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Kiek laikinųjų failų mysqld sukūrė." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Įvykdytų FLUSH užklausų skaičius." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Vidinių COMMIT užklausų skaičius." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Vidinių ROLLBACK užklausų skaičius." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Tuščių puslapių skaičius." + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Esamu momentu laukiančių skaitymų skaičius." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Esamu momentu laukiančių rašymų skaičius." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Duomenų nuskaitymų skaičius." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Duomenų įrašymų skaičius." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Sukurtų puslapių skaičius." + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Puslapių skaitymų skaičius." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Įrašytų puslapių skaičius." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Įkelto failo formatas" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Failų kurie yra atidaryti skaičius." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Lentelių kurios yra atidarytos skaičius." + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Podėlio kreipimųsi skaičius." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Surikiuotų eilučių skaičius." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Sekimas yra neaktyvus." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12234,147 +12201,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Užklausos klaida" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Ištrinti sekimo duomenis iš ataskaitos" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nėra duomenų" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL vykdymas" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Eksportuoti kaip %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Rodyti versijas" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Keisti nustatymus %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktyvuoti dabar" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Sukurti versiją" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Sukurti versiją" @@ -12518,13 +12485,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Rodyti užklausos laukelį" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12542,133 +12509,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select series:" msgid "Release Series" msgstr "Pasirinkite eiles:" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Sukurti versiją" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Versija" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Paaiškinimas" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL koduotė" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Užklausų saugykla" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Serveris neatsako" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12676,23 +12655,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Užklausų saugykla" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Užklausų saugykla" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s lentelė" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13088,312 +13067,312 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Rodyti SQL užklausas" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Sukurti lentelę" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Įkelto failo formatas" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Įkelto failo formatas" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening files is high." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Sukurti naują lentelę duomenų bazėje %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Rūšiavimo buferio dydis" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Rūšiavimo buferio dydis" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Rūšiavimo buferio dydis" + +#: libraries/advisory_rules.txt:362 #, fuzzy msgid "Thread cache" msgstr "Užklausų saugykla" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Sekimas yra neaktyvus." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Sekimas yra neaktyvus." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Sekimas yra neaktyvus." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Rūšiavimo buferio dydis" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Leisti kurti laikinas lenteles." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Buferio pool'o dydis" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13529,24 +13508,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Buferio pool'o dydis" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Buferio pool'o dydis" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13561,7 +13540,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13570,29 +13549,60 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM lygiagretieji įterpimai" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "MyISAM concurrent inserts" msgid "Enable concurrent_insert by setting it to 1" msgstr "MyISAM concurrent įterpimai" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "MyISAM concurrent inserts" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB išsiųsta nuo paskutinio naujinimo" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB gauta nuo paskutinio naujinimo" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Serverio duomenų srautas (KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo" + +#~ msgid "Questions since last refresh" +#~ msgstr "Questions nuo paskutinio atnaujinimo" + +#~ msgid "Runtime Information" +#~ msgstr "Veikimo informacija" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Eilučių skaičius:" + +#~ msgid "Refresh rate: " +#~ msgstr "Atnaujinimo dažnis: " + +#, fuzzy +#~| msgid "Query analyzer" +#~ msgid "Run analyzer" +#~ msgstr "Užklausos analizatorius" + #~ msgid "Show more actions" #~ msgstr "Rodyti daugiau veiksmų" diff --git a/po/lv.po b/po/lv.po index a57c50fb60..dabd86613b 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Latvian " -"\n" -"Language: lv\n" +"Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Meklēt" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Aiziet!" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Atslēgas nosaukums" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Apraksts" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Datubāze %1$s tika izveidota." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Komentārs tabulai" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Lauks" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Lauks" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tips" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Tips" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulle" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Nulle" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Noklusēts" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Noklusēts" msgid "Links to" msgstr "Linki uz" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Komentāri" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nē" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Nē" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Jā" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabula" @@ -342,7 +342,7 @@ msgstr "Izmērs" msgid "in use" msgstr "lietošanā" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "lietošanā" msgid "Creation" msgstr "Izveidošana" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Izveidošana" msgid "Last update" msgstr "Pēdējā atjaunošana" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -413,7 +413,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Datubāze" @@ -421,17 +421,17 @@ msgstr "Datubāze" msgid "Last version" msgstr "Pēdējā versija" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Izveidots" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Atjaunots" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Statuss" @@ -446,7 +446,7 @@ msgstr "Darbība" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Rādīt" @@ -462,11 +462,11 @@ msgstr "" msgid "Drop" msgstr "Likvidēt" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktīvs" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "neaktīvs" @@ -474,11 +474,11 @@ msgstr "neaktīvs" msgid "Versions" msgstr "Versijas" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" @@ -548,45 +548,45 @@ msgstr "Izmantot OpenStreetMaps kā pamata pārklājumu" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Ģeometrija" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punkts" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punkts %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Pievienot punktu" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Līnija" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Ārējais aplis" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Iekšējais aplis" @@ -594,15 +594,15 @@ msgstr "Iekšējais aplis" msgid "Add a linestring" msgstr "Pievienot līniju" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Pievienot iekšējo loku" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -734,8 +734,9 @@ msgstr "Galvenās relāciju īpašības" msgid "Database server" msgstr "Datubāzes" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Serveris" @@ -756,7 +757,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Lietotājs" @@ -993,12 +994,12 @@ msgstr "Atjauno privilēģijas" msgid "Removing Selected Users" msgstr "Dzēš izvēlētos lietotājus" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Aizvērt" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1008,15 +1009,15 @@ msgstr "Aizvērt" msgid "Edit" msgstr "Labot" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Dzīvā satiksmes diagrama" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Dzīvā pieprasījumu diagramma" @@ -1027,13 +1028,14 @@ msgstr "Statiski dati" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Cits" @@ -1048,50 +1050,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Servera izvēle" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesi" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Savienojumi / Procesi" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Pieprasījumu statistika" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1099,199 +1065,204 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Vaicājuma tips" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Pieprasījumu kešatmiņas lietojums" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Izmantotā pieprasījumu kešatmiņa" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Sistēmas CPU noslodze" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistēmas atmiņa" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Vidējais noslogojums" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Kopējā atmiņa" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Brīvā atmiņa" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Izmantotā atmiņa" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Kopā" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Saņemtie baiti" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Konekcijas" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "baiti" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabula(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Jautājumi" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Uzstādījumi" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Noņemt diagrammu" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Labot virsrakstu un nosaukumus" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nav" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1299,478 +1270,480 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Saglabāt kā failu" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Ieslēgt %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Izslēgt %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Pašreizējie uzstādījumi" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagrammas virsraksts" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Vienība" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Lokāls" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Atcelt pieprasījumu" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Nav datubāzu" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Dati netika atrasti" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analizē…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Izskaidrot izvadu" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Laiks" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Kopējais laiks:" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultāts" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabula" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagramma" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Pievienot jaunu lauku" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Sērijas" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Tabulas opcijas" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrs" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Rindu skaits vienā lapā" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Kopā:" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Lokāls" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Pārlādēt lapu" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Aizskartās rindas:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imports" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Lūdzu izvēlies importējamo failu" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analizēt pieprasījumu" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problēma" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Ieteikums" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Noteikuma detaļas" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentācija" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Tests" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Atcelt" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Ielādē" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Apstrādā pieprasījumu" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Kļūda apstrādājot pieprasījumu" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Labi" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Pārsaukt datubāzi par" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Pārlādēt datubāzi" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopē datubāzi" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Maina kodējumu" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Lietot tabulas" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Pievienot jaunu lauku" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Rādīt režģi" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Nepārbaudīt ārējās atslēgas" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "Ieslēgts" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "Izslēgts" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Meklē" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Rādīt meklēšanas rezultātus" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Apskata" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Dzēš" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Rindu skaits vienā lapā" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Pievienot jaunu lietotāju" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Slēpt pieprasījumu logu" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Rādīt pieprasījumu logu" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Labot" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1779,214 +1752,219 @@ msgstr "" msgid "Save" msgstr "Saglabāt" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Meklēt" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Izvēlies 2 kolonnas" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Izvēlies 2 dažādas kolonnas" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Pieprasījuma rezultāti" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopēt" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Pievienot %s lauku(s)" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Kolonnu nosaukumi" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Parādu rindas" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Rādīt visu" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1994,30 +1972,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2025,96 +2003,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2122,78 +2100,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2201,113 +2179,113 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2359,16 +2337,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "sekundē" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minūtē" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "stundā" @@ -2394,7 +2372,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Augošā secībā" @@ -2403,7 +2381,7 @@ msgstr "Augošā secībā" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Dilstošā secībā" @@ -2524,7 +2502,7 @@ msgstr "Dati tabulai" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Dzēst" @@ -2727,7 +2705,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Nogalināt" @@ -2782,12 +2760,13 @@ msgstr "Iezīmēt visu" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" @@ -2795,7 +2774,7 @@ msgstr "Eksports" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2880,16 +2859,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2903,21 +2882,21 @@ msgstr "Nav definēti indeksi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitāte" @@ -2927,13 +2906,13 @@ msgstr "Kardinalitāte" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Izkārtojumi" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Komentāri" @@ -2977,7 +2956,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktūra" @@ -3050,37 +3029,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Lietotājs" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binārais log-fails" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3133,6 +3113,108 @@ msgstr "Nav tabulu" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL vaicājums" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Vaicājuma tips" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Lietot aizturētos INSERT" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabulas" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Lauki" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Rādīt tabulas" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB statuss" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Pieprasījumu statistika" + +#: 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." @@ -3225,7 +3307,7 @@ msgstr "Operators" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vērtība" @@ -3627,11 +3709,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL vaicājums" - #: libraries/Util.class.php:710 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:292 @@ -3666,7 +3743,7 @@ msgid "Create PHP Code" msgstr "Izveidot PHP kodu" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Atjaunot" @@ -3765,13 +3842,6 @@ msgstr "Drukāt" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabulas" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3814,22 +3884,22 @@ msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." msgid "Check Privileges" msgstr "Pārbaudīt privilēģijas" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3841,38 +3911,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu " "konfigurācijas failā!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6031,8 +6101,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" @@ -6693,10 +6763,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB statuss" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7363,18 +7429,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7479,17 +7545,17 @@ msgid "Drop the database (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Tikai struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktūra un dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Tikai dati" @@ -7924,8 +7990,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Hosts" @@ -8514,7 +8579,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Mainīgais" @@ -9075,7 +9140,7 @@ msgstr "Atribūti" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstras" @@ -9800,7 +9865,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10176,7 +10241,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionāla ķīniešu" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10258,41 +10323,41 @@ msgstr "Tabula %s tika izdzēsta" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Aizņem" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importēt failus" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izveidot jaunu indeksu" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Lietotājvārds" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10414,16 +10479,11 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Lauki" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -10508,7 +10568,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Persiešu" @@ -10569,10 +10629,6 @@ msgstr "Privilēģijas tika veiksmīgi pārlādētas." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10704,12 +10760,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10717,871 +10773,161 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Vaicājuma tips" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Lietot aizturētos INSERT" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Saņemts" + +#: server_status.php:168 +msgid "Sent" +msgstr "Nosūtīts" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Rādīt tabulas" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Pārtraukts" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Komanda" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Izpildes laika informācija" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Rindu skaits vienā lapā" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Atjaunot" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Nemainīt paroli" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Rādīt tabulas" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Rādīt tabulas" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relācijas" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Vaicājuma tips" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Parametrs" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Saņemts" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Nosūtīts" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Neveiksmīgi mēģinājumi" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Pārtraukts" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Komanda" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Tabulas kodējums:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Vaicājuma tips" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "S" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Pievienot jaunu lauku" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11590,7 +10936,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11598,18 +10944,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11617,11 +10963,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11629,90 +10975,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pārsaukt datubāzi par" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izvēlieties tabulas" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Pievienot jaunu lietotāju" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL vaicājums" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Rindas statistika" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Iezīmēt visu" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vaicājuma tips" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11720,7 +11066,7 @@ msgid_plural "%d seconds" msgstr[0] "sekundē" msgstr[1] "sekundē" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11728,6 +11074,623 @@ msgid_plural "%d minutes" msgstr[0] "lietošanā" msgstr[1] "lietošanā" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Parametrs" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nemainīt paroli" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Rādīt tabulas" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Rādīt tabulas" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relācijas" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Tabulas kodējums:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Vaicājuma tips" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12307,149 +12270,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vaicājuma tips" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Ļauj ievietot un mainīt datus." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nav datubāzu" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Dati" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Servera versija" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Servera versija" @@ -12592,12 +12555,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL vaicājums" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12613,130 +12576,140 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Izvēlieties tabulas" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Servera versija" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Persiešu" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Apraksts" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL kodējums" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Serveris neatbild" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12744,21 +12717,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tabula(s)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13136,287 +13109,287 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "Rādīt pilnos vaicājumus" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Rādīt pilnos vaicājumus" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "Rādīt pilnos vaicājumus" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Rādīt pilnos vaicājumus" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Izveidot jaunu lapu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Tabulas kodējums:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Tabulas kodējums:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Tabulas kodējums:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Tabulas kodējums:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Vaicājuma tips" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Serveris neatbild" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Konekcijas" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Konekcijas" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Ļauj veidot pagaidu tabulas." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13545,20 +13518,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13573,7 +13546,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13582,25 +13555,48 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Servera izvēle" + +#~ msgid "Runtime Information" +#~ msgstr "Izpildes laika informācija" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Rindu skaits vienā lapā" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Atjaunot" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Vaicājuma tips" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/mk.po b/po/mk.po index 395d52e56e..a71dd9c190 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:08+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Macedonian " -"\n" -"Language: mk\n" +"Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Пребарување" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "OK" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Име на клуч" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -112,17 +112,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Коментар на базата на податоци: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -136,14 +136,14 @@ msgstr "Коментар на табелата" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Имиња на колони" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Default" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Default" msgid "Links to" msgstr "Врски кон" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Да" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Табела" @@ -343,7 +343,7 @@ msgstr "Големина" msgid "in use" msgstr "се користи" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -351,7 +351,7 @@ msgstr "се користи" msgid "Creation" msgstr "Направено" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -359,7 +359,7 @@ msgstr "Направено" msgid "Last update" msgstr "Последна измена" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -415,7 +415,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "База на податоци" @@ -423,17 +423,17 @@ msgstr "База на податоци" msgid "Last version" msgstr "Последна Верзија" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Креирано" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Ажурирано" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Статус" @@ -448,7 +448,7 @@ msgstr "Акција" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Прикажи" @@ -464,11 +464,11 @@ msgstr "Избришете го податоците за тракирање о msgid "Drop" msgstr "Бриши" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -477,11 +477,11 @@ msgstr "" msgid "Versions" msgstr "Персиски" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" @@ -557,49 +557,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додади ново поле" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -609,17 +609,17 @@ msgstr "" msgid "Add a linestring" msgstr "Додади нов корисник" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додади нов корисник" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -751,8 +751,9 @@ msgstr "Општи особини на релациите" msgid "Database server" msgstr "База на податоци" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервер" @@ -773,7 +774,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Корисник" @@ -1031,12 +1032,12 @@ msgstr "Глобални привилегии" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1046,17 +1047,17 @@ msgstr "" msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор на сервер" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1068,13 +1069,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1089,54 +1091,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Избор на сервер" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -#, fuzzy -msgid "Processes" -msgstr "Листа на процеси" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Конекции" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Статистики за записите" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1144,215 +1108,221 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Вид на упит" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "Вид на упит" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "Вид на упит" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Вкупно" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Бафер" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Вкупно" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Слободни страници" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Конекции" +#: js/messages.php:105 server_status.php:384 +#, fuzzy +msgid "Processes" +msgstr "Листа на процеси" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "бајти" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табела" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Персиски" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Општи особини на релациите" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "Избриши ја базата на податоци." -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "нема" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1360,528 +1330,530 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Сочувај како податотека" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Овозможено" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Оневозможено" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Општи особини на релациите" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Import files" msgid "Chart Title" msgstr "Увоз на податотека" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Локален" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Барања за читање" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Базата на податоци не постои" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базата на податоци не постои" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Време" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Вкупно" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL резултат" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табела" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кодна страна" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Додади ново поле" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL упит" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Опции на табелата" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Број на записи на страница" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Вкупно" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Локален" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Ажурирај" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Документација" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Документација" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Локален" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy msgid "Processing Request" msgstr "Листа на процеси" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "ОК" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодна страна" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Морате да изберете барем една колона за приказ" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Користи табели" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Додади ново поле" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Прикажи мрежа" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Исклучи проверка на надворешни клучеви" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Овозможено" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Оневозможено" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пребарување" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришам %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Број на записи на страница" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додади нов корисник" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Промени" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1890,219 +1862,224 @@ msgstr "" msgid "Save" msgstr "Сочувај" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Пребарување" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додади/избриши колона" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "SQL резултат" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Копирај" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Додади %s полиња" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Имиња на колони" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Приказ на записи од " -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "прикажи ги сите" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Додади ново поле" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2110,30 +2087,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2141,96 +2118,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "мај" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2238,78 +2215,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "дек" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2317,113 +2294,113 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2475,16 +2452,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "во секунда" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "во минута" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "на час" @@ -2510,7 +2487,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Растечки редослед" @@ -2519,7 +2496,7 @@ msgstr "Растечки редослед" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Опаѓачки редослед" @@ -2640,7 +2617,7 @@ msgstr "Приказ на податоци од табелата" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "избриши" @@ -2844,7 +2821,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Прекини" @@ -2901,12 +2878,13 @@ msgstr "обележи ги сите" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" @@ -2914,7 +2892,7 @@ msgstr "Извоз" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3001,16 +2979,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3024,21 +3002,21 @@ msgstr "Клучот не е дефиниран!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Кардиналност" @@ -3048,13 +3026,13 @@ msgstr "Кардиналност" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Подредување" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3098,7 +3076,7 @@ msgstr "Поглед" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -3171,37 +3149,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Бинарен дневник" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 #, fuzzy msgid "Replication" msgstr "Релации" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Складишта" @@ -3254,6 +3233,109 @@ msgstr "Нема табела" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL упит" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Вид на упит" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Користи одложен внес" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Табели" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Полиња" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Прикажи табели" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB статус" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +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." @@ -3346,7 +3428,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Вредност" @@ -3748,11 +3830,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL упит" - #: libraries/Util.class.php:710 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:292 @@ -3787,7 +3864,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Освежи" @@ -3888,13 +3965,6 @@ msgstr "Печати" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Табели" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3937,22 +4007,22 @@ msgstr "Провери привилегии за базата на подато msgid "Check Privileges" msgstr "Провери привилегии" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3964,39 +4034,39 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во " "конфигурациската податотека!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6165,8 +6235,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6834,10 +6904,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB статус" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Искористеност на баферот" @@ -7517,18 +7583,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Промени го редоследот во табелата" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7632,17 +7698,17 @@ msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структура и податоци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Само податоци" @@ -8078,8 +8144,7 @@ msgstr "Достапни MIME-типови" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8685,7 +8750,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Променлива" @@ -9250,7 +9315,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Дополнително" @@ -9979,7 +10044,7 @@ msgstr "Додај префикс кон табелата" msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10354,7 +10419,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Традиционален кинески" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10436,41 +10501,41 @@ msgstr "Табелата %s е избришана" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страница" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз на податотека" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Нема селектирани записи" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Креирај нов клуч" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Назив на корисник" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10592,16 +10657,11 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Полиња" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -10686,7 +10746,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Персиски" @@ -10747,10 +10807,6 @@ msgstr "Привилегиите се успешно вчитани." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10882,884 +10938,173 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Вид на упит" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Користи одложен внес" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Примено" + +#: server_status.php:168 +msgid "Sent" +msgstr "Пратено" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Прикажи табели" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Неуспешни обиди" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Прекинато" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Наредба" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Информации за работата" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Број на записи на страница" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Освежи" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Немој да ја менуваш лозинката" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Прикажи табели" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Прикажи табели" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Релации" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Вид на упит" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Функција" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Име" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Примено" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Пратено" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Неуспешни обиди" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Прекинато" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Наредба" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " -"еден час." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Кодна страна на податотеката:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Вид на упит" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Саб" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додади ново поле" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11768,7 +11113,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11776,18 +11121,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11795,11 +11140,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11807,90 +11152,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Избриши ја базата на податоци." -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Избери табели" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Додади нов корисник" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Статистики за записите" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "избери се" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Вид на упит" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11898,7 +11243,7 @@ msgid_plural "%d seconds" msgstr[0] "во секунда" msgstr[1] "во секунда" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11906,6 +11251,624 @@ msgid_plural "%d minutes" msgstr[0] "се користи" msgstr[1] "се користи" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Име" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Немој да ја менуваш лозинката" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Прикажи табели" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Прикажи табели" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Релации" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " +"еден час." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Кодна страна на податотеката:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Вид на упит" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12483,150 +12446,150 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Вид на упит" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозволува вметнување и замена на података." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базата на податоци не постои" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Податоци" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Избришете го податоците за тракирање од табелава" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Верзија на серверот" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" @@ -12769,12 +12732,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL упит" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12790,131 +12753,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Избери табели" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Верзија на серверот" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Персиски" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Опис" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL множество на знаци" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Вид на упит" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Серверот не одговара" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12922,21 +12895,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Вид на упит" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Вид на упит" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s табела" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13320,301 +13293,301 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Прикажи комплетни упити" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Направи нова страница" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Кодна страна на податотеката:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Кодна страна на податотеката:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Кодна страна на податотеката:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Кодна страна на податотеката:" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Големина на меѓупросторот за подредување" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Големина на меѓупросторот за подредување" + +#: libraries/advisory_rules.txt:362 #, fuzzy msgid "Thread cache" msgstr "Вид на упит" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Вид на упит" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Вид на упит" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Серверот не одговара" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Големина на меѓупросторот за подредување" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Конекции" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Конекции" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Дозволува креирање на привремени табели..." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Големина на баферот" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13748,24 +13721,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Големина на баферот" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Големина на баферот" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13780,7 +13753,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13789,25 +13762,48 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Избор на сервер" + +#~ msgid "Runtime Information" +#~ msgstr "Информации за работата" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Број на записи на страница" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Освежи" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Вид на упит" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ml.po b/po/ml.po index a03c9bd6d4..93d406391a 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -16,7 +16,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -45,7 +45,7 @@ msgstr "" msgid "Search" msgstr "തിരയൂ" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -75,21 +75,21 @@ msgstr "തിരയൂ" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "പോകൂ" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "കീനാമം" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "വിവരണം" @@ -110,17 +110,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "വിവരശേഖര അഭിപ്രായം: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -134,12 +134,12 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "നിര" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -157,11 +157,11 @@ msgstr "നിര" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "തരം" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -173,11 +173,11 @@ msgstr "തരം" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "ശൂന്യം" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -188,11 +188,11 @@ msgstr "ശൂന്യം" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "സ്വതേ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -201,7 +201,7 @@ msgstr "സ്വതേ" msgid "Links to" msgstr "കണ്ണികൾ" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -214,7 +214,7 @@ msgstr "കണ്ണികൾ" msgid "Comments" msgstr "അഭിപ്രായങ്ങൾ" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -232,12 +232,12 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "ഇല്ല" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -260,8 +260,8 @@ msgstr "ഇല്ല" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "അതേ" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "പട്ടിക" @@ -334,7 +334,7 @@ msgstr "വലിപ്പം" msgid "in use" msgstr "ഉപയോഗത്തിൽ" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -342,7 +342,7 @@ msgstr "ഉപയോഗത്തിൽ" msgid "Creation" msgstr "സൃഷ്‌ടി" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -350,7 +350,7 @@ msgstr "സൃഷ്‌ടി" msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -402,7 +402,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "" @@ -410,17 +410,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "" @@ -435,7 +435,7 @@ msgstr "" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" @@ -451,11 +451,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -463,11 +463,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -533,45 +533,45 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -579,15 +579,15 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -708,8 +708,9 @@ msgstr "" msgid "Database server" msgstr "" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -728,7 +729,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -944,12 +945,12 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -959,15 +960,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "" @@ -978,13 +979,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -999,48 +1001,14 @@ msgid "." msgstr "" #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1048,120 +1016,124 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1169,77 +1141,78 @@ msgid "%d table(s)" msgstr "%s പട്ടിക" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1247,451 +1220,453 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "പട്ടിക" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1700,191 +1675,196 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1892,266 +1872,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "" @@ -2201,16 +2181,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2236,7 +2216,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ആരോഹണം" @@ -2245,7 +2225,7 @@ msgstr "ആരോഹണം" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "അവരോഹണം" @@ -2359,7 +2339,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "" @@ -2529,7 +2509,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2584,12 +2564,13 @@ msgstr "" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "" @@ -2597,7 +2578,7 @@ msgstr "" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2678,16 +2659,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2699,21 +2680,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2723,13 +2704,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "നിബന്ധന" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -2772,7 +2753,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2845,34 +2826,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2920,6 +2902,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3012,7 +3092,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3395,11 +3475,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3434,7 +3509,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3530,13 +3605,6 @@ msgstr "അച്ചടിക്കുക" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3577,59 +3645,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5669,8 +5737,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6279,10 +6347,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6929,16 +6993,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7034,17 +7098,17 @@ msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "ഘടന മാത്രം" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "വിവരം മാത്രം" @@ -7431,8 +7495,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7941,7 +8004,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8445,7 +8508,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9108,7 +9171,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9441,7 +9504,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9507,31 +9570,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9647,15 +9710,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9738,7 +9797,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9795,10 +9854,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9924,854 +9979,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10780,7 +10144,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10788,18 +10152,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10807,11 +10171,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10819,92 +10183,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11445,142 +11416,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11714,11 +11685,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11732,120 +11703,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: 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:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "വിവരണം" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11853,19 +11834,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12220,268 +12201,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +msgid "Percentage of MyISAM key buffer used" msgstr "" #: libraries/advisory_rules.txt:316 #, php-format -msgid "Index reads from memory: %s%%, this value should be above 95%%" +msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 -msgid "Rate of table open" +#: 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:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12602,20 +12583,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12630,7 +12611,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12639,22 +12620,22 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/mn.po b/po/mn.po index b8aa72f5dc..70a7e28fe3 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Mongolian " -"\n" -"Language: mn\n" +"Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +46,7 @@ msgstr "" msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +76,21 @@ msgstr "Хайх" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Яв" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Тайлбар" @@ -111,17 +111,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,14 +135,14 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Баганын нэрс" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Төрөл" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Төрөл" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Хоосон" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Хоосон" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Анхдагч" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Анхдагч" msgid "Links to" msgstr "Холбоос" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Тайлбар" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Үгүй" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Үгүй" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Тийм" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Хүснэгт" @@ -342,7 +342,7 @@ msgstr "Хэмжээ" msgid "in use" msgstr "хэрэглэгдэж байна" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "хэрэглэгдэж байна" msgid "Creation" msgstr "Үүсгэлт" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Үүсгэлт" msgid "Last update" msgstr "Сүүлийн шинэчлэл" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -414,7 +414,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "ӨС" @@ -422,17 +422,17 @@ msgstr "ӨС" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Статус" @@ -447,7 +447,7 @@ msgstr "Үйлдэл" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Харах" @@ -463,11 +463,11 @@ msgstr "" msgid "Drop" msgstr "Устгах" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -475,11 +475,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -551,49 +551,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Шинэ талбар нэмэх" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Шугамыг төгсгөгч" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -603,15 +603,15 @@ msgstr "" msgid "Add a linestring" msgstr "Тогтмол нэмэх" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -744,8 +744,9 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Database server" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервэр" @@ -766,7 +767,7 @@ msgstr "Протоколын хувилбар" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Хэрэглэгч" @@ -1024,12 +1025,12 @@ msgstr "Онцгой эрхүүдийг дахин дуудах" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1039,17 +1040,17 @@ msgstr "" msgid "Edit" msgstr "Засах" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Сервэр сонго" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1062,13 +1063,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1083,56 +1085,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Сервэр сонго" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Процессууд" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Холболт" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Databases statistics" -msgid "Query statistics" -msgstr "Өгөгдлийн сангийн статистик" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1140,219 +1104,224 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "кБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Нийт" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Буффер Pool" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Нийт" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Чөлөөт хуудсууд" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Холболт" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процессууд" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Байт" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "кБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s хүснэгт(үүд)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Байхгүй" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1360,539 +1329,541 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Илгээх" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Нээлттэй" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Хаагдсан" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Тайлангийн гарчиг" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Унших гуйлт" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "ӨС байхгүй" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "ӨС байхгүй" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL тайлбар" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Цаг" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Нийт" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Хүснэгт " -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "Кодлолууд" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Select Tables" msgid "Series" msgstr "Хүснэгтүүд сонго" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Хүснэгтийн сонголтууд" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Талбаруудын тоо" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Нийт" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Да.дууд" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Update асуулт" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Баримт" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Баримт" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Болих" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Процессууд" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Бэлэн" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодлол" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Хүснэгт хэрэглэх" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Тор харуулах" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Нээлттэй" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Хаагдсан" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Хайх" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "асуултад" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "SQL асуудал харуулах" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Хөтлөх" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-г устгаж байна" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Талбаруудын тоо" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Шинэ хэрэглэгч нэмэх" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "асуултад" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "SQL асуудал харуулах" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Солих" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1901,221 +1872,226 @@ msgstr "%d нь мөрийн буруу дугаар байна." msgid "Save" msgstr "Хадгалах" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Хайх" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Багана нэмэх/устгах" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Хуулах" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Баганын нэрс" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Мөрүүдийг харуулж байна " -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Бүгдийг харах" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2123,31 +2099,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2155,96 +2131,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "5-р" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2252,78 +2228,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "12р" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2331,113 +2307,113 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2490,16 +2466,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "секундэд" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "минутад" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "цагт" @@ -2525,7 +2501,7 @@ msgstr "Үсгийн хэмжээ" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Өсөхөөр" @@ -2534,7 +2510,7 @@ msgstr "Өсөхөөр" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Буурахаар" @@ -2655,7 +2631,7 @@ msgstr "Хүснэгтийн өгөгдлийг устгах" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Устгах" @@ -2854,7 +2830,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Алах" @@ -2909,12 +2885,13 @@ msgstr "Бүгдийг чагтлах" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" @@ -2922,7 +2899,7 @@ msgstr "Гаргах" msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3007,16 +2984,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3030,21 +3007,21 @@ msgstr "Индекс тодорхойлогдоогүй!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Ерөнхий" @@ -3054,13 +3031,13 @@ msgstr "Ерөнхий" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Жишилт" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -3103,7 +3080,7 @@ msgstr "Харц" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Бүтэц" @@ -3176,36 +3153,37 @@ msgstr "" msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Хэрэглэгч" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Хоёртын log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Олшруулалт" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Хөдөлгүүрүүд" @@ -3261,6 +3239,106 @@ msgstr "Хүснэгтүүд сонго" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-асуулт" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Баригч" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Асуудлын нөөцлөл" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Thread-үүд" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Завсрын өгөгдөл" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Давталттай оруулалт" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Түлхүүрийн нөөцлөл" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Нэгдэл" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Эрэмбэлж байна" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Хүснэгт" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Хэлэлцээр зохицуулагч" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файлууд" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Нээлттэй хүснэгтүүдийг харуулах" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Дагавар хостыг харуулах" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Дагавар төлвийг харуулах" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Асуудлын утгыг цэвэрлэх" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB байдал" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Databases statistics" +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." @@ -3356,7 +3434,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Утга" @@ -3761,11 +3839,6 @@ msgstr "" msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-асуулт" - #: libraries/Util.class.php:710 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:292 @@ -3800,7 +3873,7 @@ msgid "Create PHP Code" msgstr "PHP-код үүсгэх" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Да.дуудах" @@ -3901,13 +3974,6 @@ msgstr "Хэвлэх" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Хүснэгт" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3952,25 +4018,25 @@ msgstr ""%s" өгөгдлийн сангийн онцгой эрх ш msgid "Check Privileges" msgstr "Онцгой эрх шалгах" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3981,39 +4047,39 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6165,8 +6231,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6853,10 +6919,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB байдал" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Буффер Pool Хэрэглээ" @@ -7536,18 +7598,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "хүснэгтийн нэр" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7653,17 +7715,17 @@ msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Зөвхөн бүтэц" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Зөвхөн өгөгдөл" @@ -8094,8 +8156,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -8686,7 +8747,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Хувьсагч" @@ -9259,7 +9320,7 @@ msgstr "Атрибутууд" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Нэмэлт" @@ -9961,7 +10022,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10339,7 +10400,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Холбоо сонгохдоо, дарах нь :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" @@ -10421,41 +10482,41 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "хуудсууд" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файл оруулах" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Шинэ индекс үүсгэх" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Хэрэглэгчийн нэр" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "сайшаагдсан" @@ -10577,15 +10638,11 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файлууд" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -10669,7 +10726,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10729,10 +10786,6 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10862,268 +10915,380 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status.php:657 -msgid "Handler" -msgstr "Баригч" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Асуудлын нөөцлөл" - -#: server_status.php:659 -msgid "Threads" -msgstr "Thread-үүд" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Завсрын өгөгдөл" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Давталттай оруулалт" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Түлхүүрийн нөөцлөл" - -#: server_status.php:664 -msgid "Joins" -msgstr "Нэгдэл" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Эрэмбэлж байна" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Хэлэлцээр зохицуулагч" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Нээлттэй хүснэгтүүдийг харуулах" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Дагавар хостыг харуулах" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Дагавар төлвийг харуулах" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Асуудлын утгыг цэвэрлэх" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Ажиллах үеийн мэдээлэл" - -#: server_status.php:830 -msgid "All status variables" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:832 -msgid "Monitor" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "s MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:834 -msgid "Advisor" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Талбаруудын тоо" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Да.дуудах" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Нууц үгийг солихгүй" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Нээлттэй хүснэгтүүдийг харуулах" - -#: server_status.php:914 -msgid "Filter by category..." +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Нээлттэй хүснэгтүүдийг харуулах" +#: server_status.php:122 +msgid "Replication status" +msgstr "" -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Хамаарал" +#: server_status.php:139 +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:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Асуултын төрөл" +#: server_status.php:149 +msgid "Received" +msgstr "Ирсэн" -#: server_status.php:966 +#: server_status.php:168 +msgid "Sent" +msgstr "Илгээгдэв" + +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "ХИ. давхацсан холболтууд" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Бүтэлгүйтсэн оролдлого" + +#: server_status.php:253 +msgid "Aborted" +msgstr "Таслагдсан" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "Команд" + +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Мэдээлэл" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 +#: server_status_monitor.php:472 +msgid "Start Monitor" +msgstr "" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Шинэ талбар нэмэх" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Да.дуудах" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Багана нэмэх/устгах" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "" + +#: server_status_monitor.php:544 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Мэдээлэл" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Хүснэгтүүд сонго" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Хүснэгтийн буруу нэр" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Шинэ хэрэглэгч нэмэх" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Мөрийн статистик" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Бүгдийг сонгох" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Асуултын төрөл" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундэд" +msgstr[1] "секундэд" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "хэрэглэгдэж байна" +msgstr[1] "хэрэглэгдэж байна" + +#: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1044 +#: server_status_queries.php:103 msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: server_status.php:1047 +#: server_status_queries.php:106 msgid "#" msgstr "" -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" msgstr "" -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "s MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Нууц үгийг солихгүй" -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Нээлттэй хүснэгтүүдийг харуулах" + +#: server_status_variables.php:94 +msgid "Filter by category..." msgstr "" -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Хамаарал" -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Ирсэн" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Илгээгдэв" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "ХИ. давхацсан холболтууд" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Бүтэлгүйтсэн оролдлого" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Таслагдсан" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Команд" - -#: server_status.php:1527 +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "its the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11133,16 +11298,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11154,11 +11319,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11166,7 +11331,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11174,7 +11339,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11182,23 +11347,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11208,7 +11373,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11218,7 +11383,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11226,7 +11391,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11236,7 +11401,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11244,7 +11409,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11256,7 +11421,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11268,35 +11433,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11306,7 +11471,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11318,11 +11483,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11330,7 +11495,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11338,11 +11503,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11350,7 +11515,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11359,244 +11524,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1574 +#: server_status_variables.php:516 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 "" -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "" -#: server_status.php:1582 +#: server_status_variables.php:541 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 "" -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "" -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "" -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1594 +#: server_status_variables.php:579 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 "" -#: server_status.php:1595 +#: server_status_variables.php:584 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 "" -#: server_status.php:1596 +#: server_status_variables.php:588 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 "" -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1599 +#: server_status_variables.php:599 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 "" -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 "" -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "" -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "" -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11604,99 +11769,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1620 +#: server_status_variables.php:679 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 "" -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1622 +#: server_status_variables.php:686 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 "" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1630 +#: server_status_variables.php:717 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 "" -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11704,18 +11869,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1636 +#: server_status_variables.php:740 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 "" -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11723,218 +11888,16 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Шинэ талбар нэмэх" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Да.дуудах" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Багана нэмэх/устгах" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "" - -#: server_status.php:1856 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Мэдээлэл" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Өгөгдлийн санг д.нэрлэх нь" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Хүснэгтүүд сонго" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Хүснэгтийн буруу нэр" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Шинэ хэрэглэгч нэмэх" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Мөрийн статистик" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Бүгдийг сонгох" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Асуултын төрөл" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундэд" -msgstr[1] "секундэд" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "хэрэглэгдэж байна" -msgstr[1] "хэрэглэгдэж байна" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12510,149 +12473,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Асуултын төрөл" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "ӨС байхгүй" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -12797,13 +12760,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Showing SQL query" msgid "Slow query logging" msgstr "SQL асуудал харуулах" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12819,133 +12782,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Хүснэгтүүд сонго" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "General relation features" msgid "Current version: %s" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "PHP Version" msgid "Minor Version" msgstr "PHP хувилбар" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Тайлбар" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-кодлол" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Асуудлын нөөцлөл" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Сервэрээс хариу алга" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12953,23 +12926,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Асуудлын нөөцлөл" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Асуудлын нөөцлөл" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s хүснэгт(үүд)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13363,310 +13336,310 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of index reads from memory" msgstr "ХИ. давхацсан холболтууд" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Хүснэгт үүсгэх" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Оруулсан файлын тогтнол" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Оруулсан файлын тогтнол" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening files is high." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Буфферийн хэмжээг эрэмбэлэх" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Буфферийн хэмжээг эрэмбэлэх" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Сервэрээс хариу алга" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "ХИ. давхацсан холболтууд" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "ХИ. давхацсан холболтууд" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13781,17 +13754,17 @@ msgid "" "it should not be below 20%%" msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Буффер pool хэмжээ" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13805,24 +13778,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Буффер pool хэмжээ" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Буффер pool хэмжээ" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13837,7 +13810,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13846,31 +13819,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "ХИ. давхацсан холболтууд" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "ХИ. давхацсан холболтууд" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Сервэр сонго" + +#~ msgid "Runtime Information" +#~ msgstr "Ажиллах үеийн мэдээлэл" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Талбаруудын тоо" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Да.дуудах" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Асуултын төрөл" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ms.po b/po/ms.po index 7f9fb2d499..bb0c959ca5 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: malay \n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -43,7 +43,7 @@ msgstr "" msgid "Search" msgstr "Cari" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -73,21 +73,21 @@ msgstr "Cari" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Pergi" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Keterangan" @@ -110,18 +110,18 @@ msgstr "" msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,14 +135,14 @@ msgstr "Komen jadual" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Nama Kolum" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Jenis" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Jenis" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Asal" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Asal" msgid "Links to" msgstr "Pautan ke" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Komen" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Tidak" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ya" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Jadual" @@ -341,7 +341,7 @@ msgstr "Saiz" msgid "in use" msgstr "sedang digunakan" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "sedang digunakan" msgid "Creation" msgstr "Cipta" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Cipta" msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -413,7 +413,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Pangkalan Data" @@ -421,18 +421,18 @@ msgstr "Pangkalan Data" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Cipta" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -447,7 +447,7 @@ msgstr "Aksi" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Papar" @@ -463,11 +463,11 @@ msgstr "" msgid "Drop" msgstr "Gugur" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -476,11 +476,11 @@ msgstr "" msgid "Versions" msgstr "Operasi" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Struktur sahaja" @@ -554,48 +554,48 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy msgid "Add a point" msgstr "Tambah medan baru" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Baris ditamatkan oleh" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -605,17 +605,17 @@ msgstr "" msgid "Add a linestring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy msgid "Add a polygon" msgstr "Tambah medan baru" @@ -744,8 +744,9 @@ msgstr "Ciri-ciri hubungan am" msgid "Database server" msgstr "pangkalan data" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Pelayan" @@ -766,7 +767,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Pengguna" @@ -1009,12 +1010,12 @@ msgstr "Tiada Privilej" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1024,17 +1025,17 @@ msgstr "" msgid "Edit" msgstr "Ubah" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pilihan Pelayan" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "kueri-SQL" @@ -1046,13 +1047,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1067,53 +1069,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Pilihan Pelayan" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Proses-proses" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Hubungan" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Statistik Baris" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1121,210 +1086,215 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy msgid "Query cache efficiency" msgstr "Jenis Kueri" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy msgid "Query cache usage" msgstr "Jenis Kueri" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy msgid "Query cache used" msgstr "Jenis Kueri" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Jumlah" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Jumlah" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Hubungan" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Proses-proses" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s jadual" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Operasi" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy msgid "Remove chart" msgstr "Tukarnama jadual ke" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Tiada" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1332,515 +1302,517 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Simpan sebagai fail" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Membenarkan" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Tidak Membenarkan" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Tiada pangkalan data" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Tiada pangkalan data" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Terangkan Kod SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Masa" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Jumlah" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "Hasil SQL" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Jadual" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "Tiada Jadual" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy msgid "Edit chart" msgstr "Tambah medan baru" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "kueri-SQL" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Statistik pangkalan data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Bilangan baris per halaman" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Jumlah" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy msgid "Reload page" msgstr "Tukarnama jadual ke" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Kemaskini Kueri" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentasi" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentasi" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Local" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Proses-proses" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy msgid "Renaming Databases" msgstr "Tukarnama jadual ke" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy msgid "Reload Database" msgstr "Tukarnama jadual ke" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy msgid "Copying Database" msgstr "Tiada pangkalan data" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Table must have at least one column" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Guna Jadual" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Indeks" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Papar grid" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Membenarkan" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Tidak Membenarkan" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Cari" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "kueri-SQL" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "kueri-SQL" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Lungsur" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Padam" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Bilangan baris per halaman" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Tambah Pengguna Baru" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "kueri-SQL" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ubah" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1849,217 +1821,222 @@ msgstr "" msgid "Save" msgstr "Simpan" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Cari" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Tambah/Padam Kolum Medan" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Query results" msgstr "Hasil SQL" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Abai" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy msgid "Add columns" msgstr "Tambah medan baru" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Nama Kolum" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Papar baris" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Papar semua" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Indeks" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2067,30 +2044,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2098,96 +2075,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mei" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2195,78 +2172,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dis" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2274,113 +2251,113 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "Records" msgid "Second" @@ -2432,16 +2409,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per jam" @@ -2467,7 +2444,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Menaik" @@ -2476,7 +2453,7 @@ msgstr "Menaik" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Menurun" @@ -2597,7 +2574,7 @@ msgstr "Melonggok data bagi jadual" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Padam" @@ -2798,7 +2775,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Bunuh" @@ -2853,12 +2830,13 @@ msgstr "Tanda Semua" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" @@ -2866,7 +2844,7 @@ msgstr "Eksport" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2950,16 +2928,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2973,21 +2951,21 @@ msgstr "Tiada indeks ditafrifkan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinaliti" @@ -2997,13 +2975,13 @@ msgstr "Kardinaliti" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Komen" @@ -3047,7 +3025,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -3120,37 +3098,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Binari" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3199,6 +3178,109 @@ msgstr "Tiada Jadual" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "kueri-SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Jenis Kueri" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Penyelitan Lanjutan" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Jadual-jadual" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Medan" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Papar jadual" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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 +#, fuzzy +msgid "Query statistics" +msgstr "Statistik Baris" + +#: 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." @@ -3292,7 +3374,7 @@ msgstr "Operasi" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Nilai" @@ -3693,11 +3775,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "kueri-SQL" - #: libraries/Util.class.php:710 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:292 @@ -3732,7 +3809,7 @@ msgid "Create PHP Code" msgstr "Cipta Kod PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3829,13 +3906,6 @@ msgstr "Cetak" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Jadual-jadual" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3878,22 +3948,22 @@ msgstr "" msgid "Check Privileges" msgstr "Tiada Privilej" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3904,38 +3974,38 @@ msgid "" msgstr "" "$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi." -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6070,8 +6140,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Namapengguna:" @@ -6726,10 +6796,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7391,18 +7457,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Alter table order by" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7507,17 +7573,17 @@ msgid "Drop the database (DROP)" msgstr "Tiada pangkalan data" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Struktur sahaja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Data sahaja" @@ -7936,8 +8002,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Hos" @@ -8460,7 +8525,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Pembolehubah" @@ -9011,7 +9076,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9709,7 +9774,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10074,7 +10139,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10155,37 +10220,37 @@ msgstr "Jadual %s telah digugurkan" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Penggunaan" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Cipta indeks baru" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kata Pengenalan" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10305,16 +10370,11 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Medan" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10399,7 +10459,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Versi PHP" @@ -10460,10 +10520,6 @@ msgstr "Bebenang %s telah berjaya dimatikan." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10595,879 +10651,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Jenis Kueri" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Penyelitan Lanjutan" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "DiTerima" + +#: server_status.php:168 +msgid "Sent" +msgstr "Hantar" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Papar jadual" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Percubaan Gagal" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "DiBatalkan" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Arahan" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informasi MasaJana" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Bilangan baris per halaman" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Dijana oleh" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Jangan tukar katalaluan" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Papar jadual" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Papar jadual" - -#: server_status.php:930 -#, fuzzy -msgid "Related links:" -msgstr "Operasi" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Jenis Kueri" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Fungsi" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Penyataan" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "DiTerima" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Hantar" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Percubaan Gagal" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "DiBatalkan" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Arahan" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Fail bagi set Aksara:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -msgid "Thread cache hit rate (calculated value)" -msgstr "Jenis Kueri" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sab" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "Tambah medan baru" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11476,7 +10825,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11484,18 +10833,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11503,11 +10852,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11515,89 +10864,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy msgid "Preset chart" msgstr "Tukarnama jadual ke" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Pilih Jadual" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Tambah Pengguna Baru" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "kueri-SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Statistik Baris" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Sila pilih pangkalan data" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Jenis Kueri" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11605,7 +10954,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekod" msgstr[1] "Rekod" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11613,6 +10962,621 @@ msgid_plural "%d minutes" msgstr[0] "sedang digunakan" msgstr[1] "sedang digunakan" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Penyataan" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Jangan tukar katalaluan" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Papar jadual" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Papar jadual" + +#: server_status_variables.php:133 +#, fuzzy +msgid "Related links:" +msgstr "Operasi" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Limits the number of new connections the user may open per hour." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Fail bagi set Aksara:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +msgid "Thread cache hit rate (calculated value)" +msgstr "Jenis Kueri" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12186,147 +12150,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Jenis Kueri" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Tiada pangkalan data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versi Pelayan" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" @@ -12468,12 +12432,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "kueri-SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy msgid "The slow query log is disabled." msgstr "Jenis Kueri" @@ -12488,127 +12452,137 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Pilih Jadual" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Versi Pelayan" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Versi PHP" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Keterangan" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Set Aksara MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy msgid "The query cache is not enabled." msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12616,21 +12590,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s jadual" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13005,284 +12979,284 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "kueri-SQL" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "kueri-SQL" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "kueri-SQL" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "kueri-SQL" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Cipta Halaman baru" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Fail bagi set Aksara:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Fail bagi set Aksara:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Fail bagi set Aksara:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Fail bagi set Aksara:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy msgid "The thread cache is set to 0" msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format msgid "Thread cache hit rate %%" msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy msgid "Thread cache is not efficient." msgstr "Jenis Kueri" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Hubungan" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Hubungan" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13409,20 +13383,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13437,7 +13411,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13446,25 +13420,47 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Pilihan Pelayan" + +#~ msgid "Runtime Information" +#~ msgstr "Informasi MasaJana" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Bilangan baris per halaman" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Dijana oleh" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Jenis Kueri" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/nb.po b/po/nb.po index 9a5f51e9fa..c49a6d63cb 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:05+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Norwegian Bokmål " -"\n" -"Language: nb\n" +"Language-Team: Norwegian Bokmål \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +46,7 @@ msgstr "" msgid "Search" msgstr "Søk" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +76,21 @@ msgstr "Søk" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Utfør" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nøkkel" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Beskrivelse" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,12 +137,12 @@ msgstr "Tabellkommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolonne" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Kolonne" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Standard" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Standard" msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nei" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Nei" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ja" @@ -316,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabell" @@ -336,7 +336,7 @@ msgstr "Størrelse" msgid "in use" msgstr "i bruk" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -344,7 +344,7 @@ msgstr "i bruk" msgid "Creation" msgstr "Opprettet" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -352,7 +352,7 @@ msgstr "Opprettet" msgid "Last update" msgstr "Sist oppdatert" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -404,7 +404,7 @@ msgstr "Overvåkede tabeller" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Database" @@ -412,17 +412,17 @@ msgstr "Database" msgid "Last version" msgstr "Siste versjon" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Opprettet" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -437,7 +437,7 @@ msgstr "Handling" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Vis" @@ -453,11 +453,11 @@ msgstr "Slett overvåkningsdata for denne tabellen" msgid "Drop" msgstr "Slett" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ikke aktiv" @@ -465,11 +465,11 @@ msgstr "ikke aktiv" msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" @@ -537,45 +537,45 @@ msgstr "Bruk OpenStreetMaps som baselag" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punkt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Peker %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Legg til peker" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Ytre ring" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Indre ring" @@ -583,15 +583,15 @@ msgstr "Indre ring" msgid "Add a linestring" msgstr "Legg til linjestreng" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Legg til en indre ring" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Legg til polygon" @@ -743,8 +743,9 @@ msgstr "Flere innstillinger" msgid "Database server" msgstr "Brukerdatabase" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Tjener" @@ -765,7 +766,7 @@ msgstr "Protokollversjon" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Bruker" @@ -1022,12 +1023,12 @@ msgstr "Oppfrisker privilegiene" msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Lukk" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1037,15 +1038,15 @@ msgstr "Lukk" msgid "Edit" msgstr "Rediger" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Live trafikk-graf" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Live tilkbl./prosess-graf" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Live spørrings-graf" @@ -1056,13 +1057,14 @@ msgstr "Statistikkdata" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Annet" @@ -1077,48 +1079,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB sendt siden sist oppdatering" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB mottatt siden sist oppdatering" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Servertrafikk (i KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Tilkoblinger siden sist oppdatering" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Prosesser" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Tilkoblinger/prosesser" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Spørringer siden sist oppdatering" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Spørringer (executed statements av serveren)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Spørringsstatistikk" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Lokal monitor-konfigurasjon er inkompatibel" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1131,196 +1099,201 @@ msgstr "" "Vennlist tilbakestill din konfigurasjon til standard i menyen " "Innstillinger." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Spørrings cache effektivitet" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Spørrings cache bruk" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Spørrings cache brukt" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "System CPU-bruk" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "System minne" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Systembytte" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Gjennomsnitt load" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Totalt minne" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Cached minne" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Buffered minne" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Ledig minne" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Brukt minne" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Totalt swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Cached swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Brukt swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Ledig swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "tilkoblinger" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Prosesser" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabell(er)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Spørringer" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Innstillinger" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Fjern graf" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Rediger tittel og etiketter" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Legg graf til grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Legg minst én variabel til serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Ingen" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Gjenoppta monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pause overvåkning" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktivert." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log er aktivert." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktivert." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktivert." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output er ikke satt til TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output er satt til TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1331,12 +1304,12 @@ msgstr "" "lenger enn %d sekunder. Avhengig av ditt system, er det tilrådelig å sette " "long_query_time til 0-2 sekunder." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er satt til %d sekund(er)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1345,30 +1318,30 @@ msgstr "" "omstart av server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Lagre utdata til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktiver %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Sett long_query_time til %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1376,53 +1349,53 @@ msgstr "" "Du kan ikke endre disse verdiene. Logg inn som root eller kontakt din " "databaseadministrator." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Endre innstillinger" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Fremstillings-tittel" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Differensial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Delt på %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Enhet" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Fra langsom logg" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Fra generell logg" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyserer logger" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer og laster inn logger. Dette kan ta tid." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Avbryt forespørsel" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1432,7 +1405,7 @@ msgstr "" "Men kun SQL-spørringene har blitt brukt som en grupperingskriterie, så andre " "attributter i spørringer som starter samtidig kan variere." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1442,100 +1415,100 @@ msgstr "" "spørringer i samme tabellen bli gruppert sammen, uten hensyn til de innsatte " "dataene." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Loggdata lastet inn. Spørringer vil bli utført i løpet av denne tidsplanen:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Gå til Loggtabellen" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Ingen data funnet" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Logg analysert, men ingen data var funnet i løpet av tidsperioden." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Forklar utdata" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tid" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Total tid:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profileringsresultater" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabell" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafisk fremstilling" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Endre fremstilling" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serier" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Logg tabellfiltervalgene" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrer" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrer spørringer med ord/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Grupper spørringer, og ignorer varierende data brukt i WHERE-muligheter" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Sum av grupperte rader:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Totalt:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Laster logger" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Visningsoppdatering feilet" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1545,256 +1518,258 @@ msgstr "" "respons. Dette er mest sannsynlig begrunnet at din sesjon utgikk. Det burde " "hjelpe å laste inn siden og logge inn på nytt." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Oppdater siden" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Berørte rader:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Feilet analyseringen av konfigurasjonsfilen. Det virker ikke som det er " "gyldig JSON-kode." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramrutenett med importert konfigurasjon. Setter til " "standardkonfigurasjon…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importer overvåkningskonfigurasjon" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Velg filen du vil importere" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyser Spørring" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mulige ytelsesproblemer" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Begrunnelse" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Brukt variabel / formel" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Laster" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Prosessforespørsel" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Dropper kolonne" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Legger til primærnøkkel" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klikk for å overse dette varselet" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Endrer databasenes navn" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Gjennlast database" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopierer database" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Endrer tegnsett" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabellen må ha minst en kolonne" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Sett inn tabell" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Skjul indekser" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Vis indekser" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Kontroll av fremmednøkler:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Aktivert)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Deaktivert)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Søker" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Skjul søkeresultater" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Vis søkeresultater" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Leser" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisjonen av en lagret funksjon må inneholde RETURN erklæring!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Verdier for kolonne %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Verdier for ny kolonne" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Skriv hver verdi i et eget felt" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Legg til %d verdi(er)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Legg merke til: Om filen inneholder flere tabeller, så vil de kombineres til " "en tabell" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Skjul spørringsboks" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Endre" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Spørringens utførelsestid" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1803,88 +1778,88 @@ msgstr "%d er ikke et gyldig radnummer." msgid "Save" msgstr "Lagre" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Utvidet søk" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Hvert punkt representerer en datarad." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Ved å ha musen over punktet vises dets etikett." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For å zoome inn, velger en del for plotteområdet med musen." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Velg et datapunkt for å vise, og eventuelt endre raden med data." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Velg to kolonner" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Velg to forskjellige kolonner" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Spørringsresultater" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopier" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Legg til kolonner" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1892,15 +1867,20 @@ msgstr "" "Du har ikke lagret endringene i utseendet. De vil forsvinne om du ikke " "lagrer dem. Ønsker du å fortsette?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Legg til valg for kolonne " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Trykk escape for å avbryte endring" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1908,33 +1888,33 @@ msgstr "" "Du har endret en del data og de har ikke blitt lagret. Er du sikker på at du " "vil forlate denne siden før du lagrer dataene?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Dra for å omplassere" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klikk for å sortere" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klikk for å markere/ta vekk markering" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Dobbelklikk for å kopiere kolonnenavn" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klikk pilen som peker ned
for å bytte på kolonnens synlighet" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1945,64 +1925,64 @@ msgstr "" "Du kan også endre de fleste kolonnene
ved å klikke direkte på " "innholdet." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Du kan også endre de fleste kolonnene
ved å klikke direkte på " "innholdet." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Gå til link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopier kolonnenavn" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Høyreklikk på kolonnenavnet for å kopiere det til utklippstavlen." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Vis datarad(er)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generer" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mer" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Vis alle" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Skjul indekser" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2012,266 +1992,266 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "er oppdatert" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Utført" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "I dag" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Januar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Februar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mars" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "April" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "August" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Des" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Mandag" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Fredag" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Uke" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Time" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minutt" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekund" @@ -2321,16 +2301,16 @@ msgstr "Uventede karakterer på linje %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Uventet karakter på linje %1$s. Forventet \"tab\", men fant \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minutt" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per time" @@ -2356,7 +2336,7 @@ msgstr "Fontstørrelse" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Stigende" @@ -2365,7 +2345,7 @@ msgstr "Stigende" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Synkende" @@ -2479,7 +2459,7 @@ msgstr "Slett treffene for %s tabellen?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Slett" @@ -2653,7 +2633,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Avslutt" @@ -2708,12 +2688,13 @@ msgstr "Merk alle" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" @@ -2721,7 +2702,7 @@ msgstr "Eksporter" msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2808,16 +2789,16 @@ msgstr "Kan ikke lese (flyttet) opplastet fil." msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "JavaScript må være slått på forbi dette punktet" @@ -2829,21 +2810,21 @@ msgstr "Ingen indeks definert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indekser" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitet" @@ -2853,13 +2834,13 @@ msgstr "Kardinalitet" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Sammenligning" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentar" @@ -2904,7 +2885,7 @@ msgstr "Vis" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -2977,34 +2958,35 @@ msgstr "Hendelser" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Brukere" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binærlogg" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikering" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Programtillegg" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motorer" @@ -3052,6 +3034,107 @@ msgstr "Tidligere tabeller" msgid "There are no recent tables" msgstr "Det er ikke noen nylig brukte tabeller" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-spørring" + +#: libraries/ServerStatusData.class.php:184 +#, fuzzy +msgid "Handler" +msgstr "Behandler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Spørringsmellomlager" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Tråder" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Midlertidige data" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Forsinkede innsettinger" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Nøkkelmellomlager" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Sammenføyninger" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortering" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabeller" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaksjonskoordinator" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Filer" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (lukk) alle tabeller" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Vis åpne tabeller" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Vis slaveverter" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Vis masterstatus" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Vis slavestatus" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Flush spørringsbufferen" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Spørringsstatistikk" + +#: libraries/ServerStatusData.class.php:349 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Se slavestatustabell" + +#: 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." @@ -3149,7 +3232,7 @@ msgstr "Operatør" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Verdi" @@ -3541,11 +3624,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-spørring" - #: libraries/Util.class.php:710 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:292 @@ -3580,7 +3658,7 @@ msgid "Create PHP Code" msgstr "Lag PHP kode" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Oppdater" @@ -3676,13 +3754,6 @@ msgstr "Skriv ut" msgid "shared" msgstr "delt" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabeller" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3723,11 +3794,11 @@ msgstr "Kontroller privilegier for databasen "%s"." msgid "Check Privileges" msgstr "Kontroller privilegier" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Kunne ikke lese konfigurasjonsfilen" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3735,12 +3806,12 @@ msgstr "" "Dette mener vanligvis at det er en syntaksfeil i det, sjekk mulige feil som " "vises under." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3748,38 +3819,38 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] variabelen MÅ være innstilt i din " "konfigurasjonsfil!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "mulig sikkerhetshull" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numerisk nøkkel oppdaget" @@ -6040,8 +6111,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Brukernavn" @@ -6698,10 +6769,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Mellomlagerbruk" @@ -7414,18 +7481,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Endre tabellrekkefølge ved" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7523,17 +7590,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Kun struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Bare data" @@ -7951,8 +8018,7 @@ msgstr "Vis MIME-typer" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Vert" @@ -8551,7 +8617,7 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabler" @@ -9143,7 +9209,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9848,7 +9914,7 @@ msgstr "Legg prefiks til tabell" msgid "Check tables having overhead" msgstr "Merk overheng" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10207,7 +10273,7 @@ msgstr "Veksle mellom liten/stor" msgid "Toggle relation lines" msgstr "For å velge relasjon, klikk :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" @@ -10289,41 +10355,41 @@ msgstr "Siden har blitt opprettet" msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sider" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importer filer" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Lag en ny indeks" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Brukernavn" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "anbefalt" @@ -10451,15 +10517,11 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Filer" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -10544,7 +10606,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versjon" @@ -10605,10 +10667,6 @@ msgstr "Mastertjener endret til %s" msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Vis masterstatus" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" @@ -10756,203 +10814,30 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status.php:657 -#, fuzzy -msgid "Handler" -msgstr "Behandler" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Spørringsmellomlager" - -#: server_status.php:659 -msgid "Threads" -msgstr "Tråder" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Midlertidige data" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Forsinkede innsettinger" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Nøkkelmellomlager" - -#: server_status.php:664 -msgid "Joins" -msgstr "Sammenføyninger" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortering" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaksjonskoordinator" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (lukk) alle tabeller" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Vis åpne tabeller" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Vis slaveverter" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Vis slavestatus" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Flush spørringsbufferen" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Kjøringsinformasjon" - -#: server_status.php:830 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Se slavestatustabell" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Antall rader:" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Oppdater" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Filter" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Ikke endre passordet" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Vis åpne tabeller" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Vis åpne tabeller" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relasjoner" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Spørringstype" - -#: server_status.php:966 -#, fuzzy -msgid "Instructions" -msgstr "Informasjon" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Endre oppstartssiden" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Oversikt" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10960,19 +10845,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10980,11 +10865,11 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10992,47 +10877,339 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Mottatt" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Sendt" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Kommando" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +msgid "Instructions" +msgstr "Informasjon" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "CHAR textarea rows" +msgid "Start Monitor" +msgstr "CHAR textarea rader" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Utfør indeks(er)" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Oppdater" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR textarea kolonner" + +#: server_status_monitor.php:521 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Feilbehandling:" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Gjennopprett standard verdi" + +#: server_status_monitor.php:544 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Informasjon" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Fjern database" + +#: server_status_monitor.php:614 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Se slavestatustabell" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Velg tabeller" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Ugylding tabellnavn" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Legg til en ny tjener" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL spørringer" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Vis statistikk" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select page" +msgid "Selected time range:" +msgstr "Velg side" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Spørringstype" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekund" +msgstr[1] "Sekund" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutt" +msgstr[1] "Minutt" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Endre oppstartssiden" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Oversikt" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Filter" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Ikke endre passordet" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Vis åpne tabeller" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Vis åpne tabeller" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relasjoner" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11042,17 +11219,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11064,11 +11241,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11076,7 +11253,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11084,7 +11261,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11092,23 +11269,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11118,7 +11295,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11128,7 +11305,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11137,7 +11314,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11148,7 +11325,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11156,7 +11333,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11168,7 +11345,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11180,37 +11357,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11219,7 +11396,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11231,11 +11408,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11243,7 +11420,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11251,11 +11428,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11263,7 +11440,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11277,55 +11454,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11333,35 +11510,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11369,51 +11546,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11422,7 +11599,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11430,7 +11607,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11439,17 +11616,17 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11459,26 +11636,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11489,17 +11666,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11507,38 +11684,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11551,7 +11728,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11559,19 +11736,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11579,11 +11756,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11591,7 +11768,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11599,15 +11776,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11615,12 +11792,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11628,12 +11805,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11643,24 +11820,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11672,7 +11849,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11682,11 +11859,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11697,228 +11874,16 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:1799 -#, fuzzy -#| msgid "CHAR textarea rows" -msgid "Start Monitor" -msgstr "CHAR textarea rader" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Utfør indeks(er)" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Oppdater" - -#: server_status.php:1835 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR textarea kolonner" - -#: server_status.php:1851 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Feilbehandling:" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Gjennopprett standard verdi" - -#: server_status.php:1856 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Informasjon" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Fjern database" - -#: server_status.php:1906 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Se slavestatustabell" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Velg tabeller" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Ugylding tabellnavn" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Legg til en ny tjener" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL spørringer" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Vis statistikk" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select page" -msgid "Selected time range:" -msgstr "Velg side" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Spørringstype" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekund" -msgstr[1] "Sekund" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minutt" -msgstr[1] "Minutt" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12601,29 +12566,29 @@ msgstr "Fremmednøkkelbegrensning" msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL spørringer utført." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12631,131 +12596,131 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "Samle feilmeldinger" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Slett overvåkningsdata for denne tabellen" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ingen databaser" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL utførelse" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Vis versjoner" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Deaktiver overvåkning av %s.%s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deaktiver nå" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktiver overvåkning av %s.%s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktiver nå" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Opprett versjon %s av %s.%s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Opprett versjon" @@ -12899,13 +12864,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time er satt til %d sekund(er)." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Vis spørringsboks" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12923,133 +12888,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time er satt til %d sekund(er)." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time er satt til %d sekund(er)." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Velg tabeller" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Opprett versjon" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Versjon" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Beskrivelse" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-tegnsett" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Spørringsmellomlager" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Tjeneren svarer ikke" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13057,23 +13034,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Spørringsmellomlager" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Spørringsmellomlager" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s tabell" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13475,270 +13452,270 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Vis SQL spørringer" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Opprett tabell" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Antall ventende skrivinger." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Importfilformat" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Importfilformat" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Antall ventende loggfil-fsyncs." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Opprett ny tabell i database %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sorteringsbufferstørrelse" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sorteringsbufferstørrelse" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sorteringsbufferstørrelse" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Nøkkelmellomlager" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Overvåkning er ikke aktiv." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Overvåkning er ikke aktiv." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Overvåkning er ikke aktiv." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sorteringsbufferstørrelse" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Antall tråder som ikke sover." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Antall tråder som ikke sover." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time er satt til %d sekund(er)." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13746,50 +13723,50 @@ msgid "" "launch" msgstr "Antall tråder som ikke sover." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time er satt til %d sekund(er)." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Vedvarende forbindelser" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Vedvarende forbindelser" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Tillater oppretting av midlertidige tabeller." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13904,17 +13881,17 @@ msgid "" "it should not be below 20%%" msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Mellomlagerstørrelse" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13928,24 +13905,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Mellomlagerstørrelse" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Mellomlagerstørrelse" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13960,7 +13937,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13969,31 +13946,67 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "maks. samtidige tilkoblinger" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "maks. samtidige tilkoblinger" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "maks. samtidige tilkoblinger" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB sendt siden sist oppdatering" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB mottatt siden sist oppdatering" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Servertrafikk (i KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Tilkoblinger siden sist oppdatering" + +#~ msgid "Questions since last refresh" +#~ msgstr "Spørringer siden sist oppdatering" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Spørringer (executed statements av serveren)" + +#~ msgid "Runtime Information" +#~ msgstr "Kjøringsinformasjon" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Antall rader:" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Oppdater" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Spørringstype" + #, fuzzy #~| msgid "Show versions" #~ msgid "Show more actions" diff --git a/po/nl.po b/po/nl.po index 84ec49783c..96c3b3374e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Dutch \n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -45,7 +45,7 @@ msgstr "" msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -75,21 +75,21 @@ msgstr "Zoeken" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Start" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Beschrijving" @@ -112,17 +112,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databank %1$s werd aangemaakt." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Databankopmerking: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -136,12 +136,12 @@ msgstr "Tabelopmerkingen" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -159,11 +159,11 @@ msgstr "Kolom" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -175,11 +175,11 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Leeg" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -190,11 +190,11 @@ msgstr "Leeg" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Standaardwaarde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -203,7 +203,7 @@ msgstr "Standaardwaarde" msgid "Links to" msgstr "Verwijst naar" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -216,7 +216,7 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -234,12 +234,12 @@ msgstr "Opmerkingen" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nee" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -262,8 +262,8 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ja" @@ -316,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabel" @@ -336,7 +336,7 @@ msgstr "Grootte" msgid "in use" msgstr "in gebruik" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -344,7 +344,7 @@ msgstr "in gebruik" msgid "Creation" msgstr "Gecreëerd" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -352,7 +352,7 @@ msgstr "Gecreëerd" msgid "Last update" msgstr "Laatst bijgewerkt" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -404,7 +404,7 @@ msgstr "Tabellen met tracker" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databank" @@ -412,17 +412,17 @@ msgstr "Databank" msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -437,7 +437,7 @@ msgstr "Actie" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Toon" @@ -453,11 +453,11 @@ msgstr "Verwijder tracking data voor deze tabel" msgid "Drop" msgstr "Verwijderen" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "niet actief" @@ -465,11 +465,11 @@ msgstr "niet actief" msgid "Versions" msgstr "Versies" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Structuur-snapshot" @@ -538,47 +538,47 @@ msgstr "Gebruik OpenStreetMaps als basislayer" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punt %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Voeg een punt toe" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Lijnstuk definitie" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Aangeschreven cirkel" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Ingeschreven cirkel" @@ -586,15 +586,15 @@ msgstr "Ingeschreven cirkel" msgid "Add a linestring" msgstr "Voeg een lijnstuk toe" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Voeg een ingeschreven cirkel toe" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygoon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Voeg een veelhoek toe" @@ -742,8 +742,9 @@ msgstr "Overige instellingen" msgid "Database server" msgstr "Databankserver" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -762,7 +763,7 @@ msgstr "Protocolversie" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Gebruiker" @@ -1007,12 +1008,12 @@ msgstr "Rechten worden herladen" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Sluiten" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1022,15 +1023,15 @@ msgstr "Sluiten" msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Grafiek met huidig dataverkeer" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Live conn./process grafiek" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Grafiek van actieve queries" @@ -1041,13 +1042,14 @@ msgstr "Statische gegevens" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Andere" @@ -1062,48 +1064,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Verzonden KiB sinds laatste verversing" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Ontvangen KiB sinds laatste verversing" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Serververkeer (in KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Verbindingen sinds laatste verversing" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processen" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Verbindingen / Processen" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Questions sinds laatste verversing" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Questions (aantal door de server uitgevoerde opdrachten)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Querystatistieken" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configuratie van lokale monitoring is niet geldig" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1116,196 +1084,201 @@ msgstr "" "Gelieve de instellingen te resetten naar de standaardwaarden in het menu " "Instellingen." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Querycache-efficiëntie" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Querycache-gebruik" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Querycache gebruikt" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "CPU-gebruik" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Systeemgeheugen" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Systeemwisselbestand" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Gemiddelde systeembelasting" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Totaal geheugen" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Gecached geheugen" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Gebufferd geheugen" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Vrij geheugen" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Gebruikt geheugen" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Totaal wisselbestand" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Gecached wisselbestand" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Wisselbestand in gebruik" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Vrij wisselbestand" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Doorgestuurde bytes" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Verbindingen" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processen" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabel(len)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Instellingen" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Grafiek verwijderen" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Titel en labels aanpassen" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Grafiek toevoegen aan raster" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Geen" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Monitor heropstarten" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Monitor pauzeren" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log en slow_query_log zijn ingeschakeld." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log is ingeschakeld." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log is ingeschakeld." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log en general_log zijn uitgeschakeld." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output heeft niet TABLE als instelling." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output is ingesteld op TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1316,12 +1289,12 @@ msgstr "" "duren dan %d seconden. Het is aangeraden om long_query_time in te stellen op " "0-2 seconden, afhankelijk van uw systeem." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is ingesteld op %d seconde(n)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1330,30 +1303,30 @@ msgstr "" "de standaardwaarde bij herstart van de server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "log_ouput instellen op %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s inschakelen" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s uitschakelen" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time instellen op %dsec" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1361,53 +1334,53 @@ msgstr "" "U kan deze variabelen niet wijzigen. Gelieve in te loggen als root of neem " "contact op met de databankbeheerder." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Instellingen wijzigen" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Grafiektitel" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Verschil" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Gedeeld door %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Eenheid" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Uit het logbestand van trage queries" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Uit het algemene logbestand" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Bezig met analyseren van logbestanden" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Logbestanden worden geladen en geanalyseerd. Dit kan even duren." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Aanvraag onderbreken" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1417,7 +1390,7 @@ msgstr "" "de SQL-query werd gebruikt als criterium voor het groeperen, dus andere " "eigenschappen van queries, zoals de starttijd, kunnen verschillend zijn." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1427,102 +1400,102 @@ msgstr "" "queries voor dezelfde tabel ook gegroepeerd worden, zonder rekening te " "houden met de gegevens die ingevoegd worden." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Loggegevens werden geladen. Aantal uitgevoerde queries in deze tijdspanne:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Ga naar tabel Log" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Geen gegevens gevonden" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Log werd geanalyseerd, maar geen gegevens werden gevonden in deze tijdspanne." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Gegevens worden geanalyseerd…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tijd" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Totale tijd:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profiling-resultaten" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafiek" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Grafiek aanpassen" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Reeksen" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Filteropties voor tabel Log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter toepassen" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Queries filteren op woord/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Queries groeperen, verschillende parameter waarden in WHERE-statements " "worden genegeerd" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Aantal gegroepeerde rijen:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Totaal:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Logs worden geladen" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Verversen van monitor mislukt" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1532,257 +1505,259 @@ msgstr "" "gegevens. Dit is waarschijnlijk omdat je sessie afgelopen is. Verversen van " "de pagina en opnieuw aanmelden zou dit probleem moeten oplossen." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Pagina verversen" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Getroffen rijen:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Verwerken van het configuratiebestand is mislukt. Het is geen geldig JSON-" "formaat." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Opbouwen van het raster met grafieken aan de hand van de geïmporteerde " "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importeer monitor configuratie" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Selecteer het bestand dat u wil importeren" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyseer Query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Adviessysteem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mogelijke performantieproblemen" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Probleem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Aanbeveling" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Regeldetails" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Rechtvaardiging" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Gebruikte variabele / formule" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Laden" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Bezig met verwerken" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Fout tijdens het verwerken van de opdracht" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Er zijn geen databanken geselecteerd." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Kolom komt te vervallen" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Primaire sleutel wordt toegevoegd" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "Correct" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klik om deze melding te sluiten" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Databank hernoemen" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ververs databank" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Databank kopiëren" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Karakterset aanpassen" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabel moet minimaal één kolom hebben" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Tabel invoegen" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Indexen verbergen" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Indexen tonen" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Controle op vreemde sleutels:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Ingeschakeld)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Uitgeschakeld)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Zoeken" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Zoekresultaten verbergen" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Zoekresultaten tonen" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Verkennen" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "De definitie van een opgeslagen functie moet een RETURN-statement bevatten!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Waarden voor kolom %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Waarden voor een nieuwe kolom" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Plaats elke waarde in een afzonderlijk veld" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d nieuwe waarde(n) toevoegen" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Opmerking: Als het bestand meerdere tabellen bevat, zullen deze samengevoegd " "worden tot één tabel" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "SQL-queryveld verbergen" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Veranderen" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Query-uitvoertijd" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1791,92 +1766,92 @@ msgstr "%d is geen geldig rijnummer." msgid "Save" msgstr "Opslaan" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Zoekcriteria verbergen" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoeken door in te zoomen" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Ieder punt stelt een gegevensrij voor." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Beweeg over een punt om het label te tonen." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Selecteer een sectie van de grafiek met de muis om in te zoomen." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Klik herstel zoom om terug te keren naar de beginstand." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klik een gegevenspunt aan om dit te bekijken en om eventueel de gegevens te " "bewerken." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "De weergave kan herschaald worden door het langs de hoek rechtsonder te " "slepen." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Selecteer twee kolommen" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Selecteer twee verschillende kolommen" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Queryresultaten" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiëren" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Kolommen toevoegen" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Kies weer te geven veld" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1884,15 +1859,20 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Een optie voor kolom toevoegen " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Druk op ESC om het bewerken te annuleren" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1900,27 +1880,27 @@ msgstr "" "U heeft gegevens bewerkt en deze werden nog niet opgeslagen. Bent u zeker " "dat u deze pagina wil verlaten alvorens de wijzigingen op te slaan?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Sleep om te herschikken" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klik om te sorteren" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klik om te markeren/demarkeren" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Dubbelklik om kolomnaam te kopiëren" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klik op het pijltje
om de zichtbaarheid van de kolom te wijzigen" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1929,7 +1909,7 @@ msgstr "" "checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na " "opslaan." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1938,64 +1918,64 @@ msgid "" "content." msgstr "U kan de meeste kolommen bewerken
door op de inhoud te klikken." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "U kan de meeste kolommen bewerken
door op de inhoud te klikken." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ga naar de link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kolomnaam kopiëren" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klik met de rechtmuistoets op de kolomnaam om deze naar het klembord te " "kopiëren." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Regel(s) met gegevens tonen" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Genereren" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Wachtwoord wijzigen" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Meer" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Toon alles" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Indexen verbergen" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2005,266 +1985,266 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "Recent bijgewerkt" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Klaar" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Vandaag" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "januari" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "februari" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "maart" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "april" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "mei" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "augustus" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "september" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "november" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "zondag" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "maandag" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Week" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalender-maand-jaar" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "geen" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Uur" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Seconde" @@ -2316,16 +2296,16 @@ msgstr "Onverwachte tekens op lijn %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Onverwacht teken op lijn %1$s. Tab verwacht, \"%2$s\" gevonden" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per seconde" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minuut" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per uur" @@ -2353,7 +2333,7 @@ msgstr "Lettertypegrootte" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Oplopend" @@ -2362,7 +2342,7 @@ msgstr "Oplopend" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Aflopend" @@ -2476,7 +2456,7 @@ msgstr "Verwijder gevonden rijen voor de tabel %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Verwijderen" @@ -2646,7 +2626,7 @@ msgid "The row has been deleted" msgstr "De regel werd verwijderd" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "stop proces" @@ -2702,12 +2682,13 @@ msgstr "Selecteer alles" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" @@ -2715,7 +2696,7 @@ msgstr "Exporteren" msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2802,16 +2783,16 @@ msgstr "Het geüploade bestand kan niet gelezen (verplaatst) worden." msgid "Open new phpMyAdmin window" msgstr "Nieuw phpMyAdmin-scherm openen" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript moet ingeschakeld zijn voorbij dit punt" @@ -2823,21 +2804,21 @@ msgstr "Geen index gedefinieerd!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexen" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinaliteit" @@ -2847,13 +2828,13 @@ msgstr "Kardinaliteit" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Collatie" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Opmerking" @@ -2898,7 +2879,7 @@ msgstr "View" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Structuur" @@ -2971,34 +2952,35 @@ msgstr "Gebeurtenissen" msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Gebruikers" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binaire log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicatie" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Engines" @@ -3046,6 +3028,104 @@ msgstr "Recente tabellen" msgid "There are no recent tables" msgstr "Er zijn geen recente tabellen" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-query" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Handler" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Querycache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Threads" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Tijdelijke gegevens" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Vertraagde inserts" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Sleutelcache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joins" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortering" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabellen" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transactiecoördinator" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Bestanden" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Alle tabellen schonen (sluiten)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Toon open tabellen" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Toon slave-hosts" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Toon masterstatus" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Toon slave-status" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Schoon querycache" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Querystatistieken" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "alle statusvariabelen" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Opvolgen" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Raadgever" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3144,7 +3224,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Waarde" @@ -3549,11 +3629,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-query" - #: libraries/Util.class.php:710 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:292 @@ -3588,7 +3663,7 @@ msgid "Create PHP Code" msgstr "Genereer PHP-code" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Vernieuw" @@ -3686,13 +3761,6 @@ msgstr "Afdrukken" msgid "shared" msgstr "gedeeld" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabellen" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3733,11 +3801,11 @@ msgstr "Controleer rechten op databank "%s"." msgid "Check Privileges" msgstr "Controleer rechten" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Lezen van het configuratiebestand is niet gelukt" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3746,12 +3814,12 @@ msgstr "" "hieronder te bekijken." # 'kon niet vanuit "%1$s" geladen worden' is juister. -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3759,38 +3827,38 @@ msgstr "" "De [code]$cfg['PmaAbsoluteUri'][/code] richtlijn MOET ingesteld zijn in het " "configuratiebestand!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "poging om GLOBALS te overschrijven" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "mogelijk misbruik" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" @@ -6097,8 +6165,8 @@ msgid "" msgstr "" "Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Gebruikersnaam" @@ -6764,10 +6832,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Gebruik van Buffer Pool" @@ -7466,20 +7530,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Tabellen filteren op naam" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Reeks leegmaken" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7593,17 +7657,17 @@ msgid "Drop the database (DROP)" msgstr "Verwijder de databank (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Alleen structuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Structuur en gegevens" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Alleen gegevens" @@ -8000,8 +8064,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Machine" @@ -8620,7 +8683,7 @@ msgid "Slave status" msgstr "Slave-status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabelen" @@ -9138,7 +9201,7 @@ msgstr "Attributen" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9851,7 +9914,7 @@ msgstr "Voeg voorvoegsel toe aan tabel" msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Geen" @@ -10202,7 +10265,7 @@ msgstr "Wissel klein/groot" msgid "Toggle relation lines" msgstr "Relatielijnen wisselen" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Coördinaten voor PDF-schema importeren/exporteren" @@ -10271,31 +10334,31 @@ msgstr "De pagina werd aangemaakt" msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Import vanaf geselecteerde pagina" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exporteren naar geselecteerde pagina" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Een pagina aanmaken en ernaar exporteren" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nieuwe paginanaam: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exporteren/importeren naar schaal" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "aangeraden" @@ -10417,15 +10480,11 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Bestanden" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Toon volledige queries" @@ -10509,7 +10568,7 @@ msgstr "Module" msgid "Library" msgstr "Bibliotheek" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versie" @@ -10568,10 +10627,6 @@ msgstr "Masterserver succesvol gewijzigd in %s" msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatieproces." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Toon masterstatus" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Toon verbonden slaves" @@ -10714,12 +10769,12 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatieproces. Wilt u dit " "nu instellen?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10727,119 +10782,92 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het " "al gesloten." -#: server_status.php:657 -msgid "Handler" -msgstr "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Netwerkverkeer sinds opstart: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Querycache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Deze MySQL-server draait inmiddels %1$s. Deze is gestart op %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Deze MySQL-server is ingesteld als master en slave in een " +"replicatieproces." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Tijdelijke gegevens" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Deze MySQL-server is ingesteld als master in een replicatieproces." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Vertraagde inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Deze MySQL-server is ingesteld als slave in een replicatieproces." -#: server_status.php:663 -msgid "Key cache" -msgstr "Sleutelcache" +# Er moet een betere vertaling voor "replication" zijn. "Nadoen"? +# "Deze MySQL-server functioneert als %s in een replicatie proces." +# weggehaald. +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus." -#: server_status.php:664 -msgid "Joins" -msgstr "Joins" +#: server_status.php:122 +msgid "Replication status" +msgstr "Replicatiestatus" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortering" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " +"kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transactiecoördinator" +#: server_status.php:149 +msgid "Received" +msgstr "Ontvangen" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Alle tabellen schonen (sluiten)" +#: server_status.php:168 +msgid "Sent" +msgstr "Verzonden" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Toon open tabellen" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Toon slave-hosts" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Mislukte pogingen" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Toon slave-status" +#: server_status.php:253 +msgid "Aborted" +msgstr "Afgehaakte" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Schoon querycache" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Runtime-informatie" +#: server_status.php:329 +msgid "Command" +msgstr "Opdracht" -#: server_status.php:830 -msgid "All status variables" -msgstr "alle statusvariabelen" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Opvolgen" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Raadgever" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Aantal gegevenspunten : " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Vernieuwingsfrequentie: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filters" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Bevat het woord:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Enkel belangrijke waarden tonen" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filteren op categorie..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Toon niet-opgemaakte waarden" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Gerelateerde links:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Analyse uitvoeren" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Richtlijnen" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10847,7 +10875,7 @@ msgstr "" "De raadgever kan suggesties doen voor servervariabelen door de " "statusvariabelen van de server te analyseren." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10856,7 +10884,7 @@ msgstr "" "Hou er rekening mee dat dit systeem suggesties doet op basis van eenvoudige " "berekeningen en vuistregels, die mogelijk niet goed werken op uw systeem." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10867,7 +10895,7 @@ msgstr "" "wijziging ongedaan kan maken. Verkeerde instellingen kunnen een sterk " "negatief effect hebben op de performantie." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10878,839 +10906,39 @@ msgstr "" "de performantie en de wijziging ongedaan te maken indien er geen " "waarneembare verbetering vastgesteld kon worden." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Questions sinds opstart: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Opdrachten" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Netwerkverkeer sinds opstart: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Deze MySQL-server draait inmiddels %1$s. Deze is gestart op %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Deze MySQL-server is ingesteld als master en slave in een " -"replicatieproces." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Deze MySQL-server is ingesteld als master in een replicatieproces." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Deze MySQL-server is ingesteld als slave in een replicatieproces." - -# Er moet een betere vertaling voor "replication" zijn. "Nadoen"? -# "Deze MySQL-server functioneert als %s in een replicatie proces." -# weggehaald. -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Replicatiestatus" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " -"kunnen de gerapporteerde statistieken afwijken." - -#: server_status.php:1191 -msgid "Received" -msgstr "Ontvangen" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Verzonden" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Max. gelijktijdige verbindingen" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Mislukte pogingen" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Afgehaakte" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Opdracht" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " -"de verbinding keurig af te sluiten." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." - -#: server_status.php:1529 -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 "" -"Het aantal transacties dat gebruik heeft gemaakt van de tijdelijke binaire " -"logcache, maar die groter waren dan binlog_cache_size en daarom gebruik " -"hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " -"te slaan." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." - -#: server_status.php:1532 -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 "" -"Het aantal tijdelijke tabellen op schijf die door de server automatisch " -"aangemaakt werden bij het uitvoeren van queries. Als Created_tmp_disk_tables " -"groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " -"tabellen aan te maken in geheugen in plaats van op harde schijf." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " -"door de server werd aangemaakt tijdens het uitvoeren van opdrachten." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " -"(mogelijk een reeds bestaande sleutel)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " -"tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Het aantal uitgevoerde FLUSH-opdrachten." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Het aantal interne COMMIT-opdrachten." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." - -#: server_status.php:1541 -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 "" -"De MySQL-server kan aan de NDB Cluster-opslagengine vragen naar een tabel " -"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " -"aan hoeveel tabellen met discovery werden opgezocht." - -#: server_status.php:1542 -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 "" -"Het aantal keer dat de eerste eenheid uit een index werd gelezen. Indien " -"hoog geeft dit een indicatie dat de server veel scans doet op de volledige " -"index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." - -#: server_status.php:1543 -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 "" -"Het aantal opdrachten om een rij te lezen op basis van de sleutel. Indien " -"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " -"indexen." - -#: server_status.php:1544 -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 "" -"Het aantal leesopdrachten voor de volgende rij in de sleutelvolgorde. Dit " -"wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " -"of bij het doen van een indexscan." - -#: server_status.php:1545 -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 "" -"Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " -"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Het aantal leesopdrachten voor een rij op een vaste positie. Dit is hoog " -"wanneer er veel gebruik wordt gemaakt van queries waarbij het resultaat " -"gesorteerd moet worden. U gebruikt mogelijk veel queries waarvoor MySQL een " -"gehele tabel moet scannen of er worden joins toegepast die niet goed " -"gebruikmaken van sleutels." - -#: server_status.php:1547 -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 "" -"Het aantal leesopdrachten voor de volgende rij uit het gegevensbestand. Dit " -"is hoog wanneer er voor gebruik wordt gemaakt van tabelscans. Over het " -"algemeen betekend dit dat de gebruikte tabellen niet optimaal van indexen " -"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " -"maken." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Het aantal interne ROLLBACK-opdrachten." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Het aantal update-opdrachten voor een tabelrij." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Het aantal pagina's dat momenteel \"dirty\" is." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Het aantal bufferpool-pagina's dat is geschoond." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Het aantal vrije pagina's." - -#: server_status.php:1555 -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 "" -"Het aantal \"latched pages\" in de InnoDB-bufferpool. Dit zijn pagina's " -"waarin momenteel wordt gelezen of geschreven, of die om een andere reden " -"niet geschoond of verwijderd kunnen worden." - -#: server_status.php:1556 -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 "" -"Het aantal pagina's dat in gebruik is voor administratieve doeleinden, zoals " -"rij-locks of hash-indexen. Deze waarde kan worden berekend als " -"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Totale grootte van de bufferpool, in pagina's." - -#: server_status.php:1558 -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 "" -"Het aantal \"random\" read-aheads dat door InnoDB werd geïnitieerd. Dit " -"gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " -"willekeurige volgorde." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " -"gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " -"bufferpool maar waarvoor een extra pagina ingeladen moest worden." - -#: server_status.php:1562 -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 "" -"Normaal gesproken gebeurt het schrijven naar de InnoDB-bufferpool in de " -"achtergrond. Echter wanneer er geen vrije pagina's beschikbaar zijn voor het " -"inlezen van een nieuwe pagina moet er worden gewacht tot enkele pagina's " -"zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " -"bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Het aantal fsync()-operaties." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Het aantal momenteel openstaande fsync()-operaties." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Het aantal momenteel openstaande leesoperaties." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Het aantal momenteel openstaande schrijfoperaties." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Het totale aantal operaties voor het lezen van gegevens." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Het totale aantal operaties voor het schrijven van gegevens." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Het aantal uitgevoerde doublewrite-operaties." - -#: server_status.php:1574 -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 "" -"Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Het aantal verzoeken voor het schrijven in het logboek." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Het aantal fysieke schrijfoperaties op het logbestand." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Het aantal bytes dat naar het logbestand werd geschreven." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Het aantal pagina's dat werd aangemaakt." - -#: server_status.php:1582 -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 "" -"De tijdens het compileren ingestelde InnoDB-paginagrootte (standaard 16KB). " -"Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " -"eenvoudig deze om te zetten naar bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Het aantal gelezen pagina's." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Het aantal geschreven pagina's." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" -"De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" -"De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" -"De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." - -#: server_status.php:1594 -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 "" -"Het aantal sleutelblokken in het sleutelcache welke zijn bijgewerkt maar nog " -"niet naar disk zijn geschreven. Dit stond voorheen bekend als " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "Het aantal ongebruikte blokken in het sleutelcache." - -#: server_status.php:1596 -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 "" -"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " -"behaalde waarde sinds het starten van de server." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." - -#: server_status.php:1599 -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 "" -"Het aantal fysieke leesoperaties van een sleutelblok van schrijf. Indien " -"key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " -"cache miss rate kan worden berekend met Key_reads / Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " -"vergelijking met leesverzoeken (berekende waarde)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " -"(berekende waarde)" - -#: server_status.php:1604 -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 "" -"De totale kosten voor de laatst gecompileerde query zoals berekend door de " -"query-optimizer. Dit kan nuttig zijn voor het vergelijken van de kosten van " -"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " -"dat er nog geen query is gecompiled." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " -"server gestart werd." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" -"wachtrijen." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " -"tabelcachewaarde te laag." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Het totaal aantal geopende bestanden." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " -"logboeken)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Het totaal aantal open tabellen." - -#: server_status.php:1611 -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 "" -"Het aantal vrije blokken geheugen in de querycache. Een hoog aantal kan " -"wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" -"statement uit te voeren." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "De hoeveelheid vrij geheugen voor het querycache." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Het aantal cache-hits." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Het aantal queries dat aan de cache werd toegevoegd." - -#: server_status.php:1615 -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 "" -"Het aantal queries dat uit de cache werd verwijderd om plaats te maken voor " -"nieuwe queries. Deze informatie kan worden gebruikt bij het instellen van de " -"grootte van het querycache. De querycache maakt gebruik van een minst recent " -"gebruikt (least recently used, LRU) strategie om te bepalen welke queries " -"worden verwijderd." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached " -"vanwege de instelling query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Het aantal queries dat in de cache staat." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Het totaal aantal blokken in de querycache." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." - -#: server_status.php:1620 -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 "" -"Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " -"is het aan te raden om het gebruik van indexen te controleren." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Het aantal joins dat een bereik beperking toepassen op een gerefereerde " -"tabel." - -#: server_status.php:1622 -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 "" -"Het aantal joins zonder sleutel, dat na elke rij controleert op het gebruik " -"van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " -"van indexen te controleren.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " -"hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" -"thread." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Het totaal aantal transacties dat moest worden herhaald door de replicatie-" -"slave-SQL-thread (sinds het opstarten van de server)." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " -"met een masterserver." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Het aantal threads waarvoor het opstarten langer dan slow_launch_time " -"seconden duurde." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " -"duurde." - -#: server_status.php:1630 -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 "" -"Het aantal samenvoegings-ronden dat het sorteeralgoritme heeft moeten " -"uitvoeren. Indien deze waarde hoog is, is het een optie om de " -"systeemvariabele sort_buffer_size te vergroten." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Het aantal gesorteerde rijen." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" -"Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." - -#: server_status.php:1635 -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 "" -"Het aantal keer dat een tabel-lock niet direct kon worden verkregen, en er " -"dus moest worden gewacht. Indien dit hoog is, en u last heeft van prestatie " -"problemen, kunt u het beste eerst uw queries optimaliseren. Daarna kunt u " -"nog kijken naar het splitsen van tabellen en het gebruik van replicatie." - -#: server_status.php:1636 -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 "" -"Het aantal threads in de threadcache. De cache-hitrate kan worden berekend " -"met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " -"het aan te raden om thread_cache_size te vergroten." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Het aantal momenteel openstaande verbindingen." - -#: server_status.php:1638 -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 "" -"Het aantal threads dat werd aangemaakt om verbindingen af te handelen. " -"Indien deze waarde hoog is, kan het een optie zijn om thread_cache_size te " -"verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " -"thread-implementatie, geen noemenswaardige prestatieverbetering.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Threadcache-trefprecentage (berekende waarde)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Het aantal threads dat actief bezig is." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Start bewaking" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instructies/Setup" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Klaar met herschikken/bewerken van de grafieken" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Een grafiek toevoegen" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Herschikken/bewerken van de grafieken" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Vernieuwingsfrequentie" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Grafiekkolommen" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Grafiekschikking" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11719,15 +10947,15 @@ msgstr "" "browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " "heeft." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Standaardwaarde herstellen" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Bewakingsinstructies" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11742,7 +10970,7 @@ msgstr "" "dat general_log veel gegevens genereert en dat de belasting van de server " "tot 15% kan stijgen" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11754,11 +10982,11 @@ msgstr "" "Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " "grafiekfunctionaliteit gebruiken." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Gebruik van de monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11769,7 +10997,7 @@ msgstr "" "'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " "bij iedere grafiek." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11782,11 +11010,11 @@ msgstr "" "geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " "te analyseren." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Hou rekening met:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11799,94 +11027,837 @@ msgstr "" "kleine periode te selecteren, en de general_log uit te schakelen en de tabel " "te legen zodra het monitoren niet meer nodig is." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Grafiek instellen" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Statusvariabele(n)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Selecteer series:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Algemeen bewaakt" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "of geef variabelenaam op:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Verschil weergeven" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Een scheiding toepassen" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Eenheid toevoegen aan gegevenswaarden" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Deze serie toevoegen" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Reeks leegmaken" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Series in grafiek:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Logstatistieken" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Geselecteerde tijdspanne:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " "groeperen" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Kies het logbestand waarvan u de statistieken wil genereren." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Query-analyser" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d seconden" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuut" msgstr[1] "%d minuten" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Questions sinds opstart: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Opdrachten" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filters" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Bevat het woord:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Enkel belangrijke waarden tonen" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filteren op categorie..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Toon niet-opgemaakte waarden" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Gerelateerde links:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " +"de verbinding keurig af te sluiten." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." + +#: server_status_variables.php:334 +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 "" +"Het aantal transacties dat gebruik heeft gemaakt van de tijdelijke binaire " +"logcache, maar die groter waren dan binlog_cache_size en daarom gebruik " +"hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " +"te slaan." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." + +#: server_status_variables.php:346 +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 "" +"Het aantal tijdelijke tabellen op schijf die door de server automatisch " +"aangemaakt werden bij het uitvoeren van queries. Als Created_tmp_disk_tables " +"groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " +"tabellen aan te maken in geheugen in plaats van op harde schijf." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " +"door de server werd aangemaakt tijdens het uitvoeren van opdrachten." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " +"(mogelijk een reeds bestaande sleutel)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " +"tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Het aantal uitgevoerde FLUSH-opdrachten." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Het aantal interne COMMIT-opdrachten." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." + +#: server_status_variables.php:381 +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 "" +"De MySQL-server kan aan de NDB Cluster-opslagengine vragen naar een tabel " +"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " +"aan hoeveel tabellen met discovery werden opgezocht." + +#: server_status_variables.php:387 +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 "" +"Het aantal keer dat de eerste eenheid uit een index werd gelezen. Indien " +"hoog geeft dit een indicatie dat de server veel scans doet op de volledige " +"index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." + +#: server_status_variables.php:393 +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 "" +"Het aantal opdrachten om een rij te lezen op basis van de sleutel. Indien " +"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " +"indexen." + +#: server_status_variables.php:398 +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 "" +"Het aantal leesopdrachten voor de volgende rij in de sleutelvolgorde. Dit " +"wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " +"of bij het doen van een indexscan." + +#: server_status_variables.php:403 +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 "" +"Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " +"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Het aantal leesopdrachten voor een rij op een vaste positie. Dit is hoog " +"wanneer er veel gebruik wordt gemaakt van queries waarbij het resultaat " +"gesorteerd moet worden. U gebruikt mogelijk veel queries waarvoor MySQL een " +"gehele tabel moet scannen of er worden joins toegepast die niet goed " +"gebruikmaken van sleutels." + +#: server_status_variables.php:414 +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 "" +"Het aantal leesopdrachten voor de volgende rij uit het gegevensbestand. Dit " +"is hoog wanneer er voor gebruik wordt gemaakt van tabelscans. Over het " +"algemeen betekend dit dat de gebruikte tabellen niet optimaal van indexen " +"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " +"maken." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Het aantal interne ROLLBACK-opdrachten." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Het aantal update-opdrachten voor een tabelrij." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Het aantal pagina's dat momenteel \"dirty\" is." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Het aantal bufferpool-pagina's dat is geschoond." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Het aantal vrije pagina's." + +#: server_status_variables.php:443 +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 "" +"Het aantal \"latched pages\" in de InnoDB-bufferpool. Dit zijn pagina's " +"waarin momenteel wordt gelezen of geschreven, of die om een andere reden " +"niet geschoond of verwijderd kunnen worden." + +#: server_status_variables.php:448 +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 "" +"Het aantal pagina's dat in gebruik is voor administratieve doeleinden, zoals " +"rij-locks of hash-indexen. Deze waarde kan worden berekend als " +"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Totale grootte van de bufferpool, in pagina's." + +#: server_status_variables.php:458 +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 "" +"Het aantal \"random\" read-aheads dat door InnoDB werd geïnitieerd. Dit " +"gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " +"willekeurige volgorde." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " +"gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " +"bufferpool maar waarvoor een extra pagina ingeladen moest worden." + +#: server_status_variables.php:474 +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 "" +"Normaal gesproken gebeurt het schrijven naar de InnoDB-bufferpool in de " +"achtergrond. Echter wanneer er geen vrije pagina's beschikbaar zijn voor het " +"inlezen van een nieuwe pagina moet er worden gewacht tot enkele pagina's " +"zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " +"bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Het aantal fsync()-operaties." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Het aantal momenteel openstaande fsync()-operaties." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Het aantal momenteel openstaande leesoperaties." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Het aantal momenteel openstaande schrijfoperaties." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Het totale aantal operaties voor het lezen van gegevens." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Het totale aantal operaties voor het schrijven van gegevens." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Het aantal uitgevoerde doublewrite-operaties." + +#: server_status_variables.php:516 +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 "" +"Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Het aantal verzoeken voor het schrijven in het logboek." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Het aantal fysieke schrijfoperaties op het logbestand." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Het aantal bytes dat naar het logbestand werd geschreven." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Het aantal pagina's dat werd aangemaakt." + +#: server_status_variables.php:541 +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 "" +"De tijdens het compileren ingestelde InnoDB-paginagrootte (standaard 16KB). " +"Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " +"eenvoudig deze om te zetten naar bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Het aantal gelezen pagina's." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Het aantal geschreven pagina's." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" +"De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" +"De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" +"De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." + +#: server_status_variables.php:579 +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 "" +"Het aantal sleutelblokken in het sleutelcache welke zijn bijgewerkt maar nog " +"niet naar disk zijn geschreven. Dit stond voorheen bekend als " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "Het aantal ongebruikte blokken in het sleutelcache." + +#: server_status_variables.php:588 +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 "" +"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " +"behaalde waarde sinds het starten van de server." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." + +#: server_status_variables.php:599 +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 "" +"Het aantal fysieke leesoperaties van een sleutelblok van schrijf. Indien " +"key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " +"cache miss rate kan worden berekend met Key_reads / Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " +"vergelijking met leesverzoeken (berekende waarde)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " +"(berekende waarde)" + +#: server_status_variables.php:619 +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 "" +"De totale kosten voor de laatst gecompileerde query zoals berekend door de " +"query-optimizer. Dit kan nuttig zijn voor het vergelijken van de kosten van " +"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " +"dat er nog geen query is gecompiled." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " +"server gestart werd." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" +"wachtrijen." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " +"tabelcachewaarde te laag." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Het totaal aantal geopende bestanden." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " +"logboeken)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Het totaal aantal open tabellen." + +#: server_status_variables.php:645 +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 "" +"Het aantal vrije blokken geheugen in de querycache. Een hoog aantal kan " +"wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" +"statement uit te voeren." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "De hoeveelheid vrij geheugen voor het querycache." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Het aantal cache-hits." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Het aantal queries dat aan de cache werd toegevoegd." + +#: server_status_variables.php:659 +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 "" +"Het aantal queries dat uit de cache werd verwijderd om plaats te maken voor " +"nieuwe queries. Deze informatie kan worden gebruikt bij het instellen van de " +"grootte van het querycache. De querycache maakt gebruik van een minst recent " +"gebruikt (least recently used, LRU) strategie om te bepalen welke queries " +"worden verwijderd." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached " +"vanwege de instelling query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Het aantal queries dat in de cache staat." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Het totaal aantal blokken in de querycache." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." + +#: server_status_variables.php:679 +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 "" +"Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " +"is het aan te raden om het gebruik van indexen te controleren." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Het aantal joins dat een bereik beperking toepassen op een gerefereerde " +"tabel." + +#: server_status_variables.php:686 +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 "" +"Het aantal joins zonder sleutel, dat na elke rij controleert op het gebruik " +"van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " +"van indexen te controleren.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " +"hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" +"thread." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Het totaal aantal transacties dat moest worden herhaald door de replicatie-" +"slave-SQL-thread (sinds het opstarten van de server)." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " +"met een masterserver." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Het aantal threads waarvoor het opstarten langer dan slow_launch_time " +"seconden duurde." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " +"duurde." + +#: server_status_variables.php:717 +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 "" +"Het aantal samenvoegings-ronden dat het sorteeralgoritme heeft moeten " +"uitvoeren. Indien deze waarde hoog is, is het een optie om de " +"systeemvariabele sort_buffer_size te vergroten." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Het aantal gesorteerde rijen." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" +"Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." + +#: server_status_variables.php:734 +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 "" +"Het aantal keer dat een tabel-lock niet direct kon worden verkregen, en er " +"dus moest worden gewacht. Indien dit hoog is, en u last heeft van prestatie " +"problemen, kunt u het beste eerst uw queries optimaliseren. Daarna kunt u " +"nog kijken naar het splitsen van tabellen en het gebruik van replicatie." + +#: server_status_variables.php:740 +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 "" +"Het aantal threads in de threadcache. De cache-hitrate kan worden berekend " +"met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " +"het aan te raden om thread_cache_size te vergroten." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Het aantal momenteel openstaande verbindingen." + +#: server_status_variables.php:748 +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 "" +"Het aantal threads dat werd aangemaakt om verbindingen af te handelen. " +"Indien deze waarde hoog is, kan het een optie zijn om thread_cache_size te " +"verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " +"thread-implementatie, geen noemenswaardige prestatieverbetering.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Threadcache-trefprecentage (berekende waarde)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Het aantal threads dat actief bezig is." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Variabele instellen is mislukt" @@ -12495,26 +12466,26 @@ msgstr "Beperking voor vreemde sleutel" msgid "Tracking report for table `%s`" msgstr "Tracking-rapport voor tabel `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking van %1$s is uitgeschakeld op versie %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking van %1$s is ingeschakeld op versie %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12522,119 +12493,119 @@ msgstr "" "U kunt de dump gebruiken door deze in een tijdelijke databank te importeren. " "Let er wel op dat u hier rechten voor nodig heeft." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-statements geëxporteerd. Kopieer de dump of voer de dump uit." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Tracking-gegevensdefinitie succesvol verwijderd" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Fout in query" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking-gegevensmanipulatie succesvol verwijderd" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Tracking-statements" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Laat %1$s zien met datums van %2$s tot %3$s door gebruiker %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Verwijder tracking-gegevensrij uit verslag" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Geen gegevens" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Definitie-statement" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL-dump (naar bestand)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle gegevens van die tabel." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL-uitvoering" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Versies weergeven" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Tracking uitschakelen van %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Tracking inschakelen van %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Nu inschakelen" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Versie %1$s van %2$s aanmaken" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Versie aanmaken" @@ -12788,11 +12759,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time is momenteel ingesteld op %d seconde(n)." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Logs van trage queries" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "De trage query log is uitgeschakeld." @@ -12809,15 +12780,34 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries is uitgeschakeld" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Schakel het loggen van trage queries in door {log_slow_queries} in te " +"stellen op 'ON'. Dit helpt bij het zoeken naar problemen met slecht " +"presterende queries." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries is uitgeschakeld" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Groep van uitgebrachte versies" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "De MySQL-server versie is kleiner dan 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12825,21 +12815,21 @@ msgstr "" "U moet upgraden, omdat MySQL 5.1 beter presteert, en MySQL 5.5 zelfs nog " "meer." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Huidige versie: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versie met kleine wijzigingen" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Versie kleiner dan 5.1.30 (de eerste stabiele versie van 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12847,25 +12837,25 @@ msgstr "" "U moet upgraden, omdat recentere versie van MySQL 5.1 beter presteren, en " "MySQL 5.5 zelfs nog meer." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Versie kleiner dan 5.5.8 (de eerste stabiele versie van 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "U moet upgraden naar een stabiele versie van MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distributie" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Uw versie is gecompileerd van broncode, en is geen officiële MySQL-versie." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12876,42 +12866,42 @@ msgstr "" "enkel van toepassing op officiële MySQL-versies, niet op pakket versies van " "distributies (zoals RedHat, Debian/Ubuntu, enz.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' werd gevonden in version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "De MySQL-handleiding is enkel van toepassing op officiële MySQL-versies." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" "Percona-documentatie kan gevonden worden op http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' werd gevonden in version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle-documentatie kan gevonden worden op http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "De versietekenreeks (%s) komt overeen met het Drizzle-versiepatroon" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL-architectuur" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL is niet gecompileerd als een 64-bit-pakket." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12922,20 +12912,20 @@ msgstr "" "tot al het geheugen. U kan overwegen om de 64-bit versie van MySQL te " "installeren." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Beschikbaar geheugen op deze machine: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Querycache is uitgeschakeld" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "De querycache is niet ingeschakeld." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12947,20 +12937,20 @@ msgstr "" "{query_cache_type} in te stellen op 'ON'. Opmerking: Negeer deze " "raadgeving als u memcached gebruikt." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size is ingesteld op 0 of query_cache_type is ingesteld op 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Querycachemethode" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Suboptimale cachingmethode." -#: libraries/advisory_rules.txt:157 +#: 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 te gebruiken in plaats van MySQL-querycache, vooral als u " "verschillende slaves heeft." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12981,34 +12971,34 @@ msgstr "" "Querycache is ingeschakeld en de server ontvangt %d queries per seconde. " "Deze regel wordt getriggerd bij meer dan 100 queries per seconde." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Querycache-efficiëntie (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Querycache werkt niet efficiënt, het wordt weinig gebruikt." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Overweeg om {query_cache_limit} te verhogen." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Het huidig gebruik van de querycache van %s%% is lager dan 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Querycachegebruik" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Minder dan 80%% van de querycache wordt gebruikt." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -13016,7 +13006,7 @@ msgstr "" "Dit wordt mogelijk veroorzaakt door {query_cache_limit} die te laag " "ingesteld is. Leegmaken van de querycache kan ook helpen." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -13025,15 +13015,15 @@ msgstr "" "De huidige verhouding van vrij querycachegeheugen tot de totale " "querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Querycache-versnippering" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "De querycache is behoorlijk gefragmenteerd." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13054,7 +13044,7 @@ msgstr "" "grootte van uw queries in de cache met behulp van deze formule: " "(query_cache_size - qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13065,11 +13055,11 @@ msgstr "" "betekent dat de querycache een afwisselend patroon van vrije en gebruikte " "blokken bevat. Deze waarde zou lager moeten zijn dan 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Snoeien van het querycache bij laag geheugen" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13077,7 +13067,7 @@ msgstr "" "Gecachte queries zijn verwijderd vanwege de beperkte hoeveelheid vrij " "geheugen voor de querycache." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13087,7 +13077,7 @@ msgstr "" "dat de overhead voor het beheren van de cache waarschijnlijk hoger wordt, " "doe dit dus in kleine stappen en hou de resultaten in de gaten." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13096,11 +13086,11 @@ msgstr "" "De verhouding van verwijderde queries tot ingevoegde queries is %s%%. Hoe " "lager deze waarde is, hoe beter. (Deze regel wordt geactiveerd vanaf 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maximum grootte van querycache" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13109,7 +13099,7 @@ msgstr "" "behoorlijke overhead veroorzaken noodzakelijk voor het bijhouden van de " "cache." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13117,23 +13107,23 @@ msgstr "" "Afhankelijk van uw omgeving, kan de prestatie verhogen door deze waarde te " "verlagen." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Huidige grootte van querycache: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Minimum grootte van querycacheresultaat" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "De maximale grootte van een resultatenset in de querycache is de standaard " "van 1 MB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13154,19 +13144,19 @@ msgstr "" "gecached te worden (vaak gewijzigd door wijziging van tabellen), dan zal het " "verhogen van {query_cache_limit} mogelijk nadelig zijn voor de efficiëntie." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit is 1 Mib" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Percentage van sorteringen die tijdelijke tabellen veroorzaken" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Te veel sorteringen veroorzaken tijdelijke tabellen." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13174,7 +13164,7 @@ msgstr "" "Overweeg om sort_buffer_size en/of read_rnd_buffer_size te verheugen, " "afhankelijk van de geheugenlimieten op uw systeem" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13183,11 +13173,11 @@ msgstr "" "%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou " "lager moeten zijn dan 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Frequentie van sorteringen die tijdelijke tabellen veroorzaken" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13195,15 +13185,15 @@ msgstr "" "Tijdelijke tabellengemiddelde: %s, deze waarde zou minder moeten zijn dan 1 " "per uur." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sorteer regels" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Er worden zeer veel regels gesorteerd." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13214,20 +13204,20 @@ msgstr "" "controleren of queries die veel sorteren vereisen, geïndexeerde kolommen " "gebruiken in de clausule ORDER BY, omdat dit resulteert in snellere sortering" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Gemiddelde aantal gesorteerde regels: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Aandeel JOINS zonder index" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Er zijn teveel JOINS zonder indexen." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13236,21 +13226,21 @@ msgstr "" "indexen voor de kolommen die worden gebruikt in de join-voorwaarden zullen " "tabeljoins erg versnellen" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tabel join gemiddelde: %s, deze waarde zou kleiner moeten zijn de 1 per uur" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Mate van het lezen van eerste index-entry" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Mate van het lezen van de eerste index is hoog." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13268,22 +13258,22 @@ msgstr "" "vergroten. Volledig doorzoeken van de index kan ook verminderd worden door " "queries te herschrijven." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Gemiddelde van het doorlopen van de index: %s, deze waarde moet kleiner zijn " "dan 1 keer per uur" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Mate van het lezen van een vaste positie" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "De mate van het lezen van gegevens van een vaste positie is hoog." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13293,7 +13283,7 @@ msgstr "" "volledig doorzoeken, inbegrepen JOIN-queries die geen gebruik maken van " "indexen. Voeg indexen toe waar nodig." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13302,15 +13292,15 @@ msgstr "" "Gemiddelde mate van het lezen van een vaste positie: %s, deze waarde is best " "kleiner dan 1 keer per uur" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Aandeel van het lezen van de volgende regel" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Frequentie van lezen van volgende tabelrij is hoog." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13318,7 +13308,7 @@ msgstr "" "Dit wijst erop dat veel queries tabellen volledig doorzoeken. Voeg indexen " "toe waar nodig." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13326,15 +13316,15 @@ msgstr "" "Mate van het lezen van de volgende tabelrij: %s, deze waarde zou kleiner " "moeten zijn dan 1 keer per uur" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size ten opzichte van max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size en max_heap_table_size zijn verschillend." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13346,16 +13336,16 @@ msgstr "" "geheugen te bepalen. Als u de limiet voor tabellen in het geheugen wil " "verhogen, moet u de andere waarde ook verhogen." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "De huidige waarden zijn tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Percentage tijdelijke tabellen op de harde schijf" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13363,7 +13353,7 @@ msgstr "" "Veel tijdelijke tabellen worden naar harde schijf geschreven in plaats van " "in het geheugen bewaard te worden." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13382,7 +13372,7 @@ msgstr "" "facebook.com/note.php?note_id=10150111255065841&comments\">artikel van de " "Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13391,11 +13381,11 @@ msgstr "" "%s%% van alle tijdelijke tabellen wordt bewaard op de harde schijf, dit zou " "minder dan 25%% moeten zijn" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Tijdelijke schijf ratio" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13413,7 +13403,7 @@ msgstr "" "groter dan 512 bytes) zoals vermeld wordt in de MySQL Documentatie" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13422,17 +13412,17 @@ msgstr "" "Mate van tijdelijke tabellen die op harde schijf bewaard worden: %s, deze " "waar zou kleiner moeten zijn dan 1 keer per uur" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Buffergrootte van MyISAM-sleutel" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "De sleutelbuffer is niet ingesteld. MyISAM-indexen zullen niet gecached " "worden." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13440,21 +13430,21 @@ msgstr "" "Stel {key_buffer_size} in afhankelijk van de grootte van uw MyISAM-indexen. " "64M is een goed begin." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size is 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Max %% MyISAM-sleutelbuffer ooit gebruikt" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM-sleutelbuffer (indexcache) %% is laag." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13464,7 +13454,7 @@ msgstr "" "zien of indexen verwijderd werden, of bekijk queries en verwachtingen over " "welke indexen gebruikt zouden moeten worden." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13472,45 +13462,45 @@ msgstr "" "max %% MyISAM-sleutelbuffer ooit gebruikt: %s%%, deze waarde moet groter " "zijn dan 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Percentage van de MyISAM-sleutelbuffer die gebruikt wordt" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% MyISAM-sleutelbuffer gebruikt: %s%%, dit zou groter dan 95%% moeten zijn" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Percentage van lezen van de index uit het geheugen" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "Het %% van indexen dat de MyISAM-sleutelbuffer gebruikt, is laag." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Verhoog best {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Lezen van de index uit geheugen: %s%%, deze waarde zou hogere moeten liggen " "dan 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Aandeel open tabellen" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Het aandeel geopende tabellen is hoog." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13518,18 +13508,18 @@ msgstr "" "Openen van tabellen vereist toegang tot de harde schijf, wat kostelijk is. " "Verhogen van {table_open_cache} kan dit mogelijk vermijden." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Aandeel geopende tabellen: %s, deze waarde zou minder moeten zijn dan 10 per " "uur" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Limietpercentage voor geopende bestanden die in gebruik zijn" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13538,7 +13528,7 @@ msgstr "" "geopende bestanden. U kan een foutmelding \"Teveel geopende bestanden\" " "krijgen." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13546,7 +13536,7 @@ msgstr "" "Overweeg om {open_files_limit} te verhogen, en controleer het foutenlogboek " "na herstarten nadat open_files_limit gewijzigd werd." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13554,59 +13544,59 @@ msgstr "" "Het aantal geopende bestanden is %s%% van de limiet. Dit zou minder dan 85%% " "moeten zijn" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Aandeel geopende bestanden" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Het aandeel geopende bestanden is hoog." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Aandeel geopende bestanden: %s, deze waarde zou minder dan 5 per uur moeten " "zijn" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Onmiddellijke tabelvergrendelingen %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Te veel tabelvergrendelingen werden niet onmiddellijk toegestaan." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimaliseer queries en/of gebruik InnoDB om wachten op vergrendeling te " "verminderen." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Onmiddellijke tabelvergrendelingen: %s%%, deze waarde zou groter dan 95%% " "moeten zijn" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Aandeel wachten op tabelvergrendelingen" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Aandeel wachten op tabelvergrendelingen: %s, deze waarde zou kleiner moeten " "zijn dan 1 per uur" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Threadcache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13614,42 +13604,42 @@ msgstr "" "Threadcache is uitgeschakeld, dit veroorzaakt meer overhead van nieuwe " "verbinding naar MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Schakel threadcache in door {thread_cache_size} > 0 in te stellen." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "De threadcache is ingesteld op 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Gebruik van de threadcache %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Threadcache werkt niet efficiënt." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Verhoog {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Gebruik van de threadcache: %s%%, deze waarde zou groter moeten zijn dan 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Threads die traag worden opgestart" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Er zijn te veel threads die te traag gestart worden." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13657,22 +13647,22 @@ msgstr "" "Dit gebeurt meestal wanneer het systeem overbelast is. Bekijk de belasting " "van uw systeem nauwkeurig." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s thread(s) deden er langer dan %s seconden over om op te starten, dit zou " "0 moeten zijn" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Trage lanceertijd" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads is hoger dan 2sec" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13680,16 +13670,16 @@ msgstr "" "Stel slow_launch_time in op 1 of 2 sec om op een goede manier traag " "startende threads te tellen" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time is ingesteld op %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Percentage van gebruikte verbindingen" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13697,7 +13687,7 @@ msgstr "" "Het maximum aantal gebruikte verbindingen is bijna gelijk aan de waarde van " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13707,7 +13697,7 @@ msgstr "" "databank handlers niet netjes sluiten, sneller afgesloten worden. Zorg " "ervoor dat de code databank handlers netjes afsluit." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13715,15 +13705,15 @@ msgstr "" "Max_used_connections is %s%% van max_connections, dit zou kleiner dan 80%% " "moeten zijn" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Percentage van afgebroken verbindingen" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Te veel verbindingen werden afgebroken." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Dit artikel kan u helpen om de oorzaak te " "vinden." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% van alle verbindingen werden afgebroken. Deze waarde zou kleiner moeten " "zijn dan 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Aandeel van afgebroken verbindingen" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13754,15 +13744,15 @@ msgstr "" "Mate van afgebroken verbindingen is %s, deze waarde zou minder dan 1 per uur " "moeten zijn" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Percentage van afgebroken clients" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Te veel clients werden afgebroken." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13773,45 +13763,45 @@ msgstr "" "netwerkproblemen of door code die databank-handlers niet netjes afsluit. " "Controleer uw netwerk en code." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% van alle clients werden afgebroken. Deze waarde zou minder dan 2%% " "moeten zijn" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Aantal afgebroken clients" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Mate van afgebroken clients is %s, deze waarde zou minder dan 1 per uur " "moeten zijn" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Is InnoDB uitgeschakeld?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "InnoDB is niet ingeschakeld." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB is doorgaans de beste keuze als tabel-engine." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb is ingesteld op 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Grootte van InnoDB-logboek" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13819,7 +13809,7 @@ msgstr "" "De grootte van het InnoDB-logbestand is niet in verhouding tot de InnoDB-" "bufferpool." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13844,7 +13834,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">deze blog" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13853,15 +13843,15 @@ msgstr "" "De grootte van het InnoDB-logboek is %s%% in vergelijking met de grootte van " "de InnoDB-bufferpool, deze zou kleiner moeten zijn dan 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maximum grootte van het InnoDB-logboek" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Het InnoDB-logboek is veel te groot." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13885,20 +13875,20 @@ msgstr "" "goed ging. Bekijk ook deze blog" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "De maximumgrootte van het InnoDB-logboek is %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Grootte van de InnoDB-bufferpool" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Uw InnoDB-bufferpool is betrekkelijk klein." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13924,7 +13914,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/\">dit " "artikel" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13937,15 +13927,15 @@ msgstr "" "hoewel dat dit perfect geschikt kan zijn voor uw systeem als u niet veel " "InnoDB-tabellen heeft of andere diensten die op deze machine lopen." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM gelijktijdige invoeren" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Activeer concurrent_insert door het waarde 1 te geven" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL-documentatie" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Verzonden KiB sinds laatste verversing" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Ontvangen KiB sinds laatste verversing" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Serververkeer (in KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Verbindingen sinds laatste verversing" + +#~ msgid "Questions since last refresh" +#~ msgstr "Questions sinds laatste verversing" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (aantal door de server uitgevoerde opdrachten)" + +#~ msgid "Runtime Information" +#~ msgstr "Runtime-informatie" + +#~ msgid "Number of data points: " +#~ msgstr "Aantal gegevenspunten : " + +#~ msgid "Refresh rate: " +#~ msgstr "Vernieuwingsfrequentie: " + +#~ msgid "Run analyzer" +#~ msgstr "Analyse uitvoeren" + #~ msgid "Show more actions" #~ msgstr "Meer acties weergeven" diff --git a/po/pa.po b/po/pa.po index dfb4c7cd1c..82cf7cbb5f 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" "Language-Team: Punjabi Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1246,449 +1219,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1697,191 +1672,196 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1889,266 +1869,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "" @@ -2198,16 +2178,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2233,7 +2213,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "" @@ -2242,7 +2222,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "" @@ -2356,7 +2336,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "" @@ -2526,7 +2506,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2581,12 +2561,13 @@ msgstr "" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "" @@ -2594,7 +2575,7 @@ msgstr "" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2675,16 +2656,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2696,21 +2677,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2720,13 +2701,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -2769,7 +2750,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2842,34 +2823,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2917,6 +2899,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3008,7 +3088,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3391,11 +3471,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3430,7 +3505,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3526,13 +3601,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3573,59 +3641,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5659,8 +5727,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6269,10 +6337,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6918,16 +6982,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7023,17 +7087,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "" @@ -7420,8 +7484,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7930,7 +7993,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8434,7 +8497,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9097,7 +9160,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9426,7 +9489,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9492,31 +9555,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9632,15 +9695,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9722,7 +9781,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9779,10 +9838,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9908,854 +9963,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10764,7 +10128,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10772,18 +10136,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10791,11 +10155,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10803,92 +10167,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11423,142 +11394,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11692,11 +11663,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11710,118 +11681,128 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: 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:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11829,19 +11810,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12194,268 +12175,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +msgid "Percentage of MyISAM key buffer used" msgstr "" #: libraries/advisory_rules.txt:316 #, php-format -msgid "Index reads from memory: %s%%, this value should be above 95%%" +msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 -msgid "Rate of table open" +#: 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:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12576,20 +12557,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12604,7 +12585,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12613,22 +12594,22 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index babeeae3af..076ebc4c2a 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +46,7 @@ msgstr "" msgid "Search" msgstr "" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +76,21 @@ msgstr "" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "" @@ -111,17 +111,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,12 +135,12 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -158,11 +158,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -174,11 +174,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -189,11 +189,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -202,7 +202,7 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -215,7 +215,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -233,12 +233,12 @@ msgstr "" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -261,8 +261,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "" @@ -333,7 +333,7 @@ msgstr "" msgid "in use" msgstr "" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -341,7 +341,7 @@ msgstr "" msgid "Creation" msgstr "" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -349,7 +349,7 @@ msgstr "" msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -401,7 +401,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "" @@ -409,17 +409,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "" @@ -434,7 +434,7 @@ msgstr "" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "" @@ -450,11 +450,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -462,11 +462,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -532,45 +532,45 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, possible-php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -578,15 +578,15 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -707,8 +707,9 @@ msgstr "" msgid "Database server" msgstr "" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -727,7 +728,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -943,12 +944,12 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -958,15 +959,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "" @@ -977,13 +978,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -998,48 +1000,14 @@ msgid "." msgstr "" #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1047,196 +1015,201 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "" -#: js/messages.php:128 +#: js/messages.php:115 #, possible-php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, possible-php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1244,449 +1217,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, possible-php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, possible-php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, possible-php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, possible-php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, possible-php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, possible-php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, possible-php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, possible-php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, possible-php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, possible-php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1695,189 +1670,194 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, possible-php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1885,266 +1865,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "" @@ -2194,16 +2174,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2229,7 +2209,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "" @@ -2238,7 +2218,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "" @@ -2352,7 +2332,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "" @@ -2522,7 +2502,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2577,12 +2557,13 @@ msgstr "" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "" @@ -2590,7 +2571,7 @@ msgstr "" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2671,16 +2652,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2692,21 +2673,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2716,13 +2697,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -2765,7 +2746,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2838,34 +2819,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2913,6 +2895,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3004,7 +3084,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3387,11 +3467,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3426,7 +3501,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3522,13 +3597,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3569,59 +3637,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, possible-php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5655,8 +5723,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6265,10 +6333,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6914,16 +6978,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7019,17 +7083,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "" @@ -7416,8 +7480,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7926,7 +7989,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8430,7 +8493,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9093,7 +9156,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9422,7 +9485,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9488,31 +9551,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9628,15 +9691,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9718,7 +9777,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9775,10 +9834,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9904,854 +9959,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, possible-php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, possible-php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, possible-php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, possible-php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, possible-php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10760,7 +10124,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10768,18 +10132,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10787,11 +10151,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10799,92 +10163,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, possible-php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, possible-php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, possible-php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11419,142 +11390,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, possible-php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, possible-php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, possible-php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, possible-php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, possible-php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, possible-php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, possible-php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, possible-php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11672,11 +11643,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11688,746 +11659,754 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: 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:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 -msgid "Drizzle documentation is at http://docs.drizzle.org/" -msgstr "" - -#: libraries/advisory_rules.txt:133 -#, php-format -msgid "Version string (%s) matches Drizzle versioning scheme" -msgstr "" - -#: libraries/advisory_rules.txt:135 -msgid "MySQL Architecture" -msgstr "" - -#: libraries/advisory_rules.txt:138 -msgid "MySQL is not compiled as a 64-bit package." -msgstr "" - #: libraries/advisory_rules.txt:139 -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." +msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" #: libraries/advisory_rules.txt:140 #, php-format -msgid "Available memory on this host: %s" +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 "Query cache disabled" +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:149 -msgid "The query cache is not enabled." -msgstr "" - -#: libraries/advisory_rules.txt:150 -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:151 -msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" +#: libraries/advisory_rules.txt:147 +#, php-format +msgid "Available memory on this host: %s" msgstr "" #: libraries/advisory_rules.txt:153 -msgid "Query caching method" +msgid "Query cache disabled" msgstr "" #: libraries/advisory_rules.txt:156 -msgid "Suboptimal caching method." +msgid "The query cache is not enabled." msgstr "" #: libraries/advisory_rules.txt:157 -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." +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 -#, 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." +msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: libraries/advisory_rules.txt:160 -#, php-format -msgid "Query cache efficiency (%%)" +msgid "Query caching method" msgstr "" #: libraries/advisory_rules.txt:163 -msgid "Query cache not running efficiently, it has a low hit rate." +msgid "Suboptimal caching method." msgstr "" #: libraries/advisory_rules.txt:164 -msgid "Consider increasing {query_cache_limit}." +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 current query cache hit rate of %s%% is below 20%%" +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 -msgid "Query Cache usage" +#, php-format +msgid "Query cache efficiency (%%)" msgstr "" #: libraries/advisory_rules.txt:170 -#, php-format -msgid "Less than 80%% of the query cache is being utilized." +msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" #: libraries/advisory_rules.txt:171 -msgid "This might be caused by {query_cache_limit} being too low. Flushing the query cache might help as well." +msgid "Consider increasing {query_cache_limit}." msgstr "" #: libraries/advisory_rules.txt:172 #, php-format -msgid "The current ratio of free query cache memory to total query cache size is %s%%. It should be above 80%%" +msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: libraries/advisory_rules.txt:174 -msgid "Query cache fragmentation" +msgid "Query Cache usage" msgstr "" #: libraries/advisory_rules.txt:177 -msgid "The query cache is considerably fragmented." +#, php-format +msgid "Less than 80%% of the query cache is being utilized." msgstr "" #: libraries/advisory_rules.txt:178 -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" +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 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%%." +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 low memory prunes" +msgid "Query cache fragmentation" msgstr "" #: libraries/advisory_rules.txt:184 -msgid "Cached queries are removed due to low query cache memory from the query cache." +msgid "The query cache is considerably fragmented." msgstr "" #: libraries/advisory_rules.txt:185 -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." +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 ratio of removed queries to inserted queries is %s%%. The lower this value is, the better (This rules firing limit: 0.1%%)" +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 max size" +msgid "Query cache low memory prunes" msgstr "" #: libraries/advisory_rules.txt:191 -msgid "The query cache size is above 128 MiB. Big query caches may cause significant overhead that is required to maintain the cache." +msgid "Cached queries are removed due to low query cache memory from the query cache." msgstr "" #: libraries/advisory_rules.txt:192 -msgid "Depending on your environment, it might be performance increasing to reduce this value." +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 "Current query cache size: %s" +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 min result size" +msgid "Query cache max size" msgstr "" #: libraries/advisory_rules.txt:198 -msgid "The max size of the result set in the query cache is the default of 1 MiB." +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 "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." +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:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "" -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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:209 -#, php-format -msgid "%s%% of all sorts cause temporary tables, this value should be lower than 10%%." -msgstr "" - -#: libraries/advisory_rules.txt:211 -msgid "Rate of sorts that cause temporary tables" -msgstr "" - #: libraries/advisory_rules.txt:216 #, php-format -msgid "Temporary tables average: %s, this value should be less than 1 per hour." +msgid "%s%% of all sorts cause temporary tables, this value should be lower than 10%%." msgstr "" #: libraries/advisory_rules.txt:218 -msgid "Sort rows" -msgstr "" - -#: libraries/advisory_rules.txt:221 -msgid "There are lots of rows being sorted." -msgstr "" - -#: libraries/advisory_rules.txt:222 -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" +msgid "Rate of sorts that cause temporary tables" msgstr "" #: libraries/advisory_rules.txt:223 #, php-format -msgid "Sorted rows average: %s" +msgid "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" -#: libraries/advisory_rules.txt:226 -msgid "Rate of joins without indexes" +#: 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 "There are too many joins without indexes." +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 -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:231 #, php-format -msgid "Table joins average: %s, this value should be less than 1 per hour" +msgid "Sorted rows average: %s" msgstr "" #: libraries/advisory_rules.txt:233 -msgid "Rate of reading first index entry" +msgid "Rate of joins without indexes" msgstr "" #: libraries/advisory_rules.txt:236 -msgid "The rate of reading the first index entry is high." +msgid "There are too many joins without indexes." msgstr "" #: libraries/advisory_rules.txt:237 -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." +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 "Index scans average: %s, this value should be less than 1 per hour" +msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" #: libraries/advisory_rules.txt:240 -msgid "Rate of reading fixed position" +msgid "Rate of reading first index entry" msgstr "" #: libraries/advisory_rules.txt:243 -msgid "The rate of reading data from a fixed position is high." +msgid "The rate of reading the first index entry is high." msgstr "" #: libraries/advisory_rules.txt:244 -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." +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 "Rate of reading fixed position average: %s, this value should be less than 1 per hour" +msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" #: libraries/advisory_rules.txt:247 -msgid "Rate of reading next table row" +msgid "Rate of reading fixed position" msgstr "" #: libraries/advisory_rules.txt:250 -msgid "The rate of reading the next table row is high." +msgid "The rate of reading data from a fixed position is high." msgstr "" #: libraries/advisory_rules.txt:251 -msgid "This indicates that many queries are doing full table scans. Add indexes where applicable." +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 next table row: %s, this value should be less than 1 per hour" +msgid "Rate of reading fixed position average: %s, this value should be less than 1 per hour" msgstr "" -#: libraries/advisory_rules.txt:255 -msgid "tmp_table_size vs. max_heap_table_size" +#: 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 "tmp_table_size and max_heap_table_size are not the same." +msgid "This indicates that many queries are doing full table scans. Add indexes where applicable." msgstr "" #: libraries/advisory_rules.txt:259 -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:260 #, php-format -msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" +msgid "Rate of reading next table row: %s, this value should be less than 1 per hour" msgstr "" #: libraries/advisory_rules.txt:262 -msgid "Percentage of temp tables on disk" +msgid "tmp_table_size vs. max_heap_table_size" msgstr "" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 -msgid "Many temporary tables are being written to disk instead of being kept in memory." +#: 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 "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" +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 "%s%% of all temporary tables are being written to disk, this value should be below 25%%" +msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" #: libraries/advisory_rules.txt:269 -msgid "Temp disk rate" +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 MySQL Documentation" +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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +msgid "Percentage of MyISAM key buffer used" msgstr "" #: libraries/advisory_rules.txt:316 #, php-format -msgid "Index reads from memory: %s%%, this value should be above 95%%" +msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 -msgid "Rate of table open" +#: 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 -msgid "The rate of opening tables is high." -msgstr "" - -#: libraries/advisory_rules.txt:324 -msgid "Opening tables requires disk I/O which is costly. Increasing {table_open_cache} might avoid this." -msgstr "" - -#: libraries/advisory_rules.txt:325 #, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" +msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: libraries/advisory_rules.txt:327 -msgid "Percentage of used open files limit" +msgid "Rate of table open" msgstr "" #: libraries/advisory_rules.txt:330 -msgid "The number of open files is approaching the max number of open files. You may get a \"Too many open files\" error." +msgid "The rate of opening tables is high." msgstr "" -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 -msgid "Consider increasing {open_files_limit}, and check the error log when restarting after changing open_files_limit." +#: 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 "The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 -msgid "Rate of open files" +msgid "Percentage of used open files limit" msgstr "" #: libraries/advisory_rules.txt:337 -msgid "The rate of opening files is high." +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 "Opened files rate: %s, this value should be less than 5 per hour" +msgid "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" #: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" +msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." +#: libraries/advisory_rules.txt:344 +msgid "The rate of opening files is high." msgstr "" #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" #: libraries/advisory_rules.txt:355 -msgid "Thread cache" -msgstr "" - -#: libraries/advisory_rules.txt:358 -msgid "Thread cache is disabled, resulting in more overhead from new connections to MySQL." -msgstr "" - -#: libraries/advisory_rules.txt:359 -msgid "Enable the thread cache by setting {thread_cache_size} > 0." +msgid "Table lock wait rate" msgstr "" #: libraries/advisory_rules.txt:360 -msgid "The thread cache is set to 0" +#, 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:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 -msgid "Increase {thread_cache_size}." -msgstr "" - -#: libraries/advisory_rules.txt:367 -#, php-format -msgid "Thread cache hitrate: %s%%, this value should be above 80%%" -msgstr "" - -#: libraries/advisory_rules.txt:369 -msgid "Threads that are slow to launch" -msgstr "" - -#: libraries/advisory_rules.txt:372 -msgid "There are too many threads that are slow to launch." -msgstr "" - #: libraries/advisory_rules.txt:373 -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." +msgid "Increase {thread_cache_size}." msgstr "" #: libraries/advisory_rules.txt:374 #, php-format -msgid "%s thread(s) took longer than %s seconds to start, it should be 0" +msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:376 -msgid "Slow launch time" +msgid "Threads that are slow to launch" msgstr "" #: libraries/advisory_rules.txt:379 -msgid "Slow_launch_threads is above 2s" +msgid "There are too many threads that are slow to launch." msgstr "" #: libraries/advisory_rules.txt:380 -msgid "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to launch" +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 "slow_launch_time is set to %s" +msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" -#: libraries/advisory_rules.txt:385 -msgid "Percentage of used connections" +#: 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 -msgid "The maximum amount of used connections is getting close to the value of max_connections." -msgstr "" - -#: libraries/advisory_rules.txt:389 -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:390 #, php-format -msgid "Max_used_connections is at %s%% of max_connections, it should be below 80%%" +msgid "slow_launch_time is set to %s" msgstr "" #: libraries/advisory_rules.txt:392 -msgid "Percentage of aborted connections" +msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 -msgid "Too many connections are aborted." +#: 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 libraries/advisory_rules.txt:403 -msgid "Connections are usually aborted when they cannot be authorized. This article might help you track down the source." +#: 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 "%s%% of all connections are aborted. This value should be below 1%%" +msgid "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" #: libraries/advisory_rules.txt:399 -msgid "Rate of aborted connections" +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 "Aborted connections rate is at %s, this value should be less than 1 per hour" +msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" #: libraries/advisory_rules.txt:406 -msgid "Percentage of aborted clients" -msgstr "" - -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 -msgid "Too many clients are aborted." -msgstr "" - -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 -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." +msgid "Rate of aborted connections" msgstr "" #: libraries/advisory_rules.txt:411 #, php-format -msgid "%s%% of all clients are aborted. This value should be below 2%%" +msgid "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" #: libraries/advisory_rules.txt:413 -msgid "Rate of aborted clients" +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 "Aborted client rate is at %s, this value should be less than 1 per hour" +msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -#: libraries/advisory_rules.txt:422 -msgid "Is InnoDB disabled?" +#: libraries/advisory_rules.txt:420 +msgid "Rate of aborted clients" msgstr "" #: libraries/advisory_rules.txt:425 -msgid "You do not have InnoDB enabled." -msgstr "" - -#: libraries/advisory_rules.txt:426 -msgid "InnoDB is usually the better choice for table engines." -msgstr "" - -#: libraries/advisory_rules.txt:427 -msgid "have_innodb is set to 'value'" +#, 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 "InnoDB log size" +msgid "Is InnoDB disabled?" msgstr "" #: libraries/advisory_rules.txt:432 -msgid "The InnoDB log file size is not an appropriate size, in relation to the InnoDB buffer pool." +msgid "You do not have InnoDB enabled." msgstr "" #: libraries/advisory_rules.txt:433 -#, 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" +msgid "InnoDB is usually the better choice for table engines." msgstr "" #: libraries/advisory_rules.txt:434 -#, php-format -msgid "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, it should not be below 20%%" +msgid "have_innodb is set to 'value'" msgstr "" #: libraries/advisory_rules.txt:436 -msgid "Max InnoDB log size" +msgid "InnoDB log size" msgstr "" #: libraries/advisory_rules.txt:439 -msgid "The InnoDB log file size is inadequately large." +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 "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" +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 absolute InnoDB log size is %s MiB" +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 "InnoDB buffer pool size" +msgid "Max InnoDB log size" msgstr "" #: libraries/advisory_rules.txt:446 -msgid "Your InnoDB buffer pool is fairly small." +msgid "The InnoDB log file size is inadequately large." msgstr "" #: libraries/advisory_rules.txt:447 #, 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" +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 "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." +msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:452 -msgid "MyISAM concurrent inserts" +#: 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:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/pl.po b/po/pl.po index 8b02ced72f..eec21bc232 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-03 02:03+0200\n" "Last-Translator: Stefan Wajda \n" "Language-Team: Polish =20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Szukaj" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Wykonaj" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nazwa klucza" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Komentarze tabeli" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolumna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Kolumna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Ustawienia domyślne" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Ustawienia domyślne" msgid "Links to" msgstr "Odsyłacze do" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Odsyłacze do" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Komentarze" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Tak" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -339,7 +339,7 @@ msgstr "Rozmiar" msgid "in use" msgstr "w użyciu" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "w użyciu" msgid "Creation" msgstr "Data utworzenia" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Data utworzenia" msgid "Last update" msgstr "Ostatnia aktualizacja" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "Tabele śledzone" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza danych" @@ -416,17 +416,17 @@ msgstr "Baza danych" msgid "Last version" msgstr "Ostatnia wersja" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Utworzona" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Zaktualizowana" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -441,7 +441,7 @@ msgstr "Działanie" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Pokaż" @@ -457,11 +457,11 @@ msgstr "Usuń dane śledzące tę tabelę" msgid "Drop" msgstr "Usuń" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktywny" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "nieaktywny" @@ -469,11 +469,11 @@ msgstr "nieaktywny" msgid "Versions" msgstr "Wersje" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Raport śledzenia" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Migawka struktury" @@ -541,45 +541,45 @@ msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punkt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punkt %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Dodaj punkt" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linia ciągu" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Pierścień zewnętrzny" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Pierścień wewnętrzny" @@ -587,15 +587,15 @@ msgstr "Pierścień wewnętrzny" msgid "Add a linestring" msgstr "Dodaj linestring" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Dodaj pierścień wewnętrzny" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Wielokąt" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Dodaj wielokąt" @@ -738,8 +738,9 @@ msgstr "Więcej ustawień" msgid "Database server" msgstr "Serwer bazy danych" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Serwer" @@ -758,7 +759,7 @@ msgstr "Wersja protokołu" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Użytkownik" @@ -1004,12 +1005,12 @@ msgstr "Przeładowanie Uprawnień" msgid "Removing Selected Users" msgstr "Usuwanie wybranych użytkowników" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Zamknij" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1019,15 +1020,15 @@ msgstr "Zamknij" msgid "Edit" msgstr "Edytuj" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Wykres ruchu w czasie rzeczywistym" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Wykres połączeń w czasie rzeczywistym /wykres procesów" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Wykres zapytań w czasie rzeczywistym" @@ -1038,13 +1039,14 @@ msgstr "Dane statyczne" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Ogółem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Inne" @@ -1059,48 +1061,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB przesłane od czasu ostatniego odświeźenia" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB otrzymane od czasu ostatniego odświeżenia" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Ruch na serwerze (w KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Połączenia od czasu ostatniego odświeżenia" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesy" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Połączenia / Procesy" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Zapytania od czasu ostatniego odświeżenia" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Zapytania (instrukcje wykonane przez serwer)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statystyki zapytań" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Konfiguracja monitora lokalnego jest niezgodna" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1112,196 +1080,201 @@ msgstr "" "że bieżąca konfiguracja nie będzie już działać. Proszę zresetować " "konfigurację do domyślnej w menu Ustawienia." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Wydajność pamięci podręcznej zapytań" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Użycie pamięci podręcznej zapytań" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Użyta pamięć podręczna zapytań" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Użycie systemowego CPU" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Pamięć systemowa" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Systemowa przestrzeń wymiany" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Obciążenie przeciętne" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Pamięć ogółem" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Pamięć podręczna" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Pamięć buforowana" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Pamięć wolna" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Pamięć użyta" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Przestrzeń wymiany ogółem" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Podręczna przestrzeń wymiany" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Użyta przestrzeń wymiany" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Wolna przestrzeń wymiany" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bajty przesłane" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bajty otrzymane" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Połączenia" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesy" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabeli(l)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Pytania" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Ruch" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Ustawienia" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Usuń wykres" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Edytuj tytuł i etykiety" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Dodaj wykres do siatki" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Proszę dodać przynajmniej jedną zmienną do serii" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Żaden" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Wznów monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Wstrzymaj monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log i slow_query_log są włączone." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log jest włączony." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log jest włączony." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log i general_log są wyłączone." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output nie jest ustawiony do TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output jest ustawiony do TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1312,12 +1285,12 @@ msgstr "" "zapytania, które trwają dłużej niż %d sekund. Zaleca się ustawić " "long_query_time na 0-2 sekundy, w zależności od systemu." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time jest ustawiony na %d sekund(y)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1326,30 +1299,30 @@ msgstr "" "ustawień domyślnych po restarcie serwera:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Ustaw log_output do %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Włączone %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Wyłączone %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Ustaw long_query_time do %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1357,53 +1330,53 @@ msgstr "" "Nie można zmienić tych zmiennych. Proszę zalogować się jako root lub " "skontaktować się z administratorem bazy danych." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Zmiana ustawień" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Tytuł wykresu" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Zróżnicowany" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Podzielony przez %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Jednostka" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Z dziennika powolnego" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Z dziennika ogólnego" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analizowanie logów" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analiza i wczytywanie dzienników. To może trochę potrwać ..." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Anuluj żądanie" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1413,7 +1386,7 @@ msgstr "" "Jednakże, jako kryterium grupowania, zostało użyte tylko same zapytanie SQL, " "a wiec inne atrybuty zapytań, takie jak czas startu, mogą się różnić." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1423,100 +1396,100 @@ msgstr "" "tej samej tabeli są także pogrupowane razem, niezależnie od wstawionych " "danych." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Wczytano dane dziennika. Zapytania wykonane w tym odcinku czasu:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Przejdź do dziennika tabeli" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nie znaleziono danych" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Dziennik przeanalizowany, lecz nie znaleziono żadnych danych w tym odcinku " "czasu." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analizowanie…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Wyjaśnij wynik przetworzenia danych" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Czas" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Czas ogółem:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Wyniki profilowania" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Wykres" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Edytuj wykres" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serie" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opcje filtru dziennika tabeli" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtr" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtr zapytań poprzez wyraz / wyrażenie regularne:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupa zapytań, ignorowanie zmiennych danych w WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Suma zgrupowanych wierszy:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Ogółem:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Ładowanie logów" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Odświeżanie monitora nie powiodło się" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1526,254 +1499,256 @@ msgstr "" "odpowiedź. To jest najbardziej prawdopodobne, ponieważ Twoja sesja wygasła. " "Odświeżenie strony i ponownego wprowadzania poświadczenia powinno pomóc." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Przeładuj stronę" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Zagrożone wiersze:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Nie powiodła się analiza pliku konfiguracyjnego. Nie wydaje się być " "poprawnym kodem JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nie udało zbudować siatki wykresu z importu konfiguracji. Przywracanie " "domyślnej konfiguracji…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importuj konfigurację monitora" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Proszę wybrać plik, który chcesz zaimportować" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analiza zapytania" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Doradca systemu" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Możliwe problemy z wydajnością" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Rekomendacja" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Szczegóły reguły" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Motywacja" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Użyj zmiennej/wzoru" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Testuj" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Wczytywanie" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Przetwarzanie wywołania" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Błąd przetwarzania wywołania" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Usuwanie kolumny" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Dodawanie klucza głównego" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Kliknij, aby zamknąć to powiadomienie" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Zmiana nazwy bazy danych" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Przeładuj bazę danych" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopiowanie bazy danych" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Zmiana kodowania" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabela musi mieć przynajmniej jedną kolumnę" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Wstaw tabelę" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Ukryj indeksy" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Pokaż indeksy" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Sprawdzanie klucza zewnętrznego:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Włączone)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Wyłączone)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Wyszukiwanie" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Ukryj okno wyników" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Pokaż wyniki wyszukiwania" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Przeglądanie" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Usuwanie" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicja przechowywania funkcji musi zawierać deklarację RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Wartości dla kolumny %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Wartości dla nowej kolumny" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Wprowadź każdą wartość do osobnego pola" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d wartość(i)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Uwaga: Jeśli plik zawiera wiele tabel, będzie połączony w jeden" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Ukryj okno zapytań" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Pokaż okno zapytań" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nie żadnych wybrano rekordów" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Zmień" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Czas wykonywania zapytania" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1782,92 +1757,92 @@ msgstr "%d nie jest prawidłowym numerem wiersza." msgid "Save" msgstr "Zapisz" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Ukryj okno zapytania SQL" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Pokaż kryteria wyszukiwania" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Powiększ szukanie" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Każdy punkt reprezentuje wiersz danych." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Najechanie nad punkt pokaże jego etykietę." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Kliknij przycisk, aby zresetować powiększenie." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknij punkt danych, aby wyświetlić lub ewentualnie zmodyfikować wiersze " "danych." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Wykres może być zmieniany przez przeciągnięcie go wzdłuż prawego dolnego " "rogu." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Wybierz dwie kolumny" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Wybierz dwie różne kolumny" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Wyniki zapytania" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiuj" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Dodaj kolumny" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1875,15 +1850,20 @@ msgstr "" "Nie zapisano zmian w układzie. Zostaną utracone, jeśli ich nie zapiszesz. " "Czy chcesz kontynuować?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Dodaj opcję do kolumny " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Naciśnij ESCAPE, aby anulować edycję" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1891,27 +1871,27 @@ msgstr "" "Po dokonaniu edycji pewnych danych, nie zostały one zapisane. Czy na pewno " "chcesz opuścić tę stronę przed zapisaniem danych?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Przeciągnij, aby uporządkować" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kliknij, aby posortować" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Kliknij, aby zaznaczyć/odznaczyć" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1920,7 +1900,7 @@ msgstr "" "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po " "zapisaniu." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1931,65 +1911,65 @@ msgstr "" "Można także edytować większość kolumn
klikając bezpośrednio na ich " "treść." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Można także edytować większość kolumn,
klikając bezpośrednio na ich " "treść." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Kliknij link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Skopiuj nazwę kolumny" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Kliknij prawym przyciskiem myszy nazwę kolumny aby skopiować go do schowka." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Pokaż dane wiersza(y)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generuj" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Więcej" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Pokaż wszystko" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Ukryj indeksy" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1999,266 +1979,266 @@ msgstr "" "wersja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", ostatnia stabilna wersja:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "aktualna" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Zakończ" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Poprz." -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Nast." #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Dziś" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Styczeń" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Luty" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Marzec" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Kwiecień" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Czerwiec" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Lipiec" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Sierpień" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Wrzesień" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Październik" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Listopad" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Gru" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Piątek" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Ty" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalendarz-miesiąc-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "brak" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Godzina" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuta" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekunda" @@ -2312,16 +2292,16 @@ msgstr "" "Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono " "\"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "na sekundę" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "na minutę" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "na godzinę" @@ -2347,7 +2327,7 @@ msgstr "Rozmiar czcionki" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Rosnąco" @@ -2356,7 +2336,7 @@ msgstr "Rosnąco" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Malejąco" @@ -2474,7 +2454,7 @@ msgstr "Usunąć dopasowania do tabeli %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Usuń" @@ -2645,7 +2625,7 @@ msgid "The row has been deleted" msgstr "Wiersz został usunięty" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Zabij" @@ -2702,12 +2682,13 @@ msgstr "Zaznacz wszystkie" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" @@ -2715,7 +2696,7 @@ msgstr "Eksport" msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2801,16 +2782,16 @@ msgstr "Nie można odczytać (przeniesiony) przesłanego pliku." msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript musi być włączona obok tego punktu" @@ -2822,21 +2803,21 @@ msgstr "Brak zdefiniowanego indeksu!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Moc" @@ -2846,13 +2827,13 @@ msgstr "Moc" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Metoda porównywania napisów" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentarz" @@ -2897,7 +2878,7 @@ msgstr "Widok" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -2970,34 +2951,35 @@ msgstr "Zdarzenia" msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Użytkownicy" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Dziennik binarny" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikacja" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Wtyczki" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Mechanizmy" @@ -3048,6 +3030,104 @@ msgstr "Ostatnie tabele" msgid "There are no recent tables" msgstr "Brak ostatnich tabel" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Zapytanie SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Obsługa" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Pamięć podręczna zapytań" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Wątki" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dane tymczasowe" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Opóźnione dodania" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Bufor klucza" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Złączenia" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortowanie" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabele" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordynator transakcji" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Pliki" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Przeładuj (zamknij) wszystkie tabele" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Pokaż otwarte tabele" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Pokaż podrzędne hosty" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Pokaż stan serwera głównego" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Status serwera podrzędnego" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Opróżnij bufor podręczny zapytań" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Status InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statystyki zapytań" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Wszystkie zmienne stanu" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitor" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Doradca" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3143,7 +3223,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Wartość" @@ -3596,11 +3676,6 @@ msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości" msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Zapytanie SQL" - #: libraries/Util.class.php:710 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:292 @@ -3635,7 +3710,7 @@ msgid "Create PHP Code" msgstr "Utwórz kod PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Odśwież" @@ -3731,13 +3806,6 @@ msgstr "Drukuj" msgid "shared" msgstr "współdzielone" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabele" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3778,11 +3846,11 @@ msgstr "Sprawdź uprawnienia bazy danych "%s"." msgid "Check Privileges" msgstr "Sprawdź uprawnienia" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Nie można odczytać pliku konfiguracyjnego" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3790,12 +3858,12 @@ msgstr "" "To zazwyczaj oznacza, że jest błąd składni w tym, sprawdź wszelkie błędy " "poniżej." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nie można załadować domyślnej konfiguracji z: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3803,39 +3871,39 @@ msgstr "" "Dyrektywa [code]$cfg['PmaAbsoluteUri'][/code] MUSI być ustawiona w pliku " "konfiguracyjnym!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Niewłaściwy indeks serwera: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Próba nadpisania GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "można wykorzystać" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "wykryty klawisz numeryczny" @@ -6136,8 +6204,8 @@ msgstr "" "Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Użytkownik" @@ -6801,10 +6869,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Status InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Użycie rezerw buforowych" @@ -7499,20 +7563,20 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Filtr tabel wg nazwy" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Wyczyść serie" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7626,17 +7690,17 @@ msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Tylko struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktura i dane" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Tylko dane" @@ -8030,8 +8094,7 @@ msgstr "Wyświetl typy MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8638,7 +8701,7 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Zmienna" @@ -9154,7 +9217,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dodatkowo" @@ -9857,7 +9920,7 @@ msgstr "Dodaj przedrostek do tabeli" msgid "Check tables having overhead" msgstr "Zaznacz tabele nieoptymalne" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Brak" @@ -10203,7 +10266,7 @@ msgstr "Przełączanie małe/duże" msgid "Toggle relation lines" msgstr "Przełączanie linii relacji" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" @@ -10269,31 +10332,31 @@ msgstr "Strona została stworzona" msgid "Page creation failed" msgstr "Błąd tworzenia strony" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Strona" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Import z wybranej strony" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Eksport do wybranej strony" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Utwórz stronę i eksport do niej" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nowa nazwa strony: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Eksport/import w skali" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "zalecana" @@ -10412,15 +10475,11 @@ msgstr "Plik nie istnieje" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Pliki" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -10505,7 +10564,7 @@ msgstr "Moduł" msgid "Library" msgstr "Biblioteka" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Wersja" @@ -10564,10 +10623,6 @@ msgstr "Serwer główny zmieniony pomyślnie na %s" msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Pokaż stan serwera głównego" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Pokaż połączone serwery podrzędne" @@ -10709,12 +10764,12 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie zabity." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10722,121 +10777,89 @@ msgstr "" "phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już " "zamknięty." -#: server_status.php:657 -msgid "Handler" -msgstr "Obsługa" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Ruch sieciowy od uruchomienia: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Pamięć podręczna zapytań" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Ten serwer MySQL działa już od: %1$s. Uruchomiony został o: %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Wątki" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Ten serwer MySQL jest ustawiony jako główny i podrzędny w " +"procesie replikacji." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dane tymczasowe" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Ten serwer MySQL jest ustawiony jako master w procesie replikacji." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Opóźnione dodania" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Ten serwer MySQL jest pracuje jako podrzędny w procesie " +"replikacji." -#: server_status.php:663 -msgid "Key cache" -msgstr "Bufor klucza" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji." -#: server_status.php:664 -msgid "Joins" -msgstr "Złączenia" +#: server_status.php:122 +msgid "Replication status" +msgstr "Stan replikacji" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortowanie" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " +"jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordynator transakcji" +#: server_status.php:149 +msgid "Received" +msgstr "Otrzymane" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Przeładuj (zamknij) wszystkie tabele" +#: server_status.php:168 +msgid "Sent" +msgstr "Wysłane" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Pokaż otwarte tabele" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "maks. równoczesnych połączeń" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Pokaż podrzędne hosty" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Nieudane próby" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Status serwera podrzędnego" +#: server_status.php:253 +msgid "Aborted" +msgstr "Przerwane" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Opróżnij bufor podręczny zapytań" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informacje o działaniu serwera" +#: server_status.php:329 +msgid "Command" +msgstr "Polecenie" -#: server_status.php:830 -msgid "All status variables" -msgstr "Wszystkie zmienne stanu" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitor" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Doradca" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Liczba wierszy:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Częstotliwość odświeżania: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtry" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Zawierające słowo:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Pokaż tylko wartości alarmowe" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "&Filtruj wg kategorii..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Pokaż niesformatowane wartości" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Powiązane linki:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Analizuj" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instrukcje" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10844,7 +10867,7 @@ msgstr "" "System Doradcy może dostarczyć zalecenia dotyczące zmiennych serwera poprzez " "analizę zmiennych stanu serwera." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10854,7 +10877,7 @@ msgstr "" "obliczeniach i zasadach, które nie mogą mieć obowiązkowego zastosowania do " "systemu." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10864,7 +10887,7 @@ msgstr "" "(poprzez czytanie dokumentacji) i jak cofnąć zmiany. Złe ustawienia mogą " "mieć bardzo negatywny wpływ na wydajność." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10874,826 +10897,39 @@ msgstr "" "ustawienia w czasie, obserwować lub odniesienie bazy danych, i cofnąć " "zmianę, gdyby nie było jednoznacznego wymiernego postępu." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Pytania od uruchomienia: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Oświadczenia" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Ruch sieciowy od uruchomienia: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Ten serwer MySQL działa już od: %1$s. Uruchomiony został o: %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Ten serwer MySQL jest ustawiony jako główny i podrzędny w " -"procesie replikacji." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Ten serwer MySQL jest ustawiony jako master w procesie replikacji." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Ten serwer MySQL jest pracuje jako podrzędny w procesie " -"replikacji." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Stan replikacji" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " -"jakich dostarcza serwer MySQL nie są wiarygodne." - -#: server_status.php:1191 -msgid "Received" -msgstr "Otrzymane" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Wysłane" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "maks. równoczesnych połączeń" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Nieudane próby" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Przerwane" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Polecenie" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " -"poprawnego zamykania połączenia." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." - -#: server_status.php:1529 -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 "" -"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " -"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " -"instrukcji transakcji został użyty plik tymczasowy." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " -"binarnego." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." - -#: server_status.php:1532 -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 "" -"Liczba tabel tymczasowych na dysku utworzonych automatycznie przez serwer " -"podczas wykonywanie instrukcji. Przy dużej wartości Created_tmp_disk_tables, " -"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " -"pamięci, a nie na dysku." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Ile plików tymczasowych utworzył mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " -"podczas wykonywania instrukcji." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " -"jakiś błąd (prawdopodobnie zdublowany klucz)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " -"której wykonuje się INSERT DELAYED dostaje własny wątek." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Liczba wykonanych instrukcji FLUSH." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Liczba wewnętrznych instrukcji COMMIT." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Ile razy wiersz został usunięty z tabeli." - -#: server_status.php:1541 -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 "" -"Serwer MySQL może zapytać mechanizm składowania Cluster NDB, czy ma " -"informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." - -#: server_status.php:1542 -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 "" -"Ile razy z indeksu została odczytana pierwsza pozycja. Duża wartość " -"sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " -"col1 FROM foo, przy założeniu, że col1 jest zindeksowane." - -#: server_status.php:1543 -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 "" -"Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " -"oznaka tego, że zapytania i tabele są właściwie zindeksowane." - -#: server_status.php:1544 -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 "" -"Liczba żądań odczytu następnego wiersza w porządku indeksowym. Ta wartość " -"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " -"przedziale lub przy przeszukiwaniu indeksu." - -#: server_status.php:1545 -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 "" -"Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " -"używana głównie do optymalizacji ORDER BY … DESC." - -#: server_status.php:1546 -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 "" -"Liczba żądań odczytu następnego wiersza na podstawie stałego położenia. " -"Wartość jest duża przy wykonywaniu dużej ilości zapytań wymagających " -"sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " -"przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." - -#: server_status.php:1547 -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 "" -"Liczba żądań odczytu następnego wiersza w pliku z danymi. Wartość jest duża " -"przy wykonywania wielu przeszukiwań tabeli. Ogólnie sugeruje to, że tabele " -"nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " -"pozwalający skorzystać z istniejących indeksów." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Liczba wewnętrznych instrukcji ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Liczba żądań zmiany wiersza w tabeli." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Liczba żądań dodania wiersza do tabeli." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Liczba stron zawierających dane (brudnych lub czystych)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Liczba aktualnie brudnych stron." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Liczba wolnych stron." - -#: server_status.php:1555 -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 "" -"Liczba stron zatrzaśniętych w puli bufora InnoDB. Są to strony aktualnie " -"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " -"usunięte z jakiegoś innego powodu." - -#: server_status.php:1556 -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 "" -"Liczba strony stron zajętych z powodu ich alokacji dla celów " -"administracyjnych takich jak blokady wiersza lub adaptacyjny indeks " -"haszujący. Wartość ta może też zostać policzona jako " -"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Całkowita wielkość puli bufora, w stronach." - -#: server_status.php:1558 -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 "" -"Liczba \"losowych\" odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " -"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " -"kolejności." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " -"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " -"musiał wykonać odczyt pojedynczej strony." - -#: server_status.php:1562 -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 "" -"Zwykle zapis do puli bufora InnoDB obywa się w tle. Jednakże, jeśli " -"niezbędny jest odczyt lub utworzenie strony a brak jest czystych stron, " -"konieczne jest najpierw oczekiwanie na wymiecienie stron. Ten licznik " -"wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " -"ustawiony właściwie, wartość ta powinna być mała." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Liczba dotąd wykonanych operacji fsync()." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Aktualna liczba operacji fsync() w toku." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Aktualna liczba odczytów w toku." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Aktualna liczba zapisów w toku." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Ilość dotąd odczytanych danych, w bajtach." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Łączna liczba odczytów danych." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Łączna liczba zapisów danych." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Ilość dotąd zapisanych danych, w bajtach." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "Liczba przeprowadzonych zapisów typu doublewrite." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." - -#: server_status.php:1574 -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 "" -"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " -"oczekiwano na jego opróżnienie." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Liczba żądań zapisów do dziennika." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Liczba fizycznych zapisów do pliku dziennika." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Liczba synchronicznych zapisów do pliku dziennika." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Liczba wywołań fsync dla pliku dziennika w toku." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Liczba zapisów do pliku dziennika w toku." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Liczba bajtów zapisanych do pliku dziennika." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Liczba utworzonych stron." - -#: server_status.php:1582 -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 "" -"Wkompilowana wielkość strony InnoDB (domyślnie 16KB). Wiele wartości jest " -"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " -"konwersję na bajty." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Liczba odczytanych stron." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Liczba zapisanych stron." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Liczba blokad wiersza na które aktualnie się czeka." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Ile razy czekano na blokadę wiersza." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Liczba wierszy usuniętych z tabel InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Liczba wierszy dodanych do tabel InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Liczba wierszy odczytanych z tabel InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Liczba wierszy zmienionych w tabelach InnoDB." - -#: server_status.php:1594 -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 "" -"Liczba bloków w buforze podręcznym indeksów, które zostały zmodyfikowane ale " -"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " -"wartości do określenia jaka część bufora indeksów jest w użyciu." - -#: server_status.php:1596 -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 "" -"Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " -"który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." - -#: server_status.php:1599 -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 "" -"Liczba fizycznych odczytów bloków indeksów z dysku. Duża wartość key_reads " -"oznacza, że prawdopodobnie wartość key_buffer_size jest zbyt mała. " -"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" -"Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " -"odczytu do żądania odczytu (obliczona wartość)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" - -#: server_status.php:1604 -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 "" -"Całkowity koszt ostatnie zapytanie skompilowane obliczonego przez " -"optymalizator kwerendy. Użyteczna przy porównywaniu kosztów różnych planów " -"kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " -"została opracowana jeszcze." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " -"został uruchomiony." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " -"prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Liczba otwartych plików." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Liczba otwartych tabel." - -#: server_status.php:1611 -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 "" -"Liczba wolnych bloków pamięci w buforze zapytań. Duża liczba może wskazywać " -"na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " -"polecenie FLUSH CACHE QUERY." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Liczba trafień pamięci podręcznej." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Liczba zapytań dodanych do pamięci podręcznej." - -#: server_status.php:1615 -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 "" -"Liczba zapytań, które zostały usunięte z pamięci podręcznej, by zwolnic " -"pamięć do buforowania nowych zapytań. Ta informacje może pomóc dostroić " -"wielkość bufora podręcznego. Do decydowania o tym, które zapytania usunąć z " -"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" -"\" (least recently used - LRU)." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " -"niezbuforowanych z powodu ustawienia query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." - -#: server_status.php:1620 -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 "" -"Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " -"staranne przyjrzenie się indeksom tabel." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " -"złączanej tabeli." - -#: server_status.php:1622 -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 "" -"Liczba złączeń bez użycia indeksów gdy możliwość ich użycia była sprawdzana " -"dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " -"indeksom tabel.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " -"(Nawet duża wartość nie ma kluczowego znaczenia.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " -"transakcje." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " -"głównego." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" -"Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." - -#: server_status.php:1630 -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 "" -"Liczba przebiegów scalania, które musiał wykonać algorytm sortujący. Przy " -"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " -"systemowej sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Liczba sortowań wykonanych przy użyciu zakresów." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Liczba posortowanych wierszy." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." - -#: server_status.php:1635 -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 "" -"Ile razy blokada tabeli nie mogła zostać uzyskana natychmiastowo i niezbędne " -"było oczekiwanie. Przy wysoka wartość oraz problemach z wydajnością powinno " -"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " -"lub użyć replikacji." - -#: server_status.php:1636 -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 "" -"Liczba wątków w buforze podręcznym wątków. Współczynnik trafienia w bufor " -"może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " -"oznacza, że powinno się zwiększyć thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Liczba aktualnie otwartych połączeń." - -#: server_status.php:1638 -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 "" -"Liczba wątków utworzonych by obsłużyć połączenia. Jeżeli wartość " -"Threads_created jest duża, można chcieć zwiększyć wartość thread_cache_size. " -"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " -"polepszenia wydajności.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Cache wątku trafień (obliczona wartość)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Liczba nieuśpionych wątków." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Uruchom monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instrukcje/Setup" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Gotowe przestawienie/edycji wykresów" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Dodaj wykres" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "przestawienie/edycji wykresów" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Częstotliwość odświeżania" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Kolumny wykresu" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Układ wykresu" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11701,15 +10937,15 @@ msgstr "" "Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " "Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Przywróć wartość domyślną" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Instrukcje monitora" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11723,7 +10959,7 @@ msgstr "" "włączone. Należy jednak pamiętać, że general_log produkuje duże ilości " "danych i zwiększa obciążenie serwera nawet o 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11735,11 +10971,11 @@ msgstr "" "tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " "funkcji wykresów serwera jednak." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Korzystanie z monitora:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11749,7 +10985,7 @@ msgstr "" "odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania " "w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11761,11 +10997,11 @@ msgstr "" "wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " "kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Proszę zwrócić uwagę:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11778,80 +11014,80 @@ msgstr "" "wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " "wymagane." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Ustawiony wykres" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Zmienna statusu(ów)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Wybierz serię:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Najczęściej monitorowany" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "lub wpisz nazwę zmiennej:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Wyświetl jako wartości różnicy" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Zastosuj dzielnik" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Dołącz urządzenia do wartości danych" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Dodaj tę serię" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Wyczyść serie" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Seria na wykresie:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Statystyki Log" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Wybrany zakres czasu:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Wybierz z którego dziennika chcesz statystyki które mają być generowane." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Wyniki są pogrupowane według zapytania tekstu." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analizuj zapytanie" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11859,7 +11095,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekund" msgstr[2] "%d sekundę" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11867,6 +11103,739 @@ msgstr[0] "%d minut" msgstr[1] "%d minuty" msgstr[2] "%d minuty" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Pytania od uruchomienia: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Oświadczenia" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtry" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Zawierające słowo:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Pokaż tylko wartości alarmowe" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "&Filtruj wg kategorii..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Pokaż niesformatowane wartości" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Powiązane linki:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " +"poprawnego zamykania połączenia." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." + +#: server_status_variables.php:334 +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 "" +"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " +"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " +"instrukcji transakcji został użyty plik tymczasowy." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " +"binarnego." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." + +#: server_status_variables.php:346 +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 "" +"Liczba tabel tymczasowych na dysku utworzonych automatycznie przez serwer " +"podczas wykonywanie instrukcji. Przy dużej wartości Created_tmp_disk_tables, " +"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " +"pamięci, a nie na dysku." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Ile plików tymczasowych utworzył mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " +"podczas wykonywania instrukcji." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " +"jakiś błąd (prawdopodobnie zdublowany klucz)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " +"której wykonuje się INSERT DELAYED dostaje własny wątek." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Liczba wykonanych instrukcji FLUSH." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Liczba wewnętrznych instrukcji COMMIT." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Ile razy wiersz został usunięty z tabeli." + +#: server_status_variables.php:381 +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 "" +"Serwer MySQL może zapytać mechanizm składowania Cluster NDB, czy ma " +"informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." + +#: server_status_variables.php:387 +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 "" +"Ile razy z indeksu została odczytana pierwsza pozycja. Duża wartość " +"sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " +"col1 FROM foo, przy założeniu, że col1 jest zindeksowane." + +#: server_status_variables.php:393 +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 "" +"Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " +"oznaka tego, że zapytania i tabele są właściwie zindeksowane." + +#: server_status_variables.php:398 +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 "" +"Liczba żądań odczytu następnego wiersza w porządku indeksowym. Ta wartość " +"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " +"przedziale lub przy przeszukiwaniu indeksu." + +#: server_status_variables.php:403 +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 "" +"Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " +"używana głównie do optymalizacji ORDER BY … DESC." + +#: server_status_variables.php:407 +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 "" +"Liczba żądań odczytu następnego wiersza na podstawie stałego położenia. " +"Wartość jest duża przy wykonywaniu dużej ilości zapytań wymagających " +"sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " +"przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." + +#: server_status_variables.php:414 +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 "" +"Liczba żądań odczytu następnego wiersza w pliku z danymi. Wartość jest duża " +"przy wykonywania wielu przeszukiwań tabeli. Ogólnie sugeruje to, że tabele " +"nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " +"pozwalający skorzystać z istniejących indeksów." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Liczba wewnętrznych instrukcji ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Liczba żądań zmiany wiersza w tabeli." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Liczba żądań dodania wiersza do tabeli." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Liczba stron zawierających dane (brudnych lub czystych)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Liczba aktualnie brudnych stron." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Liczba wolnych stron." + +#: server_status_variables.php:443 +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 "" +"Liczba stron zatrzaśniętych w puli bufora InnoDB. Są to strony aktualnie " +"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " +"usunięte z jakiegoś innego powodu." + +#: server_status_variables.php:448 +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 "" +"Liczba strony stron zajętych z powodu ich alokacji dla celów " +"administracyjnych takich jak blokady wiersza lub adaptacyjny indeks " +"haszujący. Wartość ta może też zostać policzona jako " +"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Całkowita wielkość puli bufora, w stronach." + +#: server_status_variables.php:458 +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 "" +"Liczba \"losowych\" odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " +"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " +"kolejności." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " +"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " +"musiał wykonać odczyt pojedynczej strony." + +#: server_status_variables.php:474 +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 "" +"Zwykle zapis do puli bufora InnoDB obywa się w tle. Jednakże, jeśli " +"niezbędny jest odczyt lub utworzenie strony a brak jest czystych stron, " +"konieczne jest najpierw oczekiwanie na wymiecienie stron. Ten licznik " +"wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " +"ustawiony właściwie, wartość ta powinna być mała." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Liczba dotąd wykonanych operacji fsync()." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Aktualna liczba operacji fsync() w toku." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Aktualna liczba odczytów w toku." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Aktualna liczba zapisów w toku." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Ilość dotąd odczytanych danych, w bajtach." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Łączna liczba odczytów danych." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Łączna liczba zapisów danych." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Ilość dotąd zapisanych danych, w bajtach." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "Liczba przeprowadzonych zapisów typu doublewrite." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." + +#: server_status_variables.php:516 +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 "" +"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " +"oczekiwano na jego opróżnienie." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Liczba żądań zapisów do dziennika." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Liczba fizycznych zapisów do pliku dziennika." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Liczba synchronicznych zapisów do pliku dziennika." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Liczba wywołań fsync dla pliku dziennika w toku." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Liczba zapisów do pliku dziennika w toku." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Liczba bajtów zapisanych do pliku dziennika." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Liczba utworzonych stron." + +#: server_status_variables.php:541 +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 "" +"Wkompilowana wielkość strony InnoDB (domyślnie 16KB). Wiele wartości jest " +"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " +"konwersję na bajty." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Liczba odczytanych stron." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Liczba zapisanych stron." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Liczba blokad wiersza na które aktualnie się czeka." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Ile razy czekano na blokadę wiersza." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Liczba wierszy usuniętych z tabel InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Liczba wierszy dodanych do tabel InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Liczba wierszy odczytanych z tabel InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Liczba wierszy zmienionych w tabelach InnoDB." + +#: server_status_variables.php:579 +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 "" +"Liczba bloków w buforze podręcznym indeksów, które zostały zmodyfikowane ale " +"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " +"wartości do określenia jaka część bufora indeksów jest w użyciu." + +#: server_status_variables.php:588 +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 "" +"Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " +"który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." + +#: server_status_variables.php:599 +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 "" +"Liczba fizycznych odczytów bloków indeksów z dysku. Duża wartość key_reads " +"oznacza, że prawdopodobnie wartość key_buffer_size jest zbyt mała. " +"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" +"Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " +"odczytu do żądania odczytu (obliczona wartość)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" + +#: server_status_variables.php:619 +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 "" +"Całkowity koszt ostatnie zapytanie skompilowane obliczonego przez " +"optymalizator kwerendy. Użyteczna przy porównywaniu kosztów różnych planów " +"kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " +"została opracowana jeszcze." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " +"został uruchomiony." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " +"prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Liczba otwartych plików." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Liczba otwartych tabel." + +#: server_status_variables.php:645 +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 "" +"Liczba wolnych bloków pamięci w buforze zapytań. Duża liczba może wskazywać " +"na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " +"polecenie FLUSH CACHE QUERY." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Liczba trafień pamięci podręcznej." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Liczba zapytań dodanych do pamięci podręcznej." + +#: server_status_variables.php:659 +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 "" +"Liczba zapytań, które zostały usunięte z pamięci podręcznej, by zwolnic " +"pamięć do buforowania nowych zapytań. Ta informacje może pomóc dostroić " +"wielkość bufora podręcznego. Do decydowania o tym, które zapytania usunąć z " +"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" +"\" (least recently used - LRU)." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " +"niezbuforowanych z powodu ustawienia query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." + +#: server_status_variables.php:679 +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 "" +"Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " +"staranne przyjrzenie się indeksom tabel." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " +"złączanej tabeli." + +#: server_status_variables.php:686 +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 "" +"Liczba złączeń bez użycia indeksów gdy możliwość ich użycia była sprawdzana " +"dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " +"indeksom tabel.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " +"(Nawet duża wartość nie ma kluczowego znaczenia.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " +"transakcje." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " +"głównego." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." + +#: server_status_variables.php:717 +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 "" +"Liczba przebiegów scalania, które musiał wykonać algorytm sortujący. Przy " +"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " +"systemowej sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Liczba sortowań wykonanych przy użyciu zakresów." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Liczba posortowanych wierszy." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." + +#: server_status_variables.php:734 +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 "" +"Ile razy blokada tabeli nie mogła zostać uzyskana natychmiastowo i niezbędne " +"było oczekiwanie. Przy wysoka wartość oraz problemach z wydajnością powinno " +"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " +"lub użyć replikacji." + +#: server_status_variables.php:740 +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 "" +"Liczba wątków w buforze podręcznym wątków. Współczynnik trafienia w bufor " +"może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " +"oznacza, że powinno się zwiększyć thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Liczba aktualnie otwartych połączeń." + +#: server_status_variables.php:748 +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 "" +"Liczba wątków utworzonych by obsłużyć połączenia. Jeżeli wartość " +"Threads_created jest duża, można chcieć zwiększyć wartość thread_cache_size. " +"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " +"polepszenia wydajności.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Cache wątku trafień (obliczona wartość)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Liczba nieuśpionych wątków." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Błędne ustawienie zmienne" @@ -12462,26 +12431,26 @@ msgstr "Ograniczenie klucza obcego" msgid "Tracking report for table `%s`" msgstr "Raport śledzenia tabeli `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Śledzenie dla %1$s zostało wyłączone w wersji %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Śledzenie dla %1$s zostało włączone w wersji %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Instrukcje SQL zostały wykonane." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12489,118 +12458,118 @@ msgstr "" "Możesz wykonać zrzut poprzez tworzenie i używanie tymczasowej bazy danych. " "Upewnij się, że masz uprawnienia do tego." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Wersja %s migawki (kod SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Śledzenie definicją danych pomyślnie usunięte" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Błąd zapytania" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Śledzenie manipulacją danymi pomyślnie usunięte" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Śledzenie instrukcji" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Pokaż %1$s w okresie od %2$s do %3$s wg użytkownika %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Usuń wiersz śledzenia danych z raportu" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Brak danych" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Instrukcja definiowania danych" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Instrukcja przetwarzania danych" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Zrzut SQL (plik do pobrania)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Zrzut SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Wykonanie SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Eksportuj jako %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Pokaż wersje" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktywuj śledzenie dla %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Dezaktywuj teraz" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Aktywuj śledzenie %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktywuj teraz" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Utwórz wersję %1$s dla %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Śledź te instrukcje definicji danych:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Śledź te instrukcje manipulowania danymi:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Utwórz wersję" @@ -12752,11 +12721,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time jest aktualnie ustawiony na %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Rejestrowanie powolnych zapytań" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Rejestrowanie powolnych zapytań jest wyłączone." @@ -12773,15 +12742,34 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries jest ustawiony na 'WYŁ'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Włączenie rejestrowania powolnych zapytań przez ustawienie " +"{log_slow_queries} na \"WŁ\". To pomoże rozwiązać problemy źle " +"przeprowadzonych zapytań." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries jest ustawiony na 'WYŁ'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Seria wydania" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Wersja serwera MySQL jest mniejsza niż 5,1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12789,21 +12777,21 @@ msgstr "" "Powinieneś zaktualizować, jak MySQL 5.1 ma lepsze osiągi i MySQL 5.5 jeszcze " "bardziej." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Bieżąca wersja: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Mniejsza wersja" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Wersja starsza niż 5.1.30 (pierwsze wydanie GA 5,1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12811,24 +12799,24 @@ msgstr "" "Powinieneś zaktualizować, jako ostatnie wersje MySQL 5.1 poprawiają " "wydajność a MySQL 5.5 jeszcze bardziej." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Wersja starsza niż 5.5.8 (pierwsze wydanie GA 5,5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Należy uaktualnić do stabilnej wersji MySQL 5.5 lub nowszej" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Dystrybucja" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Wersja jest skompilowana ze źródeł, a nie oficjalnych binarnek MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12839,40 +12827,40 @@ msgstr "" "plików binarnych MySQL, a nie wszelkie dystrybucje pakietów (takich jak " "RedHat, Debian/Ubuntu itp)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "\"Źródło\" znaleziono w version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL instrukcji tylko jest dokładna dla oficjalnych binarnych MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Dokumentacja Percona jest na www.percona.com/docs/wiki" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' znaleziono w version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Dokumentacja Drizzle jest na http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Ciąg wersji (%s) pasuje do schematu wersjonowania drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Architektura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL nie jest skompilowany jako pakiet 64-bitowy." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12882,20 +12870,20 @@ msgstr "" "na localhost), więc MySQL nie może być w stanie uzyskać dostęp do całej " "pamięci. Warto rozważyć zainstalowanie 64-bitowej wersji MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Dostępna pamięć na tym hostie: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Pamięć podręczna zapytania wyłączona" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Pamięć podręczna zapytania nie jest włączona." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12907,21 +12895,21 @@ msgstr "" "{query_cache_size} na 2 cyfrową wartość MB i ustawienie {query_cache_type} " "na \"WŁ\". Uwaga: Jeśli używasz memcached, zignoruj to zalecenie." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size jest ustawiony na 0 lub query_cache_type jest ustawiony na " "'WYŁ'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Metoda buforowania zapytania" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Optymalna metoda buforowania." -#: libraries/advisory_rules.txt:157 +#: 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 zamiast pamięci podręcznej " "MySQL zapytania, zwłaszcza jeśli masz wiele niewolników." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12943,36 +12931,36 @@ msgstr "" "sekundę. Zasada ta zadziała, jeśli istnieje więcej niż 100 zapytań na " "sekundę." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Wydajność pamięci podręcznej zapytań (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "Pamięć podręczna zapytania nie działa sprawnie, ma niski współczynnik " "trafień." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Rozważ zwiększenie {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Obecna pamięć podręczna zapytań trafień %s%% jest poniżej 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Wykorzystanie pamięci podręcznej zapytania" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Mniej niż 80%% z zapytania pamięci podręcznej jest wykorzystywane." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12980,7 +12968,7 @@ msgstr "" "Może to być spowodowane przez {query_cache_limit} bo jest zbyt niski. " "Flushing zapytania pamięci podręcznej może pomóc." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12989,15 +12977,15 @@ msgstr "" "Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do " "całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Fragmentacja pamięci podręcznej zapytania" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Zapytanie pamięci podręcznej jest znacznie pofragmentowane." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -13018,7 +13006,7 @@ msgstr "" "za pomocą następującej formuły: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -13029,11 +13017,11 @@ msgstr "" "fragmentacji, że zapytanie cache jest zmienny wzór bloków wolnej i " "wykorzystanej. Wartość ta powinna być poniżej 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Okrojone zapytania cache niskiej pamięci" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13041,7 +13029,7 @@ msgstr "" "Buforowane zapytania zostaną usunięte z powodu braku pamięci, z zapytania " "pamięci podręcznej." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -13051,7 +13039,7 @@ msgstr "" "obciążenie związane z utrzymaniem cache prawdopodobnie wzrośnie z jego " "wielkością, więc to zrób w małych krokach i monitoruj wyniki." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -13060,11 +13048,11 @@ msgstr "" "Stosunek usuniętych zapytań do wstawionych zapytań jest %s%%. Im niższa jest " "ta wartość, tym lepiej (Ta zasad wypalania limitu: 0,1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maksymalny rozmiar pamięci zapytań" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -13072,7 +13060,7 @@ msgstr "" "Rozmiar zapytania pamięci podręcznej jest ponad 128 MB. Duże bufory zapytań " "mogą spowodować znaczne obciążenie, które są wymagane do utrzymania cache." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -13080,23 +13068,23 @@ msgstr "" "W zależności od środowiska, to może być że wydajność wzrasta do zmniejszenia " "tej wartości." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Aktualny rozmiar pamięci podręcznej zapytań: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Minimalny rozmiar wyników zapytania pamięci podręcznej" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Maksymalny rozmiar zestawu wyników w pamięci podręcznej zapytania jest " "domyślnie 1 MB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13117,19 +13105,19 @@ msgstr "" "aktualizacji tabeli) zwiększanie {query_cache_limit} może zmniejszyć " "wydajność." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit jest ustawiony na 1 MB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Procent sortuje, które powodują tabele tymczasowe" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Zbyt wiele rodzajów jest przyczyną tabel tymczasowych." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13137,7 +13125,7 @@ msgstr "" "Rozważyć zwiększenie sort_buffer_size i/lub read_rnd_buffer_size, w " "zależności od ograniczeń pamięci systemowej" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13146,11 +13134,11 @@ msgstr "" "%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna " "być niższa niż 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Kurs sortuje, które powodują tabele tymczasowe" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13158,15 +13146,15 @@ msgstr "" "Średnie tabele tymczasowe: %s ta wartość powinna być mniejsza niż 1 na " "godzinę." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sortowanie wierszy" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Istnieje wiele wierszy posortowanych." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13177,20 +13165,20 @@ msgstr "" "że pytania, które wymagają dużego sortowania używać indeksowanych kolumn w " "klauzuli ORDER BY, gdyż spowoduje to znacznie szybsze sortowanie" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Sortuj średnie wiersze: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Stawka dołączania bez indeksów" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Istnieje zbyt wiele łączy bez indeksów." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13199,22 +13187,22 @@ msgstr "" "indeksów dla kolumn jest używane w sprzężeniu warunkach znacznie " "przyspieszyć tabeli dołącza do" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tabela dołącza średnią: %s, wartość ta powinna być mniejsza niż 1 na godzinę" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "" "Tabela dołącza średnią: %s, wartość ta powinna być mniejsza niż 1 na godzinę" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Wskaźnik odczytania pierwszego wpisu indeksu jest wysoki." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13230,21 +13218,21 @@ msgstr "" "ilość i/lub przyspieszyć pełne skanowanie indeksu. Innych niż tego pełnego " "skanowania indeksu może zostać obniżona o przepisanie zapytania." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Indeks skanuje średnią: %s, wartość ta powinna być mniejsza niż 1 na godzinę" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Stawka czytania stałej pozycji" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Tempo odczytu danych z ustalonej pozycji jest wysokie." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13254,7 +13242,7 @@ msgstr "" "pełny skan tabeli, w tym połączyć pytania które nie korzystają z indeksów. " "Dodaj indeksy w stosownych przypadkach." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13263,15 +13251,15 @@ msgstr "" "Stawka odczytu stałej średniej pozycji: %s, wartość ta powinna być mniejsza " "niż 1 na godzinę" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Stawka odczytu następnego wiersza tabeli" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Tempo odczytu kolejnego wiersza tabeli jest wysokie." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13279,7 +13267,7 @@ msgstr "" "Oznacza to, że wiele zapytań robi pełne skanowanie tabeli. Dodaj indeksy w " "stosownych przypadkach." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13287,15 +13275,15 @@ msgstr "" "Stawka odczytu następnego wiersza tabeli: %s, wartość ta powinna być " "mniejsza niż 1 na godzinę" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size vs. max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size i max_heap_table_size nie są takie same." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13306,16 +13294,16 @@ msgstr "" "wartość albo określa maksymalną wielkość w pamięci tabel. Więc jeśli chcesz " "zwiększyć w pamięci limitu tabeli trzeba będzie zwiększyć inną wartość." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Aktualne wartości są tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Procent z tabel tymczasowych na dysku" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13323,7 +13311,7 @@ msgstr "" "Wiele tabel tymczasowych są zapisywane na dysku zamiast przechowywania w " "pamięci." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13341,7 +13329,7 @@ msgstr "" "wspomniano na początku Artykuł wg Pythian Group" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13350,11 +13338,11 @@ msgstr "" "%s%% wszystkich tabel tymczasowych są zapisywane na dysku, wartość ta " "powinna być poniżej 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Szybkość dysku tymczasowego" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13372,7 +13360,7 @@ msgstr "" "wspomniano w Dokumentacji MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13381,16 +13369,16 @@ msgstr "" "Stawka tabel tymczasowych zapisywanych na dysku: %s, wartość ta powinna być " "mniejsza niż 1 na godzinę" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Rozmiar bufora klucza MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Klucz bufora nie jest inicjowany. Brak indeksów MyISAM będą buforowane." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13398,21 +13386,21 @@ msgstr "" "Ustaw {key_buffer_size} w zależności od wielkości indeksów MyISAM. 64M to " "dobry początek." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size to 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Maks. bufor klucza %% MyISAM kiedykolwiek" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Użycie bufora indeksów MyISAM jest niskie." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13422,7 +13410,7 @@ msgstr "" "tabele, czy indeksy zostały usunięte, lub zbadać zapytania i oczekiwania " "dotyczące tego, co indeksy są używane." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13430,44 +13418,44 @@ msgstr "" "maks %% klucz bufora MyISAM używany co: %s%%, wartość ta powinna być wyższa " "niż 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Procent MyISAM klucza używanego bufora" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% Użyto klucza bufora MyISAM: %s%%, wartość ta powinna być wyższa niż 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Procentowy wskaźnik odczytu z pamięci" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "%% indeksów, które korzystają z MyISAM bufor klucza jest niski." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Być może trzeba zwiększyć {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Indeks odczytuje z pamięci: %s%%, wartość ta powinna być wyższa niż 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Wskaźnik otwartych tabel" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Wskaźnik otwartych tabel jest wysoki." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13475,18 +13463,18 @@ msgstr "" "Otwieranie tabel wymaga dysk I/O, która jest kosztowna. Zwiększenie " "{table_open_cache} może tego uniknąć." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Wskaźnik otwartej tabeli: %s, wartość ta powinna być mniejsza niż 10 na " "godzinę" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Procent używania limitu otwartych plików" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13494,7 +13482,7 @@ msgstr "" "Liczba otwartych plików zbliża się do maks. liczbę otwartych plików. Możesz " "dostać błąd \"Zbyt wiele otwartych plików\"." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13502,65 +13490,65 @@ msgstr "" "Rozważ zwiększenie {open_files_limit} i sprawdź dziennik błędów po restarcie " "po zmianie open_files_limit." -#: libraries/advisory_rules.txt:332 +#: 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 "" "Liczba otwartych plików jest %s%% limitem. Powinna ona być niższa niż 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Wskaźnik otwartych plików" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Wskaźnik otwartych plików jest wysoki." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Wskaźnik otwartych plików: %s, wartość ta powinna być mniejsza niż 5 na " "godzinę" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Natychmiastowe blokada tabeli %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Zbyt wiele blokad tabel nie zostały przyznane natychmiast." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optymalizacja zapytań i/lub używać InnoDB, aby zmniejszyć czas oczekiwania " "blokady." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Natychmiastowa blokada tabeli: %s%%, wartość ta powinna być powyżej 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Wskaźnik oczekiwania blokady tabeli" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Wskaźnik oczekiwania blokady tabeli: %s, wartość ta powinna być mniejsza niż " "1 na godzinę" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Pamięć podręczna wątku" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13568,41 +13556,41 @@ msgstr "" "Cache wątku jest wyłączony, co powoduje większe obciążenia z nowymi " "połączeniami do MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Włącz cache wątku ustawiając {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Cache wątku jest ustawiony na 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Cache wątku trafień %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Pamięć podręczna wątku nie jest wydajna." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Zwiększenie {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Cache wątku: %s%%, wartość ta powinna być wyższa niż 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Wątki, które są wolne do uruchomienia" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Istnieje zbyt wiele wątków, które wolne są do uruchomiania." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13610,20 +13598,20 @@ msgstr "" "Zwykle to się zdarza w przypadku ogólnego przeciążenia systemu, jak to jest " "całkiem proste czynności. Warto monitorować obciążenie systemu ostrożnie." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "Wątek(i) %s trwa dłużej niż %s sekund, aby rozpocząć, powinno być 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Powolny czas uruchamiania" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads jest ponad 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13631,23 +13619,23 @@ msgstr "" "Ustaw slow_launch_time na 1s lub 2s do poprawnego policzenia wątku, które są " "wolne, aby uruchomić" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time jest ustawiony na %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Procent używanych połączeń" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" "Maksymalna ilość zużytych połączeń jest zbliżona do wartości max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13657,7 +13645,7 @@ msgstr "" "połączenia które nie są zamykane obsługi bazy danych właściwie zabijane " "wcześniej. Upewnij się, że kod zamyka obsługę bazy danych poprawnie." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13665,15 +13653,15 @@ msgstr "" "Max_used_connections jest na %s%% z max_connections, powinna ona być niższa " "niż 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Procent przerwanych połączeń" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Zbyt wiele połączeń przerwanych." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Ten artykuł może pomóc wyśledzić źródło." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%" "%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Wskaźnik przerwanych połączeń" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13703,15 +13691,15 @@ msgstr "" "Przerwana ocena połączenia jest na %s, ta wartość ta powinna być mniejsza " "niż 1 na godzinę" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Procent przerwanych klientów" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Zbyt wielu klientów jest przerwanych." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13721,45 +13709,45 @@ msgstr "" "prawidłowo. Może to być spowodowane problemami z siecią lub kod nie zamyka " "programu obsługi bazy danych poprawnie. Sprawdź swoją sieć i kod." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% wszystkich klientów są przerwane. Ta wartość ta powinna być niższa niż " "2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Wskaźnik przerwanych klientów" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Przerwana ocena klienta jest na %s, ta wartość ta powinna być mniejsza niż 1 " "na godzinę" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB jest wyłączone?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Nie masz włączonego InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB jest zwykle lepszym wyborem dla silnika tabeli." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "InnoDB jest ustawiony na 'wartość'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Rozmiar Log InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13767,7 +13755,7 @@ msgstr "" "Rozmiar pliku log InnoDB nie jest odpowiednim rozmiarem w stosunku do puli " "bufora InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13791,7 +13779,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">ten wpis bloga" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13800,15 +13788,15 @@ msgstr "" "Twój rozmiar dziennika InnoDB jest na %s%% w stosunku do wielkości puli " "bufora InnoDB, nie powinna być niższa niż 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maks. rozmiar Log InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Rozmiar pliku log InnoDB jest niewystarczająco duży." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13831,20 +13819,20 @@ msgstr "" "\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-" "innodblogfilesize-proper-way.html\">ten wpis bloga" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Twoja absolutny rozmiar dziennika InnoDB jest %s MB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Wielkość puli bufora InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Twoja pula bufora InnoDB jest dość mała." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13869,7 +13857,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/\">ten " "artykuł" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13882,15 +13870,15 @@ msgstr "" "wystarczające dla danego systemu, jeśli nie mają zbyt wiele tabel InnoDB lub " "inne usługi uruchomione na tej samej maszynie." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM jednoczesnych wstawień" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Włącz concurrent_insert ustawiając ją na 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Dokumentację MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB przesłane od czasu ostatniego odświeźenia" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB otrzymane od czasu ostatniego odświeżenia" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Ruch na serwerze (w KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Połączenia od czasu ostatniego odświeżenia" + +#~ msgid "Questions since last refresh" +#~ msgstr "Zapytania od czasu ostatniego odświeżenia" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Zapytania (instrukcje wykonane przez serwer)" + +#~ msgid "Runtime Information" +#~ msgstr "Informacje o działaniu serwera" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Liczba wierszy:" + +#~ msgid "Refresh rate: " +#~ msgstr "Częstotliwość odświeżania: " + +#~ msgid "Run analyzer" +#~ msgstr "Analizuj" + #~ msgid "Show more actions" #~ msgstr "Pokaż więcej akcji" diff --git a/po/pt.po b/po/pt.po index d22c5c1440..f051f0491b 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:55+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Portuguese " -"\n" -"Language: pt\n" +"Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Pesquisar" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Executar" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nome do Índice" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descrição" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A base de dados %1$s foi criada." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Comentários da tabela" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Coluna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Omissão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Omissão" msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Não" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Sim" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -338,7 +338,7 @@ msgstr "Tamanho" msgid "in use" msgstr "em uso" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "em uso" msgid "Creation" msgstr "Criação" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Criação" msgid "Last update" msgstr "Última actualização" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Tabelas em tracking" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Base de Dados" @@ -414,17 +414,17 @@ msgstr "Base de Dados" msgid "Last version" msgstr "Última versão" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Criado" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Estado" @@ -439,7 +439,7 @@ msgstr "Acções" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostrar" @@ -455,11 +455,11 @@ msgstr "Apagar dados de tracking para esta tabela" msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "activo" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "inactivo" @@ -467,11 +467,11 @@ msgstr "inactivo" msgid "Versions" msgstr "Versões" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Relatório de tracking" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Snapshot da estrutura" @@ -539,45 +539,45 @@ msgstr "Usar OpenStreetMaps como camada base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Ponto" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Ponto %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Adicionar um ponto" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Segmento de Reta" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Anel Exterior" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Anel Interior" @@ -585,15 +585,15 @@ msgstr "Anel Interior" msgid "Add a linestring" msgstr "Adicionar um segmento de reta" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Adicionar um anel interior" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Adicionar um polígono" @@ -739,8 +739,9 @@ msgstr "Características gerais de Relação" msgid "Database server" msgstr "Base de Dados" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servidor" @@ -761,7 +762,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Utilizador" @@ -998,12 +999,12 @@ msgstr "Recarregar Privilégios" msgid "Removing Selected Users" msgstr "Removendo os utilizadores seleccionados" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1013,15 +1014,15 @@ msgstr "Fechar" msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Gráfico de tráfego em direto" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Gráfico de ligações/processo ao vivo" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Gráfico de comandos em directo" @@ -1032,13 +1033,14 @@ msgstr "Dados estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Outros" @@ -1053,48 +1055,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB enviados desde a última actualização" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB recebidos desde a última actualização" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tráfego do servidor (em KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Ligações desde a última actualização" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processos" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Ligações / Processos" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Perguntas desde a ultima actualização" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Perguntas (comandos executados pelo servidor)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Estatísticas de comandos" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configuração incompatível do monitor local" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1106,196 +1074,201 @@ msgstr "" "configuração actual deixe de funcionar. Por favor, reinicie as suas " "configurações no menu Configurações." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Eficiência da cache de comandos" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Utilização da cache de comandos" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Cache de comandos utilizada" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Uso do CPU do Sistema" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memória do sistema" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Swap do sistema" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Carga média" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memória total" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Memória na cache" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memória retida" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memória livre" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memória utilizada" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap retida" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Swap utilizada" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Swap livre" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Ligações" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processos" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabela(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Perguntas" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Configurações" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Remover gráfico" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Editar titulo e rótulos" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Adicionar gráfico a grelha" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Por favor adicione pelo menos uma variável à serie" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nenhum" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Resumir o monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pausar o monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query estão ativos." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log está ativo." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log está ativo." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log estão desativados." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output não está configurado para TABELA." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "\"log_output\" está definido para a TABELA." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1306,12 +1279,12 @@ msgstr "" "mais de %d segundos. É recomendado definir long_query_time para 0-2 " "segundos, dependendo do seu sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time está configurado para %d segundo(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1320,30 +1293,30 @@ msgstr "" "o valor padrão após o reinicio do servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Define log_output como %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Ativar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Definir \"long_query_time\" para %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1351,53 +1324,53 @@ msgstr "" "Não pode modificar estas variáveis. Por favor faça login como root ou " "contacte o seu administrador de base de dados." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Modificar configurações" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Titulo do gráfico" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unidade" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Do registo lento" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Do registo geral" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "A analisar os registos" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "A analisar e a carregar registos. Isto pode demorar um um pouco." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancelar pedido" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1408,7 +1381,7 @@ msgstr "" "de agrupamento, por isso os outros atributos de consultas, tais como horário " "de início, podem ser diferentes." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1418,100 +1391,100 @@ msgstr "" "INSERT na mesma tabela também são agrupadas juntas, independentemente dos " "dados inseridos." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Dados do registo carregados. Comandos executados neste período de tempo:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Saltar para a tabela de registos" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Dados não encontrados." -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Registo analisado, mas não foram encontrados dados neste período de tempo." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Em análise…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Explicar SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tempo" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Tempo Total:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Resultado(s) da(s) consulta(s)" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Mapa de Resultados" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Editar gráfico" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Grupos" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opções de filtragem da tabela de registos" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrar comandos por palavra/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar comandos, ignorando dados variáveis em clausulas WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Soma de linhas agrupadas:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Carregando registos" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Falhou a atualização do monitor" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1521,254 +1494,256 @@ msgstr "" "Isto é provavelmente porque a sua sessão expirou. Atualizar a página e " "reinserir as suas credenciais deve ajudar." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Atualizar página" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Linhas afetadas:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Falha ao processar ficheiro de configuração. Não parece ser código JSON " "válido." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Falha ao construir grelha do gráfico com a configuração importada. " "Redefinindo os valores padrão…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importar configuração do monitor" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Por favor, selecione o ficheiro que deseja importar" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analisar Comando" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistema de Assessoria" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Possíveis problemas de desempenho" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problemas" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomendação" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalhes da regra" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justificação" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variável / formula utilizada" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Teste" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Carregando" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Processando Pedido" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Erro a Processar Pedido" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nenhuma base de dados selecionada." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Apagando Coluna" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Adicionando Chave Primária" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Clique para fechar esta notificação" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Renomeando Bases de Dados" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Recarregar Base de Dados" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copiando Bases de Dados" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Mudando Mapa de Caracteres" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "A tabela terá que ter pelo menos uma coluna" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Inserir Tabela" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Esconder índices" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Verificação de chave estrangeira:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Ativado)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Desativado)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Pesquisando" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostrar resultados da pesquisa" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Navegação" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "A Eliminar" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definição de uma função armazenada deve conter uma instrução RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valores para a coluna \"%s\"" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valores para a nova coluna" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Introduza cada valor num campo separado" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Add %d valor(es)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Nota: Se o arquivo contém várias tabelas, estas serão combinadas numa" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Esconder Caixa do query" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostrar Caixa do query" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nenhum registo(linha) seleccionado" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Muda" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Tempo de execução da consulta" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1777,91 +1752,91 @@ msgstr "%d não é um número de linha válido." msgid "Save" msgstr "Guarda" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Esconder critérios de buca" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Pesquisa Avançada" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Cada ponto representa um registo (linha) de dados." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Colocar o cursor por cima de um ponto irá mostrar a sua legenda." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione uma area do gráfico com o rato." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão Reset Zoom para voltar ao estado original." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique num ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Seleccione duas colunas" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Seleccione duas colunas diferentes" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Resultado(s) das(s) consulta(s)" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copiar" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Adicionar colunas" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione a chave primária ou a chave única" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Escolha a coluna para mostrar" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1869,15 +1844,20 @@ msgstr "" "Não salvou as mudanças no layout. Estas serão perdidas se não as guardar. " "Deseja continuar?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Adicionar uma opção para a coluna " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Carregue em ESC para cancelar a edição" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1885,27 +1865,27 @@ msgstr "" "Editou alguns dados e estes não foram salvos. Tem certeza que quer sair " "desta página antes de salvar os seus dados?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Arraste para re-ordenar" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Clique para organizar" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Clique para marcar/desmarcar" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Duplo-clique para copiar o nome da coluna" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Clique na seta
para alternar a visibilidade da coluna" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1914,7 +1894,7 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1924,64 +1904,64 @@ msgid "" msgstr "" "Também pode editar algumas colunas
clicando directamente no seu conteúdo." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Também pode editar algumas colunas
clicando directamente no seu conteúdo." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ir para a hiperligação" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copiar nome da coluna" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do rato para copiar para a área de transferência." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Mostrar registo(s)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Gerar" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mais" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Mostrar tudo" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Esconder índices" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1991,266 +1971,266 @@ msgstr "" "actualização. A nova versão é %s, e foi lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "até à data" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Concluído" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Ant" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Próx" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hoje" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Janeiro" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Fevereiro" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Março" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Abril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Junho" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Julho" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agosto" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Setembro" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Outubro" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembro" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dez" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Segunda" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Sexta" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sáb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "Calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Nenhum" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuto" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Segundo" @@ -2304,16 +2284,16 @@ msgstr "" "Caractere inesperado na linha %1$s. Esperada tabulação, mas encontrado \"%2$s" "\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "por hora" @@ -2341,7 +2321,7 @@ msgstr "Tamanho da fonte" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascendente" @@ -2350,7 +2330,7 @@ msgstr "Ascendente" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descendente" @@ -2464,7 +2444,7 @@ msgstr "Apagar os semelhantes para a %s tabela?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Apagar" @@ -2634,7 +2614,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Termina" @@ -2691,12 +2671,13 @@ msgstr "Todos" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" @@ -2704,7 +2685,7 @@ msgstr "Exportar" msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2789,16 +2770,16 @@ msgstr "Não pode ler (movido) arquivo carregado." msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "O Javascript tem de estar activo a partir deste ponto" @@ -2810,21 +2791,21 @@ msgstr "Nenhum indíce definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Quantidade" @@ -2834,13 +2815,13 @@ msgstr "Quantidade" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Agrupamento (Collation)" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comentário" @@ -2884,7 +2865,7 @@ msgstr "Vista" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Estrutura" @@ -2957,34 +2938,35 @@ msgstr "Eventos" msgid "Designer" msgstr "Desenhador" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Utilizadores" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Registo binário" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicação" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plugins" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motores" @@ -3032,6 +3014,109 @@ msgstr "Tabelas Recentes" msgid "There are no recent tables" msgstr "Não existem tabelas recentes" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Comando SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Tipo de Query" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Instrucções de inserção múltiplas" + +#: libraries/ServerStatusData.class.php:190 +#, fuzzy +msgid "Key cache" +msgstr "Tipo de Query" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabelas" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Qtd Campos" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Mostra tabelas" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Estado da InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Estatísticas de comandos" + +#: 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." @@ -3131,7 +3216,7 @@ msgstr "Operador" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valor" @@ -3529,11 +3614,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Comando SQL" - #: libraries/Util.class.php:710 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:292 @@ -3568,7 +3648,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Actualizar" @@ -3664,13 +3744,6 @@ msgstr "Imprimir" msgid "shared" msgstr "compartilhado" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabelas" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3711,11 +3784,11 @@ msgstr "Verificar Privilégios para a Base de Dados "%s"." msgid "Check Privileges" msgstr "Verificar Privilégios" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Falhou ao ler o arquivo de configuração" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3723,12 +3796,12 @@ msgstr "" "Isto geralmente significa que há um erro de sintaxe, por favor verifique " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3740,40 +3813,40 @@ msgstr "" "A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no " "ficheiro de configuração!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "possível 'exploit'" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -6034,8 +6107,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Utilizador :" @@ -6695,10 +6768,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Estado da InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7362,18 +7431,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Alterar a ordem da tabela por" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7475,17 +7544,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Somente a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Apenas dados" @@ -7917,8 +7986,7 @@ msgstr "MIME-types disponíveis" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Máquina" @@ -8452,7 +8520,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variável" @@ -9013,7 +9081,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9476,7 +9544,8 @@ msgstr "... apagar o antigo das tabelas do utilizador." #: libraries/server_privileges.lib.php:1936 msgid "" "... revoke all active privileges from the old one and delete it afterwards." -msgstr "... revogar todos os privilégios activos do antigo e a seguir apagá-lo." +msgstr "" +"... revogar todos os privilégios activos do antigo e a seguir apagá-lo." #: libraries/server_privileges.lib.php:1937 msgid "" @@ -9722,7 +9791,7 @@ msgstr "Adicionar prefixo à tabela" msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10095,7 +10164,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Chinês Tradicional" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10177,39 +10246,39 @@ msgstr "A tabela %s foi eliminada" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Utilização" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do Utilizador" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10329,16 +10398,11 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Qtd Campos" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -10424,7 +10488,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "versão do PHP" @@ -10485,10 +10549,6 @@ msgstr "O privilégios foram recarregados com sucesso." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10621,882 +10681,171 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "s MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:122 #, fuzzy -msgid "Query cache" -msgstr "Tipo de Query" - -#: server_status.php:659 -msgid "Threads" -msgstr "" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "" - -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Instrucções de inserção múltiplas" - -#: server_status.php:663 -#, fuzzy -msgid "Key cache" -msgstr "Tipo de Query" - -#: server_status.php:664 -msgid "Joins" -msgstr "" - -#: server_status.php:666 -msgid "Sorting" -msgstr "" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Mostra tabelas" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informação de Runtime" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "Número de registos por página" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -msgid "Refresh rate: " -msgstr "Gerado por" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Qtd Campos" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Mantendo a palavra-passe " - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Mostra tabelas" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Mostra tabelas" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" +msgid "Replication status" msgstr "Relações" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Tipo de Query" +#: server_status.php:139 +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:966 +#: server_status.php:149 +msgid "Received" +msgstr "Recebido" + +#: server_status.php:168 +msgid "Sent" +msgstr "Enviado" + +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Tentativas falhadas" + +#: server_status.php:253 +msgid "Aborted" +msgstr "Abortado" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "Comando" + +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funções" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Itens" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "s MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -#, fuzzy -msgid "Replication status" -msgstr "Relações" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Recebido" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Enviado" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Tentativas falhadas" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Comando" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Limits the number of new connections the user may open per hour." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Configurar o Mapa de Caracteres do ficheiro:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Detecção de Alterações está desactivada." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy msgid "Start Monitor" msgstr "Estado" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "Adiciona novo campo" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11505,7 +10854,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11513,18 +10862,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11532,11 +10881,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11544,90 +10893,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover a Base de Dados" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Seleccionar Tabelas" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Acrescenta um utilizador" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "Comando SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Estatísticas dos registos" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Seleccionar Tabelas" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de Query" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11635,7 +10984,7 @@ msgid_plural "%d seconds" msgstr[0] "por segundo" msgstr[1] "por segundo" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11643,6 +10992,624 @@ msgid_plural "%d minutes" msgstr[0] "em uso" msgstr[1] "em uso" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Itens" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Qtd Campos" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Mantendo a palavra-passe " + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Mostra tabelas" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Mostra tabelas" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relações" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Limits the number of new connections the user may open per hour." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Configurar o Mapa de Caracteres do ficheiro:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Detecção de Alterações está desactivada." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12222,153 +12189,153 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tipo de Query" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Sem bases de dados" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Dados" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Criar versão" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Criar versão" @@ -12514,13 +12481,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time está configurado para %d segundo(s)" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Mostrar Caixa do query" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12538,130 +12505,142 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time está configurado para %d segundo(s)" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time está configurado para %d segundo(s)" + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Seleccionar Tabelas" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Criar versão" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "versão do PHP" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Descrição" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Mapa de Caracteres do mySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Tipo de Query" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy msgid "The query cache is not enabled." msgstr "Tipo de Query" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12669,21 +12648,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Tipo de Query" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Tipo de Query" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s tabela" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13070,247 +13049,247 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "Mostrar queries completos" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Mostrar queries completos" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "Mostrar queries completos" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Mostrar queries completos" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Criar uma Página nova" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Criar nova tabela na base de dados %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Tipo de Query" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Detecção de Alterações está desactivada." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Detecção de Alterações está desactivada." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Detecção de Alterações está desactivada." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "Tracked tables" msgid "Threads that are slow to launch" msgstr "Tabelas em tracking" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "Tracked tables" msgid "There are too many threads that are slow to launch." msgstr "Tabelas em tracking" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time está configurado para %d segundo(s)" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "Tracked tables" msgid "" @@ -13318,50 +13297,50 @@ msgid "" "launch" msgstr "Tabelas em tracking" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time está configurado para %d segundo(s)" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Ligações" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Ligações" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Permite criar tabelas temporárias." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "O tamanho do ficheiro de registo InnoDB é inadequadamente grande." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13502,20 +13481,20 @@ msgstr "" "blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html\">neste " "blog" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "O tamanho absoluto do seu ficheiro de registo InooDB é %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "O seu Buffer Pool InnoDB é muito pequeno." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13541,7 +13520,7 @@ msgstr "" "significativamente. Veja também este artigo" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13554,15 +13533,15 @@ msgstr "" "perfeitamente adequado para o seu sistema se não possui tantas tabelas " "InnoDB ou outros serviços a executar na mesma máquina." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Inserções concorrentes no MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Active o concurrent_insert atribuindo o valor 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Documentação MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definida com o valor 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB enviados desde a última actualização" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB recebidos desde a última actualização" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tráfego do servidor (em KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Ligações desde a última actualização" + +#~ msgid "Questions since last refresh" +#~ msgstr "Perguntas desde a ultima actualização" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Perguntas (comandos executados pelo servidor)" + +#~ msgid "Runtime Information" +#~ msgstr "Informação de Runtime" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "Número de registos por página" + +#, fuzzy +#~ msgid "Refresh rate: " +#~ msgstr "Gerado por" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Tipo de Query" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9d8832a5a3..99d1cd0a7d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:44+0200\n" "Last-Translator: Rogério Munhoz \n" -"Language-Team: Portuguese (Brazil) " -"\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Procurar" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Executar" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descrição" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Comentários da tabela" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Coluna" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Padrão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Padrão" msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Não" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Sim" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -338,7 +338,7 @@ msgstr "Tamanho" msgid "in use" msgstr "em uso" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "em uso" msgid "Creation" msgstr "Criação" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Criação" msgid "Last update" msgstr "Última atualização" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Tabelas rastreadas" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Banco de Dados" @@ -414,17 +414,17 @@ msgstr "Banco de Dados" msgid "Last version" msgstr "Última versão" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Criado" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -439,7 +439,7 @@ msgstr "Ação" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Mostrar" @@ -455,11 +455,11 @@ msgstr "Excluir dados de monitoramento desta tabela" msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "ativo" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "inativo" @@ -467,11 +467,11 @@ msgstr "inativo" msgid "Versions" msgstr "Versões" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Vizualização da estrutura" @@ -539,45 +539,45 @@ msgstr "Use OpenStreetMaps como camada base" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Ponto" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Ponto %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Adicione um ponto" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linha" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Anel Externo" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Anel interno" @@ -585,15 +585,15 @@ msgstr "Anel interno" msgid "Add a linestring" msgstr "Adicionar uma linha" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Adicionar um anel interno" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Adicionar polígono" @@ -731,8 +731,9 @@ msgstr "Mais configurações" msgid "Database server" msgstr "Servidor de banco de dados" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Servidor" @@ -751,7 +752,7 @@ msgstr "Versão do Protocolo" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Usuário" @@ -997,12 +998,12 @@ msgstr "Recarregando privilégios" msgid "Removing Selected Users" msgstr "Remover os usuários selecionados" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1012,15 +1013,15 @@ msgstr "Fechar" msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Gráfico de tráfego em tempo real" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Quadro conn./process em tempo real" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Gráfico de consulta em tempo real" @@ -1031,13 +1032,14 @@ msgstr "Dado(s) estático(s)" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Outro" @@ -1052,48 +1054,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB enviados desde a última atualização" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB recebidos desde a última atualização" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Tráfego do Servidor (em KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Conexões desde a última atualização" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processos" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Conexões / Processos" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Requisições desde a última atualização" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Requisições (Declarações executadas pelo servidor)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Estatísticas de Consultas" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Configuração do monitor local incompatível" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1105,202 +1073,207 @@ msgstr "" "configurações atuais não funcionarão mais. Por favor reinicie sua " "configurações para as padrão no menu Configurações." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Eficiência do cache de consulta" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Uso do cache de consulta" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Cache de consulta utilizado" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Utilização da CPU pelo sistema" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memória do sistema" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Área de Troca (Swap) do sistema" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Carga média" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Memória total do sistema" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Cache de memória" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Memória em Buffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memória livre" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memória usada" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap Total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap em cache" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Swap Utilizado" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Swap livre" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Bytes Recebidos" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Conexões" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processos" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabela(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Requisições" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Configurações" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Remover Gráfico" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Editar rótulos e títulos" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Adicionar gráfico ajustado na grade" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Por favor adicione no mínimo uma variável à série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nenhum" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Continuar o monitoramento" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pausar o monitoramento" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "\"general_log\" e \"slow_query_log\" estão ativados." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "\"general_log\" está ativado." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "\"slow_query_log\" está ativado." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "\"slow_query_log\" e \"general_log\" estão desativados." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "\"log_output\" não está definido para a TABELA." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "\"log_output\" está definido para a TABELA." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1311,12 +1284,12 @@ msgstr "" "consultas que demoram mais do que %d segundos. Então, é aconselhado definir " "\"long_query_time\" de 0-2 segundos, dependendo do seu sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "\"long_query_time\" está definida para %d segundo(s)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1325,30 +1298,30 @@ msgstr "" "padrão quando o servidor reiniciar:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Definir \"log_output\" para %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Habilitar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Desabilitar %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Definir \"long_query_time\" para %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1357,56 +1330,56 @@ msgstr "" "se como usuário \"Root\" ou entre em contato com seu administrador do banco " "de dados." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Alterar configurações" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Configurações atuais" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Título do Relatório/Gráfico ou Tabela" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Unidade" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Do log lento" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Do relatório geral" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analisando relatórios" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analisando e carregando logs. Isso pode demorar." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Cancelar solicitação" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1417,7 +1390,7 @@ msgstr "" "de agrupamento, por isso os outros atributos de consultas, tais como horário " "de início, podem ser diferentes." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1427,99 +1400,99 @@ msgstr "" "INSERT na mesma tabela também são agrupadas juntas, desconsiderando os dados " "inseridos." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Log de dados carregado, Busca efetuada neste período de tempo:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Ir para a tabela de Log" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Dados não encontrados" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Log analisado, mas nenhum dado encontrado neste intervalo de tempo." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analisando…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Demonstrar saída" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tempo" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Tempo total:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Representação dos resultados" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafico" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Editar gráfico" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Grupos" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opções de filtro da tabela de log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtro" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultas por palavra/expressão regular:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Consultas em grupo, ignorando os valores de variáveis da cláusula WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Número de linhas agrupadas:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Total:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Carregando relatorios" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Atualização do monitor falhou" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1529,255 +1502,257 @@ msgstr "" "Provavelmente foi porque sua sessão expirou. Atualizando a página e " "reinserindo as suas credenciais deve resolver." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Recarregar página" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Linhas afetadas:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Falha ao processar o arquivo de configuração. Ele não parece ser um código " "JSON válido." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Falha ao construir a grade do gráfico com a configuração importada. " "Restaurando a configuração padrão…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importar configuração do monitor" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Por favor, selecione o arquivo que deseja importar" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analisar query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistema de assessoria" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Possíveis problemas de performance" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Questão" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomendações" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalhes da regra" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justificação" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variável / formula utilizada" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Teste" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Carregando" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Processando a requisição" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Erro no processamento da requisição" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Código do erro: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Testo do erro: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nenhum Banco de Dados selecionado." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Excluindo coluna" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Adicionar chave primária" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Clique para fechar este aviso" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Renomeando o Banco de Dados" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Recarregar o Banco de Dados" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Copiando Banco de Dados" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Modificando o Conjunto de Caracteres" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "A tabela deve ter pelo menos uma coluna" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Inserir Tabela" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Ocultar índices" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Verificação de chave estrangeira:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Habilitado)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Desabilitado)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Pesquisando" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Ocultar resultados da pesquisa" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Mostrar resultados da pesquisa" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Navegando" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Apagando" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A definição de uma função armazenada deve conter uma instrução de RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valores para coluna %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valores para uma nova coluna" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Insira cada valor em um campo separado" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Adicionar %d valor(es)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Nota: Se o arquivo contém várias tabelas, elas serão combinadas em uma" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Ocultar caixa de consulta" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Mostrar caixa de consulta" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Alterar" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Tempo de execução da busca" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1786,91 +1761,91 @@ msgstr "%d não é um número de linha válido." msgid "Save" msgstr "Salvar" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Ocultar critério de pesquisa" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoom Pesquisa detalhada" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Cada ponto representa uma linha de dados." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Mover o mouse sobre um ponto mostrará seu rótulo." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, selecione um trecho do gráfico com o mouse." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Clique no botão resetar zoom para voltar ao estado original." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clique em um ponto de dados para ver e possivelmente editar a linha de dados." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "O plano pode ser redimensionado arrastando-o ao longo do canto inferior " "direito." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Selecione duas colunas" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Selecione duas colunas diferentes" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Resultado(s) da(s) consulta(s)" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copiar" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Adicionar colunas" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Marque a coluna para exibir" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1878,15 +1853,20 @@ msgstr "" "Você não salvou as mudanças no layout. Eles serão perdidos se você não salva-" "los. Deseja continuar mesmo assim?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Adicionar uma opção para a coluna " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Pressione esc para cancelar a edição" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1894,27 +1874,27 @@ msgstr "" "Você editou alguns dados e estes não foram salvos. Você tem certeza que quer " "sair desta pagina antes de salvar os dados?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Arraste para reordenar" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Clique para organizar" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Clique para marcar/desmarcar" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Clique duas vezes para copiar o nome da coluna" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Clique na seta
para alternar a visibilidade da coluna" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1923,7 +1903,7 @@ msgstr "" "Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais após ser " "salva." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1931,61 +1911,61 @@ msgstr "" "Você também pode editar algumas colunas
clicando duas vezes em seu " "conteúdo." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Você também pode editar algumas colunas
clicando diretamente em seu " "conteúdo." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Ir para o link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Copiar nome coluna" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Clique com o botão direito do mouse no nome da coluna para copiá-la para a " "área de transferência." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Mostrar linha(s)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Gerar" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Alterar senha" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mais" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Mostrar painel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Ocultar painel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "A página solicitada não foi encontrada no histórico, ela pode ter expirado." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1995,266 +1975,266 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ". última versão estável:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "até à data" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Concluído" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Hoje" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Janeiro" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Fevereiro" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Março" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Abril" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maio" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Junho" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Julho" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Agosto" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Setembro" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Outubro" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembro" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dez" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Segunda" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Sexta" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Sufixo de ano" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hora" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuto" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Segundo" @@ -2306,16 +2286,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Caractere inesperado na linha %1$s. Esperado Tab, mas foi encontrado \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "por hora" @@ -2343,7 +2323,7 @@ msgstr "Tamanho da fonte" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ascendente" @@ -2352,7 +2332,7 @@ msgstr "Ascendente" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descendente" @@ -2466,7 +2446,7 @@ msgstr "Excluir correspondentes para a tabela %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Remover" @@ -2636,7 +2616,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Matar" @@ -2693,12 +2673,13 @@ msgstr "Marcar todos" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" @@ -2706,7 +2687,7 @@ msgstr "Exportar" msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2791,16 +2772,16 @@ msgstr "Não pode ler (mover) arquivo carregado." msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript deve estar ativo após este ponto" @@ -2812,21 +2793,21 @@ msgstr "Nenhum índice definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalidade" @@ -2836,13 +2817,13 @@ msgstr "Cardinalidade" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Colação" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Cometário" @@ -2887,7 +2868,7 @@ msgstr "Visão" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Estrutura" @@ -2960,34 +2941,35 @@ msgstr "Eventos" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Usuários" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Log binário" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicação" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Conjuntos de caracteres" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Plugins" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motores" @@ -3035,6 +3017,104 @@ msgstr "tabelas recentes" msgid "There are no recent tables" msgstr "Não existem tabelas recentes" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "consulta SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Manipulador" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Consulta do cache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Processos" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dados temporários" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Inserções demoradas" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Chave do cache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Junções" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Ordenando" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabelas" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordenador da transação" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Arquivos" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Nivelar (fechar) todas as tabelas" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Exibir tabelas abertas" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Exibir servidores escravos" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Exibir status de mestre" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Exibir status dos escravos" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Nivelar cache da consulta" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Status do InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Estatísticas de Consultas" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Todas as variáveis de status" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitorizar" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Assessoria" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3133,7 +3213,7 @@ msgstr "Operador" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valor" @@ -3527,11 +3607,6 @@ msgstr "Uma enumeração, escolhida de uma lista de valores definidos" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "consulta SQL" - #: libraries/Util.class.php:710 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:292 @@ -3566,7 +3641,7 @@ msgid "Create PHP Code" msgstr "Criar código PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Atualizar" @@ -3663,13 +3738,6 @@ msgstr "Imprimir" msgid "shared" msgstr "compartilhado" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabelas" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3710,11 +3778,11 @@ msgstr "Verificar privilégios para a Banco de Dados "%s"." msgid "Check Privileges" msgstr "Verificar privilégios" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Falhou ao ler o arquivo de configuração" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3722,12 +3790,12 @@ msgstr "" "Isso geralmente significa que há um erro de sintaxe, por favor cheque " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3735,39 +3803,39 @@ msgstr "" "A diretriz [code]$cfg['PmaAbsoluteUri'][/code] deve ser estabelecida no seu " "arquivo de configuração!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Tentativa de sobre escrever variáveis do tipo GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "Possível explorar" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "Tecla numérica detectada" @@ -6029,8 +6097,8 @@ msgstr "" "Se você tiver um nome de usuário personalizado, especificá-lo aqui (o padrão " "é [kbd]anônimo[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Usuário" @@ -6687,10 +6755,6 @@ msgstr "" msgid "Buffer Pool" msgstr "\"Buffer Pool\"" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Status do InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Uso do Buffer Pool" @@ -7386,16 +7450,16 @@ msgid_plural "%s other results found" msgstr[0] "%s outro resultado encontrado" msgstr[1] "%s outros resultados encontrados" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtar bancos de dados por nome" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Limpar Fast Filter" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtra itens por nome" @@ -7492,17 +7556,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar o Banco de Dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Somente estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Dados apenas" @@ -7898,8 +7962,7 @@ msgstr "Mostrar os MIME-type" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Servidor" @@ -8495,7 +8558,7 @@ msgid "Slave status" msgstr "Status dos secundários" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variáveis" @@ -9010,7 +9073,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9468,8 +9531,7 @@ msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"... apagar o antigo da tabela de usuários e depois recarregar os " -"privilégios." +"... apagar o antigo da tabela de usuários e depois recarregar os privilégios." #: libraries/server_privileges.lib.php:1948 msgid "Change Login Information / Copy User" @@ -9707,7 +9769,7 @@ msgstr "Adicionar prefixo à tabela" msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Nenhum" @@ -10053,7 +10115,7 @@ msgstr "Mudar para pequeno/grande" msgid "Toggle relation lines" msgstr "Alternar linhas de relação" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" @@ -10119,31 +10181,31 @@ msgstr "A página foi criada" msgid "Page creation failed" msgstr "Falha na criação da página" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "página" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importar da página selecionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportar para a página selecionada" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Criar uma página e exportar para ela" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nome da nova página: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recomendado" @@ -10264,15 +10326,11 @@ msgstr "Arquivo não existe" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Arquivos" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -10356,7 +10414,7 @@ msgstr "Módulo" msgid "Library" msgstr "Biblioteca" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Versão" @@ -10415,10 +10473,6 @@ msgstr "Servidor mestre alterado com sucesso para %s" msgid "This server is configured as master in a replication process." msgstr "Este servidor é configurado como mestre em um processo de replicação." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Exibir status de mestre" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Mostrar escravas conectadas" @@ -10560,12 +10614,12 @@ msgstr "" "Este servidor não está configurado como escravo em um processo de " "replicação. Deseja configurá-lo para tal?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10573,119 +10627,89 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status.php:657 -msgid "Handler" -msgstr "Manipulador" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Tráfico de rede desde inicialização: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Consulta do cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Esse servidor MySQL está rodando por %1$s. Ele foi iniciado em %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Processos" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Este servidor MySQL funciona como mestre e escravo em processo " +"de replicação." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dados temporários" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Este servidor MySQL funciona como mestre em processo de " +"replicação." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Inserções demoradas" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Este servidor MySQL funciona como escravo em processo de " +"replicação." -#: server_status.php:663 -msgid "Key cache" -msgstr "Chave do cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Para mais informações sobre status de replicação no servidor, por favor " +"visite a seção de replicação." -#: server_status.php:664 -msgid "Joins" -msgstr "Junções" +#: server_status.php:122 +msgid "Replication status" +msgstr "Status de replicação" -#: server_status.php:666 -msgid "Sorting" -msgstr "Ordenando" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " +"estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordenador da transação" +#: server_status.php:149 +msgid "Received" +msgstr "Recebido" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Nivelar (fechar) todas as tabelas" +#: server_status.php:168 +msgid "Sent" +msgstr "Enviar" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Exibir tabelas abertas" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "máx. de conexões concorrentes" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Exibir servidores escravos" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Tentativas falharam" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Exibir status dos escravos" +#: server_status.php:253 +msgid "Aborted" +msgstr "Abortado" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Nivelar cache da consulta" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informações de Runtime" +#: server_status.php:329 +msgid "Command" +msgstr "Comando" -#: server_status.php:830 -msgid "All status variables" -msgstr "Todas as variáveis de status" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitorizar" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Assessoria" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Número de pontos de dados: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Taxa de atualização: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtros" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Contendo a palavra:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Exibir somente valores de alerta" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrar por categoria..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Exibir valores não formatados" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Links relacionados:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Executar analisador" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instruções" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10693,7 +10717,7 @@ msgstr "" "O sistema de Assessoria pode fornecer recomendações sobre variáveis de " "servidor, analisando as variáveis de status do servidor." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10702,7 +10726,7 @@ msgstr "" "Saiba, porém, que este sistema fornece recomendações baseadas em cálculos " "simples e por princípios, o que não necessariamente se aplica ao seu sistema." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10713,7 +10737,7 @@ msgstr "" "Aperfeiçoamentos incorretos podem resultar em efeitos negativos na " "performance." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10723,829 +10747,39 @@ msgstr "" "de cada vez, observar ou testar a performance do seu banco de dados, e " "desfazer a alteração se não houver melhoramentos claramente mensuráveis." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Questões desde a inicialização: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Comandos" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Tráfico de rede desde inicialização: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Esse servidor MySQL está rodando por %1$s. Ele foi iniciado em %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Este servidor MySQL funciona como mestre e escravo em processo " -"de replicação." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Este servidor MySQL funciona como mestre em processo de " -"replicação." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Este servidor MySQL funciona como escravo em processo de " -"replicação." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Para mais informações sobre status de replicação no servidor, por favor " -"visite a seção de replicação." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Status de replicação" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " -"estatísticas como relatadas pelo servidor MySQL podem estar incorretas." - -#: server_status.php:1191 -msgid "Received" -msgstr "Recebido" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Enviar" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "máx. de conexões concorrentes" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Tentativas falharam" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Abortado" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Comando" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"O número de conexões que foram abortadas porque o cliente morreu sem fechar " -"a conexão de forma apropriada." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "O número de tentativas de conexão sem sucesso ao servidor MySQL." - -#: server_status.php:1529 -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 "" -"O número de transações que usaram o cache do log binário temporário mas que " -"excederam o valor do binlog_cache_size e usaram o arquivo temporário para " -"armazenar enunciados da transação." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "O número de transações que usaram o cache do log binário temporário." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"O número de tentativas de conexão (com sucesso ou não) ao servidor MySQL." - -#: server_status.php:1532 -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 "" -"O número de tabelas temporárias no disco criadas automaticamente pelo " -"servidor enquanto executava os enunciados. Se Created_tmp_disk_tables é " -"grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " -"temporárias serem baseadas na memória ou invés de baseadas no disco." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Quantos arquivos temporários o MySQL tinha criado." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"O número de tabelas temporárias na memória criadas automaticamente pelo " -"servidor enquanto executava os enunciados." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " -"(provavelmente chave duplicada)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " -"diferente em que se usa INSERT DELAYED começa seu próprio processo." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "O número de linhas INSERT DELAYED escritas." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "O número de enunciados FLUSH executados." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "O número de enunciados COMMIT internos." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "O número de vezes que uma linha foi deletada de uma tabela." - -#: server_status.php:1541 -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 "" -"O servidor MySQL pode perguntar ao motor de armazenamento do NDB Cluster se " -"ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " -"Handler_discover indica o número de vezes que tabelas foram descobertas." - -#: server_status.php:1542 -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 "" -"O número de vezes que a primeira entrada foi lida de um índice. Se isto for " -"alto, sugere que o usuário está fazendo muitas varreduras completas do " -"índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." - -#: server_status.php:1543 -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 "" -"O número de requisições para ler uma linha baseada em uma chave. Se isto for " -"alto, é uma boa indicação de que suas consultas e tabelas estejam " -"corretamente indexadas." - -#: server_status.php:1544 -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 "" -"O número de requisições para ler a linha seguinte na ordem da chave. Isto é " -"incrementado se você estiver consultando uma coluna do índice com uma " -"restrição da escala ou se você estiver fazendo uma varredura do índice." - -#: server_status.php:1545 -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 "" -"O número de requisições para ler a linha precedente na ordem da chave. Este " -"método de leitura é usado principalmente para otimizar ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"O número de requisições pra ler uma linha baseada em uma posição fixa. Isto " -"é alto se você estiver fazendo muitas consultas que requerem a ordenação do " -"resultado. Você tem provavelmente muitas consultas que requerem que o MySQL " -"faça a varredura de tabelas inteiras ou você tem junções que não usam as " -"chaves corretamente." - -#: server_status.php:1547 -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 "" -"O número de requisições para ler a linha seguinte no arquivo de dados. Isto " -"é alto se você estiver fazendo muitas varreduras da tabela. Geralmente isto " -"sugere que suas tabelas não estão corretamente indexadas ou que suas " -"consultas não estão escritas para tomar vantagem dos índices que você têm." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "O número de enunciados ROLLBACK internos." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "O número de requisições para atualizar uma linha na tabela." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "O número de requisições para inserir uma linha na tabela." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "O número de páginas que contém dados (sujos ou limpos)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "O número de páginas atualmente sujas." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"O número de páginas do buffer pool que foram requisitadas para serem " -"niveladas." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "O número de páginas livres." - -#: server_status.php:1555 -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 "" -"O número de páginas trancadas no buffer pool do InnoDB. Estas são páginas " -"que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " -"ou removido por alguma outra razão." - -#: server_status.php:1556 -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 "" -"O número de páginas ocupadas porque foram alocados para rotinas " -"administrativas tais como trancamento de linhas ou índice hash adaptável. " -"Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Tamanho total do buffer pool, em páginas." - -#: server_status.php:1558 -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 "" -"O número de ler-adiante \"aleatórios\" InnoDB iniciado. Isto acontece quando " -"uma consulta faz a varredura de uma parcela grande de uma tabela mas na " -"ordem aleatória." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " -"InnoDB faz uma varredura sequencial completa da tabela." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " -"teria que fazer uma leitura de página simples." - -#: server_status.php:1562 -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 "" -"Normalmente, escreve para o buffer pool do InnoDB rodando em segundo plano. " -"Entretanto, se for necessário ler ou criar uma página e nenhuma página limpa " -"estiver disponível, é necessário esperar as páginas serem niveladas " -"primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " -"do buffer pool for ajustado corretamente, este valor deve ser pequeno." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "O número de escritas feitas para o buffer pool do InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "O número de operações fsync() à fazer." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "O número atual de operações fsync() pendentes." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "O número atual de leituras pendentes." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "O número atual de escritas pendentes." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "O montante de leitura de dados à fazer, em bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "O número total de dados lidos." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "O número total de dados escritos." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "O montante de escrita de dados à fazer, em bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"O número de escritas doublewrite que foram executadas e o número de páginas " -"que foram escritas para esta finalidade." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"O número de escritas doublewrite que foram executadas e o número de páginas " -"que foram escritas para esta finalidade." - -#: server_status.php:1574 -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 "" -"O número de esperas geradas porque o buffer do log era muito pequeno e teve " -"que esperar que fosse nivelada antes de continuar." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "O número de requisições de escrita de log." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "O número de escritas físicas para o arquivo de log." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "O número de escritas fsyncs feitas no arquivo de log." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "O número de arquivos de log fsyncs pendentes." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Escrita de arquivos de log pendentes." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "O número de bytes escritos para o arquivo de log." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "O número de páginas criadas." - -#: server_status.php:1582 -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 "" -"O tamanho de página compilada do InnoDB (padrão 16KB). Muitos valores são " -"contados em páginas; o tamanho de página permite que sejam facilmente " -"convertidos em bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "O número de páginas lidas." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "O número de páginas escritas." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "O número de linhas trancadas que estão esperando atualmente." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" -"O número de vezes que uma linhas trancada teve que esperar para ser escrita." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "O número de linhas deletadas de tabelas InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "O número de linhas inseridas em tabelas InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "O número de linhas lidas de tabelas InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "O número de linhas atualizadas em tabelas InnoDB." - -#: server_status.php:1594 -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 "" -"O número de blocos chave no cache chave que mudaram mas não foram nivelados " -"ainda ao disco. Antes era chamado de Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"O número de blocos não usados no cache chave. Você pode usar este valor para " -"determinar quanto do cache chave está no uso." - -#: server_status.php:1596 -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 "" -"O número de blocos usados no cache chave. Este valor é uma marca d'água que " -"indica o número máximo de blocos que estiveram sempre em uso em algum " -"momento." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Porcentagem utilizada do cache de chaves (valor calculado)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "O número de requisições para ler um bloco chave do cache." - -#: server_status.php:1599 -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 "" -"O número de leituras físicas de um bloco chave do disco. Se Key_reads for " -"alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " -"de falta de cache pode ser calculada como Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "O número de requisições para escrever um bloco chave para o cache." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "O número de escritas físicas para um bloco chave para o disco." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" -"O custo total da última consulta compilada como computado pelo otimizador de " -"consultas. Útil para comparar o custo de diferentes planos de consulta para " -"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " -"compilada ainda." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"O número máximo de conexões que estavam em uso simultaneamente desde a " -"inicialização do servidor." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" -"O número de linhas esperando para serem escritas na fila de INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"O número de tabelas que devem estar abertas. Se aberta, as tabelas são " -"grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "O número de arquivos que estão abertos." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"O número de streams que estão abertos (usados principalmente para log)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "O número de tabelas que estão abertas." - -#: server_status.php:1611 -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 "" -"O número de blocos de memória livres no cache de pesquisa. Números altos " -"podem indicar problemas de fragmentação, o que pode ser resolvido com " -"execução de um comando FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "O montante de memória livre para a consulta do cache." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "O número de hits do cache." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "O número de consultas adicionadas no cache." - -#: server_status.php:1615 -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 "" -"O número de consultas que foram removidas do cache para liberar memória para " -"novas consultas. Essa informação pode ajudar você a ajustar o tamanho da " -"consulta do cache. A consulta do cache usa a estratégia do \"usado menos " -"recentemente\" (LRU - least recently used) para decidir qual consulta " -"remover do cache." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"O número de consultas sem cache (não cacheável, ou não pode ser cacheável " -"devido à configuração em query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "O número de consultas registradas no cache." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "O número total de blocos na consulta do cache." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "O status da replicação à prova de falhas (não implementado)." - -#: server_status.php:1620 -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 "" -"O número de junções que não usaram índices. Se este valor não for 0, você " -"deve cuidadosamente verificar os índices de suas tabelas." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"O número de junções que usaram uma pesquisa de escala na tabela de " -"referência." - -#: server_status.php:1622 -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 "" -"O número de junções sem chaves que verificam para ver se há o uso da chave " -"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " -"índices de suas tabelas.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"O número de junções que usaram escalas na primeira tabela. (Não é " -"normalmente crítico mesmo se este for grande.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "O número junções que fez uma varredura completa da primeira tabela." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Número total (desde o início) de vezes que o processo SQL escravo de " -"replicação teve que tentar transações." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"O número de processos que levaram mais que slow_launch_time segundos para " -"serem criadas." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "O número de consultas que levaram mais que long_query_time segundos." - -#: server_status.php:1630 -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 "" -"O número de fusões que o algoritmo de ordenação teve que fazer. Se este " -"valor for alto, você deve considerar aumentar o valor da variável " -"sort_buffer_size do sistema." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "O número de ordenações que foram feitas com escalas." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "O número de linhas ordenadas." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "O número de ordenações que foram feitas scaneando a tabela." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" -"O número de vezes que uma tabela trancada foi recuperada imediatamente." - -#: server_status.php:1635 -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 "" -"O número de vezes que uma tabela trancada não foi recuperada imediatamente e " -"uma espera foi necessária. Se isso foi alto e você tem problemas de " -"performance, você precisa primeiramente otimizar suas consultas e então, ou " -"dividir sua tabela ou usar replicação." - -#: server_status.php:1636 -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 "" -"O número de processos no cache de processos. A taxa de hits do cache pode " -"ser calculada como Threads_created/conexões. Se este valor for vermelho você " -"deve aumentar seu thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "O número de conexões atualmente abertas." - -#: server_status.php:1638 -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 "" -"O número de processos criadas para manipular conexões. Se Threads_created é " -"grande, você deveria aumentar o valor de thread_cache_size. (Normalmente " -"isso não da um aumento notável de performance se você tem uma boa " -"implementação de processos.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Taxa de acessos a threads (valor calculado)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "O número de processos que não estão dormindo." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Iniciar monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instruções/Configurações" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Concluiu reorganização/edição de graficos" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Adicionar gráfico" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Taxa de atualização" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Colunas do gráfico" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Organização de gráficos" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11553,15 +10787,15 @@ msgstr "" "A organização dos gráficos é armazenada no armazenamento local dos " "navegadores. Você pode exportá-la, se você tiver uma configuração complicada." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Restaurar valor padrão" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Instruções do monitor" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11575,7 +10809,7 @@ msgstr "" "habilitado. Note, porém, que general_log produz muitos dados e aumentar a " "carga do servidor em até 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11588,11 +10822,11 @@ msgstr "" "posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " "gráficos no servidor." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Usando o monitor:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11603,7 +10837,7 @@ msgstr "" "\"Configurações\", ou remover qualquer gráfico usando o ícone de roda " "dentada em cada gráfico." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11616,11 +10850,11 @@ msgstr "" "agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " "para, então, analisá-los." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Por favor, note:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11636,92 +10870,828 @@ msgstr "" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Variável(is) de status" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Selecione série:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Normalmente monitorado" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "ou digite o nome da variável:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Exibir como valor diferencial" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Aplicar um divisor" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Anexar unidade a valores de dados" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Adicionar esta série" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Limpar séries" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Séries no gráfico:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Estatísticas de log" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Faixa de tempo selecionada:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remova dados de variável de comandos INSERT para melhor agrupamento" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Escolha de qual log você deseja que as estatísticas seja geradas." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Resultados são agrupados por texto de consulta." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analisador de consulta" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Questões desde a inicialização: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Comandos" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtros" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Contendo a palavra:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Exibir somente valores de alerta" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrar por categoria..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Exibir valores não formatados" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Links relacionados:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"O número de conexões que foram abortadas porque o cliente morreu sem fechar " +"a conexão de forma apropriada." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "O número de tentativas de conexão sem sucesso ao servidor MySQL." + +#: server_status_variables.php:334 +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 "" +"O número de transações que usaram o cache do log binário temporário mas que " +"excederam o valor do binlog_cache_size e usaram o arquivo temporário para " +"armazenar enunciados da transação." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "O número de transações que usaram o cache do log binário temporário." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"O número de tentativas de conexão (com sucesso ou não) ao servidor MySQL." + +#: server_status_variables.php:346 +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 "" +"O número de tabelas temporárias no disco criadas automaticamente pelo " +"servidor enquanto executava os enunciados. Se Created_tmp_disk_tables é " +"grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " +"temporárias serem baseadas na memória ou invés de baseadas no disco." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Quantos arquivos temporários o MySQL tinha criado." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"O número de tabelas temporárias na memória criadas automaticamente pelo " +"servidor enquanto executava os enunciados." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " +"(provavelmente chave duplicada)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " +"diferente em que se usa INSERT DELAYED começa seu próprio processo." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "O número de linhas INSERT DELAYED escritas." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "O número de enunciados FLUSH executados." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "O número de enunciados COMMIT internos." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "O número de vezes que uma linha foi deletada de uma tabela." + +#: server_status_variables.php:381 +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 "" +"O servidor MySQL pode perguntar ao motor de armazenamento do NDB Cluster se " +"ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " +"Handler_discover indica o número de vezes que tabelas foram descobertas." + +#: server_status_variables.php:387 +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 "" +"O número de vezes que a primeira entrada foi lida de um índice. Se isto for " +"alto, sugere que o usuário está fazendo muitas varreduras completas do " +"índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." + +#: server_status_variables.php:393 +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 "" +"O número de requisições para ler uma linha baseada em uma chave. Se isto for " +"alto, é uma boa indicação de que suas consultas e tabelas estejam " +"corretamente indexadas." + +#: server_status_variables.php:398 +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 "" +"O número de requisições para ler a linha seguinte na ordem da chave. Isto é " +"incrementado se você estiver consultando uma coluna do índice com uma " +"restrição da escala ou se você estiver fazendo uma varredura do índice." + +#: server_status_variables.php:403 +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 "" +"O número de requisições para ler a linha precedente na ordem da chave. Este " +"método de leitura é usado principalmente para otimizar ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"O número de requisições pra ler uma linha baseada em uma posição fixa. Isto " +"é alto se você estiver fazendo muitas consultas que requerem a ordenação do " +"resultado. Você tem provavelmente muitas consultas que requerem que o MySQL " +"faça a varredura de tabelas inteiras ou você tem junções que não usam as " +"chaves corretamente." + +#: server_status_variables.php:414 +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 "" +"O número de requisições para ler a linha seguinte no arquivo de dados. Isto " +"é alto se você estiver fazendo muitas varreduras da tabela. Geralmente isto " +"sugere que suas tabelas não estão corretamente indexadas ou que suas " +"consultas não estão escritas para tomar vantagem dos índices que você têm." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "O número de enunciados ROLLBACK internos." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "O número de requisições para atualizar uma linha na tabela." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "O número de requisições para inserir uma linha na tabela." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "O número de páginas que contém dados (sujos ou limpos)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "O número de páginas atualmente sujas." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"O número de páginas do buffer pool que foram requisitadas para serem " +"niveladas." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "O número de páginas livres." + +#: server_status_variables.php:443 +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 "" +"O número de páginas trancadas no buffer pool do InnoDB. Estas são páginas " +"que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " +"ou removido por alguma outra razão." + +#: server_status_variables.php:448 +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 "" +"O número de páginas ocupadas porque foram alocados para rotinas " +"administrativas tais como trancamento de linhas ou índice hash adaptável. " +"Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Tamanho total do buffer pool, em páginas." + +#: server_status_variables.php:458 +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 "" +"O número de ler-adiante \"aleatórios\" InnoDB iniciado. Isto acontece quando " +"uma consulta faz a varredura de uma parcela grande de uma tabela mas na " +"ordem aleatória." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " +"InnoDB faz uma varredura sequencial completa da tabela." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " +"teria que fazer uma leitura de página simples." + +#: server_status_variables.php:474 +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 "" +"Normalmente, escreve para o buffer pool do InnoDB rodando em segundo plano. " +"Entretanto, se for necessário ler ou criar uma página e nenhuma página limpa " +"estiver disponível, é necessário esperar as páginas serem niveladas " +"primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " +"do buffer pool for ajustado corretamente, este valor deve ser pequeno." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "O número de escritas feitas para o buffer pool do InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "O número de operações fsync() à fazer." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "O número atual de operações fsync() pendentes." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "O número atual de leituras pendentes." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "O número atual de escritas pendentes." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "O montante de leitura de dados à fazer, em bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "O número total de dados lidos." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "O número total de dados escritos." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "O montante de escrita de dados à fazer, em bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"O número de escritas doublewrite que foram executadas e o número de páginas " +"que foram escritas para esta finalidade." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"O número de escritas doublewrite que foram executadas e o número de páginas " +"que foram escritas para esta finalidade." + +#: server_status_variables.php:516 +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 "" +"O número de esperas geradas porque o buffer do log era muito pequeno e teve " +"que esperar que fosse nivelada antes de continuar." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "O número de requisições de escrita de log." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "O número de escritas físicas para o arquivo de log." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "O número de escritas fsyncs feitas no arquivo de log." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "O número de arquivos de log fsyncs pendentes." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Escrita de arquivos de log pendentes." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "O número de bytes escritos para o arquivo de log." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "O número de páginas criadas." + +#: server_status_variables.php:541 +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 "" +"O tamanho de página compilada do InnoDB (padrão 16KB). Muitos valores são " +"contados em páginas; o tamanho de página permite que sejam facilmente " +"convertidos em bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "O número de páginas lidas." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "O número de páginas escritas." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "O número de linhas trancadas que estão esperando atualmente." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" +"O número de vezes que uma linhas trancada teve que esperar para ser escrita." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "O número de linhas deletadas de tabelas InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "O número de linhas inseridas em tabelas InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "O número de linhas lidas de tabelas InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "O número de linhas atualizadas em tabelas InnoDB." + +#: server_status_variables.php:579 +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 "" +"O número de blocos chave no cache chave que mudaram mas não foram nivelados " +"ainda ao disco. Antes era chamado de Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"O número de blocos não usados no cache chave. Você pode usar este valor para " +"determinar quanto do cache chave está no uso." + +#: server_status_variables.php:588 +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 "" +"O número de blocos usados no cache chave. Este valor é uma marca d'água que " +"indica o número máximo de blocos que estiveram sempre em uso em algum " +"momento." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Porcentagem utilizada do cache de chaves (valor calculado)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "O número de requisições para ler um bloco chave do cache." + +#: server_status_variables.php:599 +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 "" +"O número de leituras físicas de um bloco chave do disco. Se Key_reads for " +"alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " +"de falta de cache pode ser calculada como Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "O número de requisições para escrever um bloco chave para o cache." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "O número de escritas físicas para um bloco chave para o disco." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" +"O custo total da última consulta compilada como computado pelo otimizador de " +"consultas. Útil para comparar o custo de diferentes planos de consulta para " +"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " +"compilada ainda." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"O número máximo de conexões que estavam em uso simultaneamente desde a " +"inicialização do servidor." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" +"O número de linhas esperando para serem escritas na fila de INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"O número de tabelas que devem estar abertas. Se aberta, as tabelas são " +"grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "O número de arquivos que estão abertos." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"O número de streams que estão abertos (usados principalmente para log)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "O número de tabelas que estão abertas." + +#: server_status_variables.php:645 +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 "" +"O número de blocos de memória livres no cache de pesquisa. Números altos " +"podem indicar problemas de fragmentação, o que pode ser resolvido com " +"execução de um comando FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "O montante de memória livre para a consulta do cache." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "O número de hits do cache." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "O número de consultas adicionadas no cache." + +#: server_status_variables.php:659 +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 "" +"O número de consultas que foram removidas do cache para liberar memória para " +"novas consultas. Essa informação pode ajudar você a ajustar o tamanho da " +"consulta do cache. A consulta do cache usa a estratégia do \"usado menos " +"recentemente\" (LRU - least recently used) para decidir qual consulta " +"remover do cache." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"O número de consultas sem cache (não cacheável, ou não pode ser cacheável " +"devido à configuração em query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "O número de consultas registradas no cache." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "O número total de blocos na consulta do cache." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "O status da replicação à prova de falhas (não implementado)." + +#: server_status_variables.php:679 +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 "" +"O número de junções que não usaram índices. Se este valor não for 0, você " +"deve cuidadosamente verificar os índices de suas tabelas." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"O número de junções que usaram uma pesquisa de escala na tabela de " +"referência." + +#: server_status_variables.php:686 +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 "" +"O número de junções sem chaves que verificam para ver se há o uso da chave " +"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " +"índices de suas tabelas.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"O número de junções que usaram escalas na primeira tabela. (Não é " +"normalmente crítico mesmo se este for grande.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "O número junções que fez uma varredura completa da primeira tabela." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Número total (desde o início) de vezes que o processo SQL escravo de " +"replicação teve que tentar transações." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"O número de processos que levaram mais que slow_launch_time segundos para " +"serem criadas." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "O número de consultas que levaram mais que long_query_time segundos." + +#: server_status_variables.php:717 +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 "" +"O número de fusões que o algoritmo de ordenação teve que fazer. Se este " +"valor for alto, você deve considerar aumentar o valor da variável " +"sort_buffer_size do sistema." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "O número de ordenações que foram feitas com escalas." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "O número de linhas ordenadas." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "O número de ordenações que foram feitas scaneando a tabela." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" +"O número de vezes que uma tabela trancada foi recuperada imediatamente." + +#: server_status_variables.php:734 +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 "" +"O número de vezes que uma tabela trancada não foi recuperada imediatamente e " +"uma espera foi necessária. Se isso foi alto e você tem problemas de " +"performance, você precisa primeiramente otimizar suas consultas e então, ou " +"dividir sua tabela ou usar replicação." + +#: server_status_variables.php:740 +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 "" +"O número de processos no cache de processos. A taxa de hits do cache pode " +"ser calculada como Threads_created/conexões. Se este valor for vermelho você " +"deve aumentar seu thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "O número de conexões atualmente abertas." + +#: server_status_variables.php:748 +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 "" +"O número de processos criadas para manipular conexões. Se Threads_created é " +"grande, você deveria aumentar o valor de thread_cache_size. (Normalmente " +"isso não da um aumento notável de performance se você tem uma boa " +"implementação de processos.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Taxa de acessos a threads (valor calculado)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "O número de processos que não estão dormindo." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Erro na atribuição da variável" @@ -12317,26 +12287,26 @@ msgstr "Restrição de chave estrangeira" msgid "Tracking report for table `%s`" msgstr "Relatório de rastreamento para tabela `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Rastreamento para %1$s foi desativado na versão %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Rastreamento para %1$s foi ativado na versão %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Instruções SQL executadas." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12344,117 +12314,117 @@ msgstr "" "Você pode executar o dump criando e usando uma tabela temporária.Por favor, " "certifique-se de ter os privilégios necessários." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Comente estas duas linhas se você não precisa delas." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instruções SQL exportadas. Por favor, copie a saída ou execute-as." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Erro de consulta" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Rastreamento de manipulação de dados removidos com sucesso" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Rastreando instruções" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s com datas desde %2$s até %3$s pelo usuário %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nenhum dado" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Data" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Instrução de definição de dados" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Instrução de manipulação de dados" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Despejar SQL (download de arquivo)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Despejar SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Execução SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Exibir versões" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Desativar rastreamento para %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Desativar agora" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Ativar rastreamento para %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Ativar agora" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Criar versão %1$s de %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Rastrear essas instruções de definição de dados:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Rastrear essas instruções de manipulação de dados:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Criar versão" @@ -12600,19 +12570,19 @@ 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 "" -"Sugere-se definir {long_query_time} para um valor inferior, dependendo " -"do seu ambiente. Normalmente, um valor de 1-5 segundos é sugerido." +"Sugere-se definir {long_query_time} para um valor inferior, dependendo do " +"seu ambiente. Normalmente, um valor de 1-5 segundos é sugerido." #: libraries/advisory_rules.txt:82 #, php-format msgid "long_query_time is currently set to %ds." msgstr "\"long_query_time\" está definida para %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Gravação de Logs de consulta lento" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "O registro de consulta lenta está desativado." @@ -12626,15 +12596,27 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries está definido como 'DESLIGADO'" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries está definido como 'DESLIGADO'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Série de Lançamento" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "A versão do servidor MySql é inferior a 5.1" -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12642,47 +12624,47 @@ msgstr "" "Você deveria atualizar, uma vez que o MySQL 5.1 tem um desempenho melhor e o " "MySQL 5.5 melhor ainda." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Versão atual: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Versão Menor" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" "Versão inferior a 5.1.30 (a primeira versão de disponibilidade geral do 5.1)" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" "Versão inferior a 5.5.8 (a primeira versão de disponibilidade geral do 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Você deveria atualizar para uma versão estável do MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribuição" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" "Varsão é compilada a partir das fontes, e não é um binário oficial do MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12693,40 +12675,40 @@ msgstr "" "relação aos binários oficiais do MySQL, não com relação aos pacotes " "fornecidos com distribuições (como RedHat, Debian/Ubuntu etc.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source' encontrado em version_coment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "O manual do MySQL só é preciso para binários oficiais MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "A documentação da Percona está em http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona' encontrado em version_coment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "A documentação do Drizzle está em http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "A string de versão (%s) corresponde ao esquema de versões do Drizzle." -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arquitetura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12737,20 +12719,20 @@ msgstr "" "acessar toda a memória. Você deve considerar a instalação de umva versão de " "64 bits do MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Cache de consulta desabilitdado" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "O cache de consulta não está habilitado." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12764,21 +12746,21 @@ msgstr "" "Observação:Se estiver usando cache em memória (memcache), ignore esta " "recomendação." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size está definido em 0 ou query_cache_type está definido em " "'DESLIGADO'." -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Método de cache de consulta" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Método de cache sub-ótimo." -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13136,11 +13118,11 @@ msgstr "" "%s%% de todas as tabelas temporárias estão sendo escritas no disco. Este " "valor deveria ser menor do que 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Taxa de disco Temporário" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13151,7 +13133,7 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13160,42 +13142,42 @@ msgstr "" "A taxa de tabelas temporárias sendo escritas no disco: %s. Este valor " "deveria ser menor do que 1 por hora." -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM chave tamanho da memória intermédia" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size é 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "%% Número máximo de buffers chave MyISAM" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "O buffer de chaves MyISAM (cache de índices) %% usadas é baixo." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13203,73 +13185,73 @@ msgstr "" "%% número máximo de buffers chave MyISAM: %s%%, é aconselhável que este " "valor esteja acima de 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Porcentagem usada de key buffers MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% de buffer de chave MyISAM usada: %s%%. Este vakir deveria ser maior do " "que 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Porcentagem de leituras de índice da memória" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" "Leituras de índice da memória: %s%%. Este valor deveria ser maior do que 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Taxa de tabelas abertas" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "A proporção de tabelas abertas está alta." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Taxa de tabelas abertas: %s. Este valor deveria ser menor do que 10 por hora." -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Porcentagem do limite de arquivos abertos" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13277,116 +13259,116 @@ msgstr "" "O número de arquivos abertos está em %s%% do limite. Deveria ser menor do " "que 85%%." -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Proporção de arquivos abertos" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "A proporção de arquivos abertos está alta." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Taxa de arquivos abertos: %s. Este valor deveria ser menor do que 5 por hora." -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Tabelas bloqueadas %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Muitos bloqueios de tabela não foram concedidos imediatamente." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Locks de tabelas imediatas: %s%%. Este valor deveria ser maior do que 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Taxa de espera por lock de tabelas: %s. Este valor deveria ser menor do que " "1 por hora." -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Cache de threads" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "O cache de threads está definido como 0." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Taxa de acessos a threads %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Cache de threads não é eficiente." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Taxa de acerto de cache de thread: %s%%. Este valor deveria ser maior do que " "80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Threads que estão lentas para iniciar" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Existem muitas threads que estão lentas demais para iniciar." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_time está acima de 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13394,16 +13376,16 @@ msgstr "" "Defina slow_launch_time para 1s ou 2s para contar threads que estão lentas " "para iniciar" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time está atribuído a %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Porcentagem de conexões em uso" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13411,7 +13393,7 @@ msgstr "" "O número máximo de conexões em uso está se aproximando do valor de " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13422,7 +13404,7 @@ msgstr "" "eliminadas antes. Certifique-se que seu código fecha os manipuladores de " "bancos de dados corretamente." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13430,15 +13412,15 @@ msgstr "" "Max_used_connections corresponde a %s%% de max_connections, este valor deve " "ser abaixo de 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Porcentagem de conexões abortadas" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Muitas conexões são abortadas." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Este artigo deve auxiliá-lo a procurar a " "causa." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Taxa de conexões abortadas" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13468,15 +13450,15 @@ msgstr "" "A taxa de conexões abortadas é %s, este valor deve ser menor do que 1 por " "hora" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Porcentagem de clientes abortados" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Muitos clientes são abortados." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13487,44 +13469,44 @@ msgstr "" "programa não fechar corretamente o manipulador de banco de dados. Verifique " "a rede e o código." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% de todos os clientes são abortados. Este valor deve ser menor do que 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Taxa de clientes abortados" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "A taxa de clientes abortados é %s. Este valor deve ser menor do que 1 por " "hora" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "O InnoDB está desativado?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "O InnoDB não está ativado." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB é normalmente a melhor escolha para engines de tabelas." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb é definido como 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Tamanho do log do InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13532,7 +13514,7 @@ msgstr "" "O tamanho do arquivo de log do InnoDB não é apropriado em relação ao Buffer " "Pool do InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13546,7 +13528,7 @@ msgid "" "com/2007/01/increase-innodblogfilesize-proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13555,15 +13537,15 @@ msgstr "" "O tamanho do seu log do InnoDB é %s%% o tamanho do Buffer Pool do InnoDB, " "ele não deve ser menor do que 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Tamanho máximo do log InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "O tamanho do log do InnoDB é inadequadamente grande." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13577,20 +13559,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "O tamanho absoluto do log do InnoDB é %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Tamanho do buffer pool InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Seu Buffer Pool InnoDB é muito pequeno." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13616,7 +13598,7 @@ msgstr "" "também este artigo" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13629,15 +13611,15 @@ msgstr "" "pode ser perfeitamente adequado para o seu sistema se você não possui tantas " "tabelas InnoDB ou outros serviços executando na mesma máquina." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Inserções concorrentes no MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Ative o concurrent_insert atribuindo 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Documentação MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB enviados desde a última atualização" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB recebidos desde a última atualização" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Tráfego do Servidor (em KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Conexões desde a última atualização" + +#~ msgid "Questions since last refresh" +#~ msgstr "Requisições desde a última atualização" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Requisições (Declarações executadas pelo servidor)" + +#~ msgid "Runtime Information" +#~ msgstr "Informações de Runtime" + +#~ msgid "Number of data points: " +#~ msgstr "Número de pontos de dados: " + +#~ msgid "Refresh rate: " +#~ msgstr "Taxa de atualização: " + +#~ msgid "Run analyzer" +#~ msgstr "Executar analisador" + #~ msgid "Show more actions" #~ msgstr "Exibir mais ações" diff --git a/po/ro.po b/po/ro.po index 8212ecd0ac..ec8cded44f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Romanian " -"\n" -"Language: ro\n" +"Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Caută" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Caută" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Execută" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nume cheie" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Descriere" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Comentarii tabel" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Coloană" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Coloană" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Nul" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Setare de bază" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Setare de bază" msgid "Links to" msgstr "Trimitere la" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Comentarii" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nu" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Nu" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Da" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabel" @@ -339,7 +339,7 @@ msgstr "Mărime" msgid "in use" msgstr "în folosință" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "în folosință" msgid "Creation" msgstr "Creare" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Creare" msgid "Last update" msgstr "Ultima actualizare" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -410,7 +410,7 @@ msgstr "Tabelele urmărite" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza de date" @@ -418,17 +418,17 @@ msgstr "Baza de date" msgid "Last version" msgstr "Ultima versiune" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Creat(ă)" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stare" @@ -443,7 +443,7 @@ msgstr "Acțiune" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Afișează" @@ -460,11 +460,11 @@ msgstr "Șterge datele urmărite din acest tabel" msgid "Drop" msgstr "Aruncă" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "activ(ă)" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 #, fuzzy msgid "not active" msgstr "inactiv(ă)" @@ -473,11 +473,11 @@ msgstr "inactiv(ă)" msgid "Versions" msgstr "Versiuni" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Raport de monitorizare" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Instantaneu al structurii" @@ -546,49 +546,49 @@ msgstr "" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Adaugă %s cîmp(uri)" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linii terminate de" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -598,17 +598,17 @@ msgstr "" msgid "Add a linestring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -751,8 +751,9 @@ msgstr "Facilități generale" msgid "Database server" msgstr "Bază de date pentru utilizatorul" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -773,7 +774,7 @@ msgstr "Versiune protocol" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Utilizator" @@ -1024,12 +1025,12 @@ msgstr "Reîncărcarea drepturilor" msgid "Removing Selected Users" msgstr "Eliminarea utilizatorilor selectați" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Închide" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1039,17 +1040,17 @@ msgstr "Închide" msgid "Edit" msgstr "Editare" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Alegerea serverului" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "Comanda SQL" @@ -1061,13 +1062,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1082,51 +1084,16 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB trimiși de la ultima reîmprospătare" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB primiți de la ultima reîmprospătare" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Traficul server-ului (în KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Conexiuni de la ultima reîmprospătare" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procese" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Conexiuni / Procese" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Întrebări de la ultima reîmprospătare" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Statisticile rîndului" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1134,219 +1101,224 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Cache interogări" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Cache interogări" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Cache interogări" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Memorie sistem" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiO" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiO" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Număr de fișiere-jurnal" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Buffer Pool" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Memorie disponibilă" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Memorie folosită" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Total" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Pagini libere" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Octeți trimiși" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Octeți primiți" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Conexiuni" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procese" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "octeți" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiO" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiO" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiO" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabele" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Versiuni" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Facilități generale" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Redenumire bază de date în" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Editează tabeș și etichetă" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Aliniere la grilă" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Nici unul(a)" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1357,12 +1329,12 @@ msgstr "" "interogările ce durează mai mult decat %d secunde. Este recomandat să setați " "long_query_time 0-2 secunde, în funcție de sistemul dumneavoastră." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time este setat la %d secunde." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1371,31 +1343,31 @@ msgstr "" "după restartarea server-ului:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Trimite" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Activează %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Dezactivează %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1403,57 +1375,57 @@ msgstr "" "Nu puteți modifica aceste variabile. Vă rugăm să vă logați ca root sau să " "contactați administratorul bazei de date." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Modificați setările" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Setările curente" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Titlu raport" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "Încărcare jurnale" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Se analizează și încarcă jurnalele. Poate dura." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Anulează cererea" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1464,7 +1436,7 @@ msgstr "" "că celelalte atribute ale interogărilor, cum ar fi timpul de pornire, pot fi " "diferite." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1474,393 +1446,395 @@ msgstr "" "INSERT în aceeași tabelă sunt și ele grupate împreună, neluând în " "considerare datele inserate." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Datele din jurnal au fost încărcate. Interogările executate in acest " "inverval de timp:" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Nu sînt baze de date" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Nu sînt baze de date" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Jurnal analizat, dar nu au fost găsite date în acest interval de timp." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Se analizează…" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Explică SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Timp" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Total" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Creare profil" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "Seturi de caractere" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "Adaugă %s cîmp(uri)" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "Comanda SQL" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Opțiuni de afișare a tabelelor" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrare" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrează interogări dupa cuvânt / expresie regulată:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupează interogări, ignorând datele din variabilele din clauza WHERE" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "Numărul de rînduri sortate." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Total" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Încărcare jurnale" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Reîncarcă" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Rânduri afectate:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Parsarea fișierului de configurare a eșuat. Codul nu pare să fie valid JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Reînnoire comandă" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Posibile probleme de performanță" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Recomandare" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Detalii..." -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justificare" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Variabilă / formulă folosită" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Renunță" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "încărcare" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Se procesează cererea" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Eroare în procesarea cererii" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nu este selectată nici o bază de date." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Șterge Coloană" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Se adaugă Cheia Primară" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "E bine" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Click pentru a înlătura această notificare" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Redenumire baze de date" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Reîncărcare bază de date" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Se copiază baza de date" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Modificare set de caractere" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Tabelul trebuie să conțină cel puțin un cîmp." -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Inserează Tabel" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Ascunde index-uri" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Arată index-uri" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Dezactivare verificări de cheie străine" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Activat" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Dezactivat" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Se caută" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Afișează rezultatele căutării" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Navigare" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Ștergere" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Valori pentru coloana %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Valori pentru o coloană nouă" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Introduceți fiecare valoare într-un câmp separat" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Adaugă %d valori" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Notă: Dacă fișierul conține mai multe tabele, acestea vor fi combinate într-" "unul singur" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Ascunde casuță interogare" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Afișează casuță interogare" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Niciun rând selectat" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Schimbare" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Durata de execuție a interogării" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1869,98 +1843,98 @@ msgstr "%d nu este un număr valid de rînduri." msgid "Save" msgstr "Salveaza" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Ascunde criteriile de căutare" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Afișează criteriile de căutare" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Caută" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Fiecare punct reprezintă un rând de date." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Ducând mouse-ul deasupra unui punct, i se va afișa eticheta." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "" "Click pe link-ul de resetare zoom pentru a te întoarce la starea originală." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Click pe un punct de date pentru a vedea sau chiar a edita rândul de date." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Selectează două coloane" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Selectează două coloane diferite" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Operațiuni asupra rezultatelor interogării" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Copiază" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Adaugă coloane" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Selectează coloana pentru afișare" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1968,15 +1942,20 @@ msgstr "" "Nu ați salvat schimbarile în așezare. Ele vor fi pierdute dacă nu le " "salvați. Doriți să continuați?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Adăugați o opțiune pentru coloană " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Apăsați escape pentru a anula editarea" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1984,28 +1963,28 @@ msgstr "" "Ați editat unele date și acestea nu au fost salvate. Sigur vreți să părăsiți " "această pagină fără să salvați datele?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Drag and drop pentru reordonare" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Click pentru a sorta" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Click pentru a selecta/deselecta" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Click pe săgeata de drop-down
pentru a alterna vizibilitatea coloanei" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -2014,7 +1993,7 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2025,72 +2004,72 @@ msgstr "" "Puteți de asemenea edita coloane
facând click direct pe conținutul " "acestora." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Puteți de asemenea edita coloane
facând click direct pe conținutul " "acestora." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Mergi la adresa link-ului" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Denumirile coloanelor" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Afișează înregistrări" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generează" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mai mult" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Arată toate" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Ascunde index-uri" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2100,27 +2079,27 @@ msgstr "" "procesul de actualizare. Noua versiune este %s, publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "la ultima versiune" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Gata" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2128,82 +2107,82 @@ msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Astăzi" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Ianuarie" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Februarie" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Martie" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Aprilie" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mai" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Iunie" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Iulie" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Septembrie" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Octombrie" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Noiembrie" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2211,70 +2190,70 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Duminică" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Luni" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Marți" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Miercuri" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Joi" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Vineri" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2282,97 +2261,97 @@ msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Du" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sâ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Săpt" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-lună-an" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nici unul(a)" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Oră" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Secundă" @@ -2427,16 +2406,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "pe secundă" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "pe minut" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "pe oră" @@ -2464,7 +2443,7 @@ msgstr "Dimensiune font" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Crescătoare" @@ -2473,7 +2452,7 @@ msgstr "Crescătoare" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Descrescător" @@ -2593,7 +2572,7 @@ msgstr "Ștergeți potrivirile pentru tabelul %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Șterge" @@ -2790,7 +2769,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Oprește" @@ -2846,12 +2825,13 @@ msgstr "Marchează toate" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" @@ -2859,7 +2839,7 @@ msgstr "Exportă" msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2947,16 +2927,16 @@ msgstr "Nu se poate citi fișierul încărcat (și mutat)." msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2970,21 +2950,21 @@ msgstr "Index nu este definit!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Cardinalitate" @@ -2994,13 +2974,13 @@ msgstr "Cardinalitate" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Interclasare" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Comentariu" @@ -3043,7 +3023,7 @@ msgstr "Vizualizare" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Structură" @@ -3117,34 +3097,35 @@ msgstr "Evenimente" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Utilizatori" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Jurnal binar" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replicare" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motoare" @@ -3195,6 +3176,106 @@ msgstr "Tabele recente" msgid "There are no recent tables" msgstr "Nu sunt tabele recente" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Comanda SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Gestionar" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Cache interogări" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Fire" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Date temporare" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Inserări întîrziate" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Cache cheie" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Joncțiuni" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortare" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabele" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Coordonator tranzacție" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Fișiere" + +#: libraries/ServerStatusData.class.php:207 +#, fuzzy +msgid "Flush (close) all tables" +msgstr "Aruncă (închide) toate tabelele" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Afișează tabele deschise" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Afișează gazde sclavi" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Afișați status master" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Afișează stare sclav" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Reinițializare cache interogare" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stare InnoDB" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +msgid "Query statistics" +msgstr "Statisticile rîndului" + +#: 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." @@ -3291,7 +3372,7 @@ msgstr "Operand" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Valoare" @@ -3696,11 +3777,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Comanda SQL" - #: libraries/Util.class.php:710 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:292 @@ -3736,7 +3812,7 @@ msgid "Create PHP Code" msgstr "Creează cod PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Reîncarcă" @@ -3839,13 +3915,6 @@ msgstr "Listare" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabele" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3888,25 +3957,25 @@ msgstr "Verifică privilegiile pentru baza de date "%s"." msgid "Check Privileges" msgstr "Verifică privilegiile" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3918,41 +3987,41 @@ msgstr "" "Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în " "fișierul de configurare!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Index de server nevalid: „%s”" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "cheie numerica detectată" @@ -6349,8 +6418,8 @@ msgstr "" "Dacă aveți un nume de utilizator, specificați-l aici ( default este [kbd]" "anonymous[/kbd] )" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Nume utilizator:" @@ -7045,10 +7114,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Zonă Tampon" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stare InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7751,18 +7816,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "nume tabel" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7880,17 +7945,17 @@ msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Numai structura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Structura și date" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Numai date" @@ -8319,8 +8384,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Gazda" @@ -8936,7 +9000,7 @@ msgid "Slave status" msgstr "Stare sclav" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabil" @@ -9501,7 +9565,7 @@ msgstr "Proprietăți" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -10226,7 +10290,7 @@ msgstr "Adaugă prefix la tabelă" msgid "Check tables having overhead" msgstr "Verificare depășit" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10602,7 +10666,7 @@ msgstr "Comutare mare/mică" msgid "Toggle relation lines" msgstr "Pentru a alege relația, faceți clic:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10673,39 +10737,39 @@ msgstr "Pagina a fost creată" msgid "Page creation failed" msgstr "Pagina nu a putut fi creată" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Pagină" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import fișiere" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Creează un nou index" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nume utilizator" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "recomandat" @@ -10824,15 +10888,11 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Fișiere" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -10918,7 +10978,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Persană" @@ -10980,10 +11040,6 @@ msgstr "Server master schimbat cu succes în %s" msgid "This server is configured as master in a replication process." msgstr "Acest server este configurat ca master într-un proces de replicare." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Afișați status master" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Afișați sclavi conectați" @@ -11129,12 +11185,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -11142,885 +11198,167 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status.php:657 -msgid "Handler" -msgstr "Gestionar" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Cache interogări" - -#: server_status.php:659 -msgid "Threads" -msgstr "Fire" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Date temporare" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Inserări întîrziate" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Cache cheie" - -#: server_status.php:664 -msgid "Joins" -msgstr "Joncțiuni" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortare" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Coordonator tranzacție" - -#: server_status.php:680 -#, fuzzy -msgid "Flush (close) all tables" -msgstr "Aruncă (închide) toate tabelele" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Afișează tabele deschise" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Afișează gazde sclavi" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Afișează stare sclav" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Reinițializare cache interogare" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informații rulare" - -#: server_status.php:830 -msgid "All status variables" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:832 -msgid "Monitor" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:834 -msgid "Advisor" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Număr de rânduri:" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Reîncarcă" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Fișiere" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Nu schimbați parola" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Afișează tabele deschise" - -#: server_status.php:914 -msgid "Filter by category..." +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Afișează tabele deschise" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" -#: server_status.php:930 +#: server_status.php:122 #, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Legături" +msgid "Replication status" +msgstr "Replicare" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Tip interogare" +#: server_status.php:139 +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:966 +#: server_status.php:149 +msgid "Received" +msgstr "Recepționat" + +#: server_status.php:168 +msgid "Sent" +msgstr "Trimis" + +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "conexiuni concurente (maxim)" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Încercări nereușite" + +#: server_status.php:253 +msgid "Aborted" +msgstr "Întrerupt" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "Comanda" + +#: server_status_advisor.php:29 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introducere" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Comenzi" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -#, fuzzy -msgid "Replication status" -msgstr "Replicare" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Recepționat" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Trimis" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "conexiuni concurente (maxim)" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Încercări nereușite" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Întrerupt" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Comanda" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Comprimă conexiunea la serverul MySQL" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Cîte fișiere temporare a creat mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Numărul de tabele temporare create automat în memorie de căter server în " -"timpul execuției de interogări." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Numărul de cereri de a insera un rînd într-un tabel." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Numărul de pagini conținînd date (curate sau murdare)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Numărul de pagini actualmente murdare." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Numărul de pagini libere." - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Numărul total de citiri de date." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Numărul total de scrieri de date." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Cantitatea totală de date scrisă până acum, în bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "The number of fsyncs writes done to the log file." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Numărul de pagini create." - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Numărul de pagini citite." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Numărul de pagini scrise." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Numărul de rînduri citite din tabelele InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Numărul de rînduri actualizate în tabelele InnoDB." - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Formatul fișierului importat" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Numărul de tabele ce sînt deschise." - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Numărul de nimeriri în cache." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Numărul de interogări adăugate la cache." - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Numărul de interogări înregistrate în cache." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Numărul total de blocuri în cache-ul interogării." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Numărul de rînduri sortate." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Numărul de conexiuni deschise momentan." - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Monitorizarea nu este activată" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Dum" -#: server_status.php:1810 +#: server_status_monitor.php:479 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introducere" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Adaugă %s cîmp(uri)" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Introducere" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -12029,7 +11367,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12037,18 +11375,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -12056,11 +11394,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -12068,91 +11406,91 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Redenumire bază de date în" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Selectează tabele" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Denumire de tabel nevalidă" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adaugă un server nou" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "Comanda SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Statisticile rîndului" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Perioada selectată:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tip interogare" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12161,7 +11499,7 @@ msgstr[0] "pe secundă" msgstr[1] "pe secundă" msgstr[2] "pe secundă" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12170,6 +11508,633 @@ msgstr[0] "în folosință" msgstr[1] "în folosință" msgstr[2] "în folosință" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Comenzi" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Fișiere" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Nu schimbați parola" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Afișează tabele deschise" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Afișează tabele deschise" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Legături" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Comprimă conexiunea la serverul MySQL" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Cîte fișiere temporare a creat mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Numărul de tabele temporare create automat în memorie de căter server în " +"timpul execuției de interogări." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Numărul de cereri de a insera un rînd într-un tabel." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Numărul de pagini conținînd date (curate sau murdare)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Numărul de pagini actualmente murdare." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Numărul de pagini libere." + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Numărul total de citiri de date." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Numărul total de scrieri de date." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Cantitatea totală de date scrisă până acum, în bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"The number of doublewrite writes that have been performed and the number of " +"pages that have been written for this purpose." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"The number of doublewrite writes that have been performed and the number of " +"pages that have been written for this purpose." + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "The number of fsyncs writes done to the log file." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Numărul de pagini create." + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Numărul de pagini citite." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Numărul de pagini scrise." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Numărul de rînduri citite din tabelele InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Numărul de rînduri actualizate în tabelele InnoDB." + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Formatul fișierului importat" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Numărul de tabele ce sînt deschise." + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Numărul de nimeriri în cache." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Numărul de interogări adăugate la cache." + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Numărul de interogări înregistrate în cache." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Numărul total de blocuri în cache-ul interogării." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Numărul de rînduri sortate." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Numărul de conexiuni deschise momentan." + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Monitorizarea nu este activată" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12758,150 +12723,150 @@ msgstr "Constrângeri ale cheii străine" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Tip interogare" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy msgid "Delete tracking data row from report" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nu sînt baze de date" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Date" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Modul de export" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format msgid "Deactivate tracking for %s" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Creare relație" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Creare relație" @@ -13044,12 +13009,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time este setat la %d secunde." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "Comanda SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13067,131 +13032,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time este setat la %d secunde." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time este setat la %d secunde." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Selectează tabele" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Creare relație" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Persană" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Descriere" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Setul de caractere MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Cache interogări" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Serverul nu răspunde" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13199,23 +13176,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Cache interogări" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Cache interogări" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tabele" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13612,269 +13589,269 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Afișare comandă întreagă" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Creare tabel" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "The current number of pending writes." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Formatul fișierului importat" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Formatul fișierului importat" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "The number of pending log file fsyncs." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Creează tabel nou în baza de date %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sortare Mărime tampon" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sortare Mărime tampon" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sortare Mărime tampon" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Key cache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Monitorizarea nu este activată" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Monitorizarea nu este activată" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Monitorizarea nu este activată" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sortare Mărime tampon" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time este setat la %d secunde." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13882,50 +13859,50 @@ msgid "" "launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time este setat la %d secunde." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "conexiuni concurente (maxim)" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "conexiuni concurente (maxim)" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Permite crearea de tabele temporare." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14040,17 +14017,17 @@ msgid "" "it should not be below 20%%" msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14064,24 +14041,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14096,7 +14073,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14105,17 +14082,17 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "conexiuni concurente (maxim)" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Activează concurrent_insert setându-i valoarea la 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Documentația MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat la 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB trimiși de la ultima reîmprospătare" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB primiți de la ultima reîmprospătare" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Traficul server-ului (în KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Conexiuni de la ultima reîmprospătare" + +#~ msgid "Questions since last refresh" +#~ msgstr "Întrebări de la ultima reîmprospătare" + +#~ msgid "Runtime Information" +#~ msgstr "Informații rulare" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Număr de rânduri:" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Reîncarcă" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Tip interogare" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ru.po b/po/ru.po index 7f60eb0e2b..ccec71f4e7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:58+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Russian " -"\n" -"Language: ru\n" +"Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Поиск" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "OK" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Имя индекса" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Описание" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Комментарий к базе данных: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Комментарий к таблице" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Поле" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Поле" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "По умолчанию" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "По умолчанию" msgid "Links to" msgstr "Связи" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Комментарии" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Нет" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Да" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Таблица" @@ -339,7 +339,7 @@ msgstr "Размер" msgid "in use" msgstr "используется" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "используется" msgid "Creation" msgstr "Создание" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Создание" msgid "Last update" msgstr "Последнее обновление" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -409,7 +409,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "База данных" @@ -417,17 +417,17 @@ msgstr "База данных" msgid "Last version" msgstr "Последняя версия" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Создан" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Состояние" @@ -442,7 +442,7 @@ msgstr "Действие" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Показать" @@ -458,11 +458,11 @@ msgstr "Удалить данные слежения за таблицей" msgid "Drop" msgstr "Удалить" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "включено" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "выключено" @@ -470,11 +470,11 @@ msgstr "выключено" msgid "Versions" msgstr "Версии" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Обзор структуры" @@ -542,45 +542,45 @@ msgstr "Используйте в качестве основного слоя O msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Точка %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Добавить точку" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Линия" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Внешний контур" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Внутренний контур" @@ -588,15 +588,15 @@ msgstr "Внутренний контур" msgid "Add a linestring" msgstr "Добавить линию" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Добавить внутренний контур" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Многоугольник" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Добавить многоугольник" @@ -735,8 +735,9 @@ msgstr "Дополнительные настройки" msgid "Database server" msgstr "Сервер баз данных" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервер" @@ -755,7 +756,7 @@ msgstr "Версия протокола" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Пользователь" @@ -1000,12 +1001,12 @@ msgstr "Перезагрузка привилегий" msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Закрыть" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1015,15 +1016,15 @@ msgstr "Закрыть" msgid "Edit" msgstr "Изменить" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Графический вывод трафика" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Графический вывод соединений и процессов" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Графический вывод запросов" @@ -1034,13 +1035,14 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Другое" @@ -1055,48 +1057,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Отправлено KiB с момента последнего обновления" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Принято KiB с момента последнего обновления" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Трафик сервера (в KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Соединений с момента последнего обновления" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Процессы" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Соединения / Процессы" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Вопросов с момента последнего обновления" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Вопросы (выражения выполненные сервером)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Статистика запросов" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Настройки локального монитора несовместимы" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1108,196 +1076,201 @@ msgstr "" "работоспособности текущих настроек. Пожалуйста, сбросьте ваши настройки, в " "меню Настройки, в изначальные." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Эффективность кеширования запросов" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Использование кеширования запросов" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Кеш запросов использован" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Использование системного процессора" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Системная память" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Система подкачки" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Средняя загрузка" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Полная память" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Кешированная память" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Беферизованная память" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Свободная память" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Использованная память" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Всего области подкачки" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Кешировано области подкачки" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Использовано области подкачки" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Свободно области подкачки" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Отослано байт" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Принято байт" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Соединения" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процессы" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Байт" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d таблиц(а)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Вопросы" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Настройки" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Удалить график" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Редактировать название и подписи" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Добавить график к сетке" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Нет" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Возобновить монитор" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Приостановить монитор" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "Включены переменные general_log и slow_query_log." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "Включена переменная general_log." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "Включена переменная slow_query_log." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "Отключены переменные slow_query_log и general_log." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "Переменная log_output не установлена для таблицы." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "Переменная log_output установлена для таблицы." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1309,12 +1282,12 @@ msgstr "" "установить переменную long_query_time на 0-2 секунды, в зависимости от вашей " "системы." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Переменная long_query_time установлена в %d секунд." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1323,30 +1296,30 @@ msgstr "" "состояние при перезагрузке сервера:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Установить log_output в %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Включить %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Отключить %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Установить long_query_time в %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1354,53 +1327,53 @@ msgstr "" "Вы не можете изменить значения данных переменных. Пожалуйста, войдите под " "учетной записью root, или свяжитесь с администратором базы данных." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Изменить настройки" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Заголовок графика" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Различия" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Разделено на %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Единица" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Из журнала медленных запросов" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Из основного журнала" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Анализ журналов" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Анализ и загрузка журналов. Ждите, может занять какое-то время." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Отменить запрос" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1411,7 +1384,7 @@ msgstr "" "SQL запрос, таким образом другие атрибуты запросов, как время запуска, могут " "отличаться." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1421,101 +1394,101 @@ msgstr "" "той же таблицы так же группируются вместе, в независимости от заносимых " "данных." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Данные журналов загружены. Запросы выполненные в данный промежуток времени:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Перейти к таблице журнала" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Данные не найдены" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Анализ журнала пройден, но данные за выбранный промежуток времени не найдены." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Анализ…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Анализ результатов" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Время" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Полное время:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Профилирование результатов" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Таблица" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "График" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Редактировать график" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Серии" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Параметры фильтра таблицы журнала" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Фильтр" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Фильтровать запросы по строке, либо регулярному выражению:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Группировать запросы с игнорированием переменных данных в условии WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Сумма сгруппированных строк:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Всего:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Загрузка журналов" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Обновление монитора завершилось ошибкой" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1525,253 +1498,255 @@ msgstr "" "может быть истекшая сессия. Перезагрузка страницы и последующий ввод данных " "учетной записи, должны решить проблему." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Перезагрузка страницы" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Затронуто строк:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Ошибка при разборе конфигурационного файла. Не корректный код JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Ошибка построения сетки графика из импортированной конфигурации. Сброшено на " "изначальную конфигурацию…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Импорт настроек монитора" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Пожалуйста, выберите файл, который хотите импортировать" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Анализ запроса" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Системный советник" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Возможные проблемы производительности" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Проблема" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Рекомендация" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Подробности правил" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Обоснование" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Использованная переменная / формула" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Отмена" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Загрузка" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Обработка запроса" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Ошибка при обработке запроса" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Код ошибки: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Текст ошибки: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Удаление столбца" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Добавление первичного ключа" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Кликните для сокрытия данного уведомления" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Переименование базы данных" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Перезагрузка базы данных" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Копирование базы данных" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Смена кодировки" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "У таблицы должен быть, как минимум, один столбец" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Вставить таблицу" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Скрыть индексы" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Отображать индексы" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Проверка внешних ключей:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Включено)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Отключено)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Поиск" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Скрыть результаты поиска" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Отобразить результаты поиска" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Просмотр" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Удаление" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Определение хранимой функции должно содержать выражение RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Значения для столбца %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Значения для новых столбцов" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Вставьте каждое значение в отдельное поле" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Добавить %d значение(й)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Замечание: если файл содержит множество таблиц, они будут объединены в одну" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Скрыть поле запроса" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Отобразить поле запроса" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Изменить" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Время выполнения запроса" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1780,92 +1755,92 @@ msgstr "Число %d не является правильным номером msgid "Save" msgstr "Сохранить" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Скрыть параметры поиска" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Поиск с приближением" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Каждая точка представляет строку данных." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Задержание курсора над точкой отобразит ее название." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Для увеличения, выберите часть диаграммы мышкой." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Кликните ссылку сброса увеличения для возвращения к исходному состоянию." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Кликните точку данных для просмотра или редактирования строки данных." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Можно изменить размер участка перетащив его вдоль нижнего правого угла." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Выберите два столбца" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Выберите два различных столбца" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Результаты запроса" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Копировать" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Добавить столбцы" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1873,15 +1848,20 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Добавить параметр для столбца " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Для отмены редактирования нажмите кнопку Esc" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1889,27 +1869,27 @@ msgstr "" "Вы отредактировали некоторые данные, но изменения не были сохранены. Вы " "уверены, что хотите покинуть данную страницу без сохранения данных?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Изменить порядок перетаскиванием" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Кликнуть для сортировки" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Кликнуть для снятия/установки отметки" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Для копирования имени поля сделайте двойной щелчок мышкой" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Кликните выпадающую стрелку
для переключения видимости столбцов" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1918,7 +1898,7 @@ msgstr "" "могут не работать функции связанные с редактированием сетки, выставления " "галочки, ссылки редактирования, копирования и удаления." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1926,62 +1906,62 @@ msgstr "" "Большинство столбцов можно отредактировать
дважды кликнув прямо на их " "содержимом." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Возможно редактировать большинство столбцов
кликнув прямо на их " "содержимом." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Перейти к ссылке" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Скопировать имя столбца" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой " "мышки." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Вывести строку(и) данных" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Ещё" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Раскрыть панель" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Скрыть панель" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запрошенная страница не найдена в истории, возможно, истекло время ее " "хранения." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1991,266 +1971,266 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "актуально" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Готово" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Сегодня" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Январь" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Февраль" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Март" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Апрель" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Май" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Июнь" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Июль" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Август" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Сентябрь" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Октябрь" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Ноябрь" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Дек" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Пятница" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Нед." #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Час" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Минута" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Секунда" @@ -2304,16 +2284,16 @@ msgstr "" "Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2" "$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "в секунду" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "в минуту" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "в час" @@ -2341,7 +2321,7 @@ msgstr "Размер шрифта" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "По возрастанию" @@ -2350,7 +2330,7 @@ msgstr "По возрастанию" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "По убыванию" @@ -2466,7 +2446,7 @@ msgstr "Удалить соответствия для таблицы %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Удалить" @@ -2636,7 +2616,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Завершить" @@ -2693,12 +2673,13 @@ msgstr "Отметить все" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" @@ -2706,7 +2687,7 @@ msgstr "Экспорт" msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2795,16 +2776,16 @@ msgstr "Невозможно прочесть (переместить) загр msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Для полноценной работы необходима поддержка Javascript браузером" @@ -2816,21 +2797,21 @@ msgstr "Индекс не определен!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Индексы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Уникальных элементов" @@ -2840,13 +2821,13 @@ msgstr "Уникальных элементов" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Сравнение" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Комментарий" @@ -2889,7 +2870,7 @@ msgstr "Представление" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -2962,34 +2943,35 @@ msgstr "События" msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Пользователи" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Бинарный журнал" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Репликация" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Расширения" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Типы таблиц" @@ -3040,6 +3022,104 @@ msgstr "Недавние таблицы" msgid "There are no recent tables" msgstr "Отсутствуют недавние таблицы" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-запрос" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Обработчик" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Кеш запросов" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Потоки" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Временные данные" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Отложенные вставки" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Кеш индекса" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Объединения" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Сортировка" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Таблицы" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Координатор транзакций" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файлов" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Закрыть все таблицы" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Список открытых таблиц" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Информация о подчиненных серверах" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Показать состояние головного сервера" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Информация о состоянии сервера репликации" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Дефрагментировать кеш запросов" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Состояние InnoDB" + +#: 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." @@ -3137,7 +3217,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Значение" @@ -3589,11 +3669,6 @@ msgstr "Перечисление, выбор из списка определе msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-запрос" - #: libraries/Util.class.php:710 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:292 @@ -3628,7 +3703,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Обновить" @@ -3725,13 +3800,6 @@ msgstr "Печать" msgid "shared" msgstr "общий" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Таблицы" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3772,11 +3840,11 @@ msgstr "Проверить привилегии для базы данных &qu msgid "Check Privileges" msgstr "Проверить привилегии" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Ошибка при чтении конфигурационного файла" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3784,12 +3852,12 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3797,41 +3865,41 @@ msgstr "" "Директива [code]$cfg['PmaAbsoluteUri'][/code] ДОЛЖНА быть установлена в " "конфигурационном файле!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "попытка перезаписи GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "возможная уязвимость" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "определена числовая клавиша" @@ -6055,8 +6123,8 @@ msgstr "" "При наличии выделенного имени пользователя, пропишите его здесь (изначально " "используется [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Пользователь" @@ -6713,10 +6781,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Состояние InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Использование" @@ -7412,16 +7476,16 @@ msgstr[0] "найден еще %s результат" msgstr[1] "найдено еще %s результата" msgstr[2] "найдено еще %s результатов" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "фильтровать базы данных по имени" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Очистить Быстрый Фильтр" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "фильтровать пункты по имени" @@ -7517,17 +7581,17 @@ msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Только структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структура и данные" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Только данные" @@ -7921,8 +7985,7 @@ msgstr "Отобразить MIME типы" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -7970,7 +8033,8 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:99 msgid "Additional custom header comment (\\n splits lines):" -msgstr "Добавить в заголовок собственный комментарий (\\n для разделения строк):" +msgstr "" +"Добавить в заголовок собственный комментарий (\\n для разделения строк):" #: libraries/plugins/export/ExportSql.class.php:106 msgid "" @@ -8520,7 +8584,7 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Переменная" @@ -9035,7 +9099,7 @@ msgstr "Атрибуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Дополнительно" @@ -9739,7 +9803,7 @@ msgstr "Добавить префикс таблицы" msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Нет" @@ -10086,7 +10150,7 @@ msgstr "Обратное отображение" msgid "Toggle relation lines" msgstr "Переключение линий связи" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" @@ -10152,31 +10216,31 @@ msgstr "Страница успешно создана" msgid "Page creation failed" msgstr "Ошибка создания страницы" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Импортировать с выбранной страницы" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Экспортировать на выбранную страницу" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Создать страницу и экспортировать в нее" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Название новой страницы: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "рекомендуемый" @@ -10296,15 +10360,11 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файлов" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -10389,7 +10449,7 @@ msgstr "Модуль" msgid "Library" msgstr "Библиотека" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Версия" @@ -10448,10 +10508,6 @@ msgstr "Головной сервер успешно изменён на %s" msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Показать состояние головного сервера" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" @@ -10595,12 +10651,12 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10608,119 +10664,86 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status.php:657 -msgid "Handler" -msgstr "Обработчик" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Кеш запросов" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Сервер MySQL работает %1$s. Запущен %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Потоки" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Данный MySQL сервер настроен головным и подчиненным в процессе " +"репликации." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Временные данные" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Отложенные вставки" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:663 -msgid "Key cache" -msgstr "Кеш индекса" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Для получения подробной информации о состоянии репликации сервера, " +"пожалуйста, перейдите в раздел репликации." -#: server_status.php:664 -msgid "Joins" -msgstr "Объединения" +#: server_status.php:122 +msgid "Replication status" +msgstr "Состояние репликации" -#: server_status.php:666 -msgid "Sorting" -msgstr "Сортировка" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"На загруженном сервере, побайтовые счетчики могут переполняться, таким " +"образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Координатор транзакций" +#: server_status.php:149 +msgid "Received" +msgstr "Принято" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Закрыть все таблицы" +#: server_status.php:168 +msgid "Sent" +msgstr "Отправлено" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Список открытых таблиц" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Максимально одновременных" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Информация о подчиненных серверах" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Неудачных попыток" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Информация о состоянии сервера репликации" +#: server_status.php:253 +msgid "Aborted" +msgstr "Прерваны" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Дефрагментировать кеш запросов" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Текущее состояние MySQL" +#: server_status.php:329 +msgid "Command" +msgstr "Команда" -#: server_status.php:830 -msgid "All status variables" -msgstr "Все переменные состояния" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Монитор" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Советчик" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Количество точек данных: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Частота обновления: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Фильтры" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Содержит слово:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Выводить только предупреждающие значения" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Фильтр по категории..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Выводить неотформатированные значения" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Связанные ссылки:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Запустить анализ" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10728,7 +10751,7 @@ msgstr "" "Система советов может предоставлять рекомендации по переменным сервера, " "основываясь на анализе их статуса." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10737,7 +10760,7 @@ msgstr "" "Однако, данная система предоставляет рекомендации основываясь на " "примитивных подсчетах и может быть не применима к вашему серверу." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10747,7 +10770,7 @@ msgstr "" "(прочитайте документацию) и знаете как отменить настройки. Ошибочная " "настройка может отрицательно сказаться на производительности." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10758,842 +10781,39 @@ msgstr "" "к исходным настройкам, если не было замечено положительного улучшения в " "работе." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Вопросов начиная с запуска: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Характеристика" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "Кол-во" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Сетевой трафик с момента запуска: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Сервер MySQL работает %1$s. Запущен %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Данный MySQL сервер настроен головным и подчиненным в процессе " -"репликации." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "Данный сервер настроен головным в процессе репликации." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Данный сервер настроен подчиненным в процессе репликации." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Для получения подробной информации о состоянии репликации сервера, " -"пожалуйста, перейдите в раздел репликации." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Состояние репликации" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"На загруженном сервере, побайтовые счетчики могут переполняться, таким " -"образом, статистика, передаваемая MySQL-сервером, может быть некорректной." - -#: server_status.php:1191 -msgid "Received" -msgstr "Принято" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Отправлено" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Максимально одновременных" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Неудачных попыток" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Прерваны" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Команда" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Количество прерванных соединений в связи с потерей связи и неверно закрытым " -"соединением клиента." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Количество неудавшихся попыток соединения к серверу MySQL." - -#: server_status.php:1529 -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 "" -"Количество транзакций, использовавших кеш бинарного журнала и превысивших " -"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " -"были сохранены во временном файле." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Количество транзакций, использовавших кеш бинарного журнала." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." - -#: server_status.php:1532 -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 "" -"Количество временных таблиц, автоматически созданных сервером на диске, во " -"время выполнения SQL-выражений. Если значение Created_tmp_disk_tables " -"велико, следует увеличить значение переменной tmp_table_size, чтобы " -"временные таблицы располагались в памяти, а не на жестком диске." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Количество временных таблиц в памяти, созданных сервером автоматически в " -"процессе выполнения SQL-выражений." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " -"например, из-за дублирования ключей." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "Количество обрабатываемых запросов INSERT DELAYED." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" -"Количество строк записанных в режиме отложенной вставки данных (INSERT " -"DELAYED)." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Количество выполненных команд FLUSH." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Количество внутренних команд COMMIT." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Количество запросов на удаление строк из таблицы." - -#: server_status.php:1541 -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 "" -"MySQL-сервер может запрашивать NDB Cluster о существовании таблиц с " -"определенным именем. Этот процесс называется обнаружением. Handler_discover " -"- число обнаружений таблиц." - -#: server_status.php:1542 -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 "" -"Количество запросов на чтение первой записи из индекса. При большом значении " -"переменной, скорее всего, сервер многократно выполняет полное сканирование " -"индекса. Например, SELECT col1 FROM foo, при условии, что col1 " -"проиндексирован." - -#: server_status.php:1543 -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 "" -"Количество запросов на чтение строк, построенных на значении ключа. Большое " -"значение переменной говорит о том, что запросы и таблицы проиндексированы " -"надлежащим образом." - -#: server_status.php:1544 -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 "" -"Количество запросов на чтение следующей строки в порядке расположения " -"индексов. Значение увеличивается при запросе индексного столбца с " -"ограничением по размеру или при сканировании индекса." - -#: server_status.php:1545 -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 "" -"Количество запросов на чтение предыдущей строки при ниспадающей сортировке " -"индекса. Обычно используется при оптимизации: ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Количество запросов, на чтение строки, основанных на ее позиции. Большое " -"значение переменной может быть обусловлено частым выполнением запросов " -"использующих сортировку результата, выполнением большого числа запросов " -"требующих полного сканирования таблиц, наличием объединений не использующих " -"индексы надлежащим образом." - -#: server_status.php:1547 -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 "" -"Количество запросов на чтение следующей строки из файла данных. Данное " -"значение будет высоким, при частом сканировании таблиц. Обычно это означает, " -"что таблицы не проиндексированы надлежащим образом или запросы не используют " -"преимущества индексов." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Количество внутренних команд ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Количество запросов на обновление строк в таблице." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Количество запросов на вставку строк в таблицу." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" -"Количество страниц содержащих данные ("грязные" или "" -"чистые")." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Текущее количество "грязных" страниц." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"Количество страниц буферного пула, над которыми был осуществлен процесс " -"очистки (FLUSH)." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Количество свободных страниц." - -#: server_status.php:1555 -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 "" -"Количество станиц заблокированных в буферном пуле InnoDB. Над этими " -"страницами осуществляется процесс чтения или записи, либо они не могут быть " -"очищены или удалены по какой-либо другой причине." - -#: server_status.php:1556 -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 "" -"Количество страниц занятых вследствие выделения под административные " -"процессы, такие как: блокировка строки или адаптивное хеширование индекса. " -"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Общий размер буферного пула (в страницах)." - -#: server_status.php:1558 -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 "" -"Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " -"происходит, когда запрос сканирует большую часть таблицы в случайном порядке." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Количество последовательных опережающих чтений, инициированных InnoDB. Это " -"происходит, когда InnoDB выполняет полное последовательное сканирование " -"таблицы." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Количество последовательных запросов на чтение, которые InnoDB не смог " -"выполнить из буферного пула и использовал постраничное чтение." - -#: server_status.php:1562 -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 "" -"Обычно, записи в буферный пул InnoDB выполняются в фоновом режиме. Однако, " -"если необходимо чтение или создание страницы при отсутствии чистых таковых, " -"сперва требуется ожидание их очистки. Данный счетчик показывает число таких " -"ожиданий. Если размер буферного пула был установлен должным образом, " -"значение будет небольшим." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Количество записей, выполненных в буферный пул InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Количество операций fsync(), выполненных на данный момент." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Текущее количество незавершенных операций fsync()." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Текущее количество незавершенных операций чтения." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Текущее количество незавершенных операций записи." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Сумма данных (в байтах), прочитанных на данный момент." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Общее количество операций чтения данных." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Общее количество операций записи данных." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Сумма данных (в байтах), записанных на данный момент." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Количество записей в буфер doublewrite, и количество созданных для этого " -"страниц." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Количество записей в буфер doublewrite, и количество созданных для этого " -"страниц." - -#: server_status.php:1574 -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 "" -"Количество ожиданий очистки журнального буфера, вследствие малого его " -"размера." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Количество запросов на запись в журнал." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Количество физических записей в файл журнала." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" -"Количество незавершенных попыток синхронизации с помощью операции fsync." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Количество незавершенных запросов на запись в журнал." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Объем данных в байтах, записанных в файл журнала." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Количество созданных страниц." - -#: server_status.php:1582 -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 "" -"Размер страницы, компилируемой в InnoDB (по умолчанию 16Кб). Многие значения " -"приводятся в страницах, но зная объем страницы, можно перевести эти значения " -"в байты." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Количество прочитанных страниц." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Количество записанных страниц." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Текущее количество ожиданий блокировок строк." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Общее количество ожиданий блокировки строк." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Количество строк, удаленных из таблиц InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Количество строк, добавленных в таблицы InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Количество строк, прочитанных из таблиц InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Количество строк, обновленных в таблицах InnoDB." - -#: server_status.php:1594 -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 "" -"Количество блоков в кеше индекса, которые были изменены, но еще не записаны " -"на диск. Данный параметр также известен как Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " -"определить как полно используется кеш индекса." - -#: server_status.php:1596 -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 "" -"Количество используемых блоков в кеше индекса. Данное значение - " -"максимальное количество блоков, использованных одновременно." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" -"Процентное соотношение использованного кеша ключей (подсчитанное значение)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Количество запросов на чтение блока из кеша индексов." - -#: server_status.php:1599 -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 "" -"Количество физических операций чтения блока индексов с диска. Если значение " -"велико - скорее всего, задано слишком маленькое значение переменной " -"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " -"как: Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Промахи кеша ключей рассчитываются, как соотношение физических чтений " -"сравнительно к запросам чтения (подсчитанное значение)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Количество запросов на запись блока в кеш индекса." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Количество физических операций записи блока индексов на диск." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Процентное соотношение физических процессов записи сравнительно к запросам " -"записи (подсчитанное значение)" - -#: server_status.php:1604 -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 "" -"Общие затраты последнего компилированного запроса, рассчитанные " -"оптимизатором запросов. Полезно при сравнении эффективности различных схем " -"одного запроса. Изначальное нулевое значение, означает, что процесса " -"компиляции запроса еще не было." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Максимальное количество соединений использованных одновременно начиная с " -"запуска сервера." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Общее количество открывавшихся таблиц. При большом значении переменной " -"рекомендуется увеличить размер кеша таблиц (table_cache)." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Количество открытых файлов." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" -"Количество открытых потоков (в основном применяется к файлам журналов)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Количество открытых таблиц." - -#: server_status.php:1611 -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 "" -"Количество свободных блоков памяти в кеше запроса. Высокое значение может " -"указывать на фрагментацию, проблема которой решается выполнением запроса " -"FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Объем свободной памяти для кеша запросов." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" -"Количество "попаданий" в кеш запросов, т.е. сколько запросов было " -"удовлетворено запросами, находящимися в кеше." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Количество запросов, добавленных в кеш запросов." - -#: server_status.php:1615 -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 "" -"Количество запросов, удаленных из кеша для освобождения памяти под " -"кеширование новых запросов. Эта информация может помочь при настройке " -"размера кеша запросов. Кеш запросов использует стратегию LRU (дольше всего " -"не использующиеся страницы заменяются новыми) при принятии решения об " -"удаления запроса из кеша." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Количество запросов, которые оказались некешируемыми или для которых " -"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Количество запросов, зарегистрированных в кеше." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." - -#: server_status.php:1620 -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 "" -"Количество запросов-объединений, выполненных без использования индексов. " -"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" -"Количество запросов-объединений, выполненных с использованием поиска по " -"диапазону в таблице, на которую делается ссылка." - -#: server_status.php:1622 -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 "" -"Количество запросов-объединений, выполненных с использованием поиска по " -"диапазону для выборки строк из вторичной таблицы. Если значение переменной " -"не равно 0, рекомендуется проверить индексы таблиц." - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Количество запросов-объединений, выполненных с использованием поиска по " -"диапазону в первой таблице. Обычно значение этой переменной не критично, " -"даже если оно велико." - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" -"Количество запросов-объединений, выполненных с использованием полного поиска " -"по первой таблице." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Количество временных таблиц, открытых в настоящий момент подчиненным потоком." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Общее количество повторов транзакций подчиненным потоком репликации с " -"момента запуска." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Присваивается значение ON, если данный сервер функционирует как подчиненный, " -"подключенный к главному." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Количество потоков, на создание которых потребовалось более чем " -"slow_launch_time секунд." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Количество запросов, выполнявшихся более long_query_time секунд." - -#: server_status.php:1630 -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 "" -"Количество проходов, сделанных алгоритмом сортировки. При большом значении " -"следует увеличить значение переменной sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" -"Количество операций сортировки, выполненных с использованием диапазона." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Количество отсортированных строк." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" -"Количество операций сортировки, выполненных с использованием полного " -"сканирования таблицы." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" -"Количество запросов на блокировку таблицы, которые были удовлетворены " -"немедленно." - -#: server_status.php:1635 -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 "" -"Количество запросов на блокировку таблицы, которые были удовлетворены только " -"после определенного периода ожидания. Если значение велико и есть проблемы с " -"производительностью, необходимо сначала оптимизировать свои запросы, а затем " -"разбить свою таблицу (или таблицы) или использовать репликацию." - -#: server_status.php:1636 -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 "" -"Количество потоков в потоковом кеше. Частоту успешных обращений к кешу можно " -"вычислить по формуле Threads_created/Connections. Если это значение окрашено " -"в красный цвет - вам следует увеличить thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Количество открытых текущих соединений." - -#: server_status.php:1638 -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 "" -"Полное количество потоков, созданных для поддержания соединений с клиентом. " -"При большом значении переменной, можно увеличить значение переменной " -"thread_cache_size (это не даст существенного выигрыша в производительности, " -"при хорошей реализации потоков)." - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Количество процессов, находящихся в активном состоянии." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Запустить монитор" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Инструкции/Настройки" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Завершено редактирование графиков" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Добавить график" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Упорядочить/отредактировать графики" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Столбцы графика" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Расположение гарфика" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11601,15 +10821,15 @@ msgstr "" "Расположения графиков сохраняются в локальном хранилище браузера. При " "наличии сложной настройки, вы можете осуществить ее экспорт." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Восстановить изначальное значение" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Инструкции мониторинга" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11623,7 +10843,7 @@ msgstr "" "general_log. Будьте внимательны, включение general_log производит увеличение " "хранимых данных и увеличивает нагрузку на сервер до 15%." -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11635,11 +10855,11 @@ msgstr "" "phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " "Однако, вы все еще можете использовать функции графиков сервера." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Использование мониторинга:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11650,7 +10870,7 @@ msgstr "" "настройках, или удалить график используя соответствующую иконку на каждом из " "них." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11662,11 +10882,11 @@ msgstr "" "будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " "любые выражения SELECT, для их последующего анализа." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Примечание:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11679,79 +10899,79 @@ msgstr "" "небольшие промежутки времени, а так же отключать general_log и очищать его " "таблицу, когда мониторинг больше не требуется." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Заготовки графиков" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Переменные состояния" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Выберите серии:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Частый мониторинг" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "или задайте имя переменной:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Отобразить в виде значения разницы" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Применить делитель" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Добавить к значениям единицу измерения" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Добавить данные серии" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Очистить серии" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Серии в графике:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Статистика журналов" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Выбранный диапазон времени:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Выберите из какого журнала должна генерироваться статистика." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Результаты сгруппированы по тексту запроса." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Анализ запроса" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11759,7 +10979,7 @@ msgstr[0] "%d секунда" msgstr[1] "%d секунды" msgstr[2] "%d секунд" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11767,6 +10987,758 @@ msgstr[0] "%d минута" msgstr[1] "%d минуты" msgstr[2] "%d минут" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Вопросов начиная с запуска: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Характеристика" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "Кол-во" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Фильтры" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Содержит слово:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Выводить только предупреждающие значения" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Фильтр по категории..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Выводить неотформатированные значения" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Связанные ссылки:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Количество прерванных соединений в связи с потерей связи и неверно закрытым " +"соединением клиента." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Количество неудавшихся попыток соединения к серверу MySQL." + +#: server_status_variables.php:334 +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 "" +"Количество транзакций, использовавших кеш бинарного журнала и превысивших " +"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " +"были сохранены во временном файле." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Количество транзакций, использовавших кеш бинарного журнала." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." + +#: server_status_variables.php:346 +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 "" +"Количество временных таблиц, автоматически созданных сервером на диске, во " +"время выполнения SQL-выражений. Если значение Created_tmp_disk_tables " +"велико, следует увеличить значение переменной tmp_table_size, чтобы " +"временные таблицы располагались в памяти, а не на жестком диске." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Количество временных таблиц в памяти, созданных сервером автоматически в " +"процессе выполнения SQL-выражений." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " +"например, из-за дублирования ключей." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "Количество обрабатываемых запросов INSERT DELAYED." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" +"Количество строк записанных в режиме отложенной вставки данных (INSERT " +"DELAYED)." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Количество выполненных команд FLUSH." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Количество внутренних команд COMMIT." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Количество запросов на удаление строк из таблицы." + +#: server_status_variables.php:381 +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 "" +"MySQL-сервер может запрашивать NDB Cluster о существовании таблиц с " +"определенным именем. Этот процесс называется обнаружением. Handler_discover " +"- число обнаружений таблиц." + +#: server_status_variables.php:387 +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 "" +"Количество запросов на чтение первой записи из индекса. При большом значении " +"переменной, скорее всего, сервер многократно выполняет полное сканирование " +"индекса. Например, SELECT col1 FROM foo, при условии, что col1 " +"проиндексирован." + +#: server_status_variables.php:393 +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 "" +"Количество запросов на чтение строк, построенных на значении ключа. Большое " +"значение переменной говорит о том, что запросы и таблицы проиндексированы " +"надлежащим образом." + +#: server_status_variables.php:398 +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 "" +"Количество запросов на чтение следующей строки в порядке расположения " +"индексов. Значение увеличивается при запросе индексного столбца с " +"ограничением по размеру или при сканировании индекса." + +#: server_status_variables.php:403 +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 "" +"Количество запросов на чтение предыдущей строки при ниспадающей сортировке " +"индекса. Обычно используется при оптимизации: ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Количество запросов, на чтение строки, основанных на ее позиции. Большое " +"значение переменной может быть обусловлено частым выполнением запросов " +"использующих сортировку результата, выполнением большого числа запросов " +"требующих полного сканирования таблиц, наличием объединений не использующих " +"индексы надлежащим образом." + +#: server_status_variables.php:414 +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 "" +"Количество запросов на чтение следующей строки из файла данных. Данное " +"значение будет высоким, при частом сканировании таблиц. Обычно это означает, " +"что таблицы не проиндексированы надлежащим образом или запросы не используют " +"преимущества индексов." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Количество внутренних команд ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Количество запросов на обновление строк в таблице." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Количество запросов на вставку строк в таблицу." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" +"Количество страниц содержащих данные ("грязные" или "" +"чистые")." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Текущее количество "грязных" страниц." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"Количество страниц буферного пула, над которыми был осуществлен процесс " +"очистки (FLUSH)." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Количество свободных страниц." + +#: server_status_variables.php:443 +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 "" +"Количество станиц заблокированных в буферном пуле InnoDB. Над этими " +"страницами осуществляется процесс чтения или записи, либо они не могут быть " +"очищены или удалены по какой-либо другой причине." + +#: server_status_variables.php:448 +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 "" +"Количество страниц занятых вследствие выделения под административные " +"процессы, такие как: блокировка строки или адаптивное хеширование индекса. " +"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Общий размер буферного пула (в страницах)." + +#: server_status_variables.php:458 +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 "" +"Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " +"происходит, когда запрос сканирует большую часть таблицы в случайном порядке." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Количество последовательных опережающих чтений, инициированных InnoDB. Это " +"происходит, когда InnoDB выполняет полное последовательное сканирование " +"таблицы." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Количество последовательных запросов на чтение, которые InnoDB не смог " +"выполнить из буферного пула и использовал постраничное чтение." + +#: server_status_variables.php:474 +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 "" +"Обычно, записи в буферный пул InnoDB выполняются в фоновом режиме. Однако, " +"если необходимо чтение или создание страницы при отсутствии чистых таковых, " +"сперва требуется ожидание их очистки. Данный счетчик показывает число таких " +"ожиданий. Если размер буферного пула был установлен должным образом, " +"значение будет небольшим." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Количество записей, выполненных в буферный пул InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Количество операций fsync(), выполненных на данный момент." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Текущее количество незавершенных операций fsync()." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Текущее количество незавершенных операций чтения." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Текущее количество незавершенных операций записи." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Сумма данных (в байтах), прочитанных на данный момент." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Общее количество операций чтения данных." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Общее количество операций записи данных." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Сумма данных (в байтах), записанных на данный момент." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Количество записей в буфер doublewrite, и количество созданных для этого " +"страниц." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Количество записей в буфер doublewrite, и количество созданных для этого " +"страниц." + +#: server_status_variables.php:516 +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 "" +"Количество ожиданий очистки журнального буфера, вследствие малого его " +"размера." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Количество запросов на запись в журнал." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Количество физических записей в файл журнала." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" +"Количество незавершенных попыток синхронизации с помощью операции fsync." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Количество незавершенных запросов на запись в журнал." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Объем данных в байтах, записанных в файл журнала." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Количество созданных страниц." + +#: server_status_variables.php:541 +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 "" +"Размер страницы, компилируемой в InnoDB (по умолчанию 16Кб). Многие значения " +"приводятся в страницах, но зная объем страницы, можно перевести эти значения " +"в байты." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Количество прочитанных страниц." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Количество записанных страниц." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Текущее количество ожиданий блокировок строк." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Общее количество ожиданий блокировки строк." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Количество строк, удаленных из таблиц InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Количество строк, добавленных в таблицы InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Количество строк, прочитанных из таблиц InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Количество строк, обновленных в таблицах InnoDB." + +#: server_status_variables.php:579 +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 "" +"Количество блоков в кеше индекса, которые были изменены, но еще не записаны " +"на диск. Данный параметр также известен как Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " +"определить как полно используется кеш индекса." + +#: server_status_variables.php:588 +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 "" +"Количество используемых блоков в кеше индекса. Данное значение - " +"максимальное количество блоков, использованных одновременно." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" +"Процентное соотношение использованного кеша ключей (подсчитанное значение)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Количество запросов на чтение блока из кеша индексов." + +#: server_status_variables.php:599 +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 "" +"Количество физических операций чтения блока индексов с диска. Если значение " +"велико - скорее всего, задано слишком маленькое значение переменной " +"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " +"как: Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Промахи кеша ключей рассчитываются, как соотношение физических чтений " +"сравнительно к запросам чтения (подсчитанное значение)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Количество запросов на запись блока в кеш индекса." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Количество физических операций записи блока индексов на диск." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Процентное соотношение физических процессов записи сравнительно к запросам " +"записи (подсчитанное значение)" + +#: server_status_variables.php:619 +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 "" +"Общие затраты последнего компилированного запроса, рассчитанные " +"оптимизатором запросов. Полезно при сравнении эффективности различных схем " +"одного запроса. Изначальное нулевое значение, означает, что процесса " +"компиляции запроса еще не было." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Максимальное количество соединений использованных одновременно начиная с " +"запуска сервера." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Общее количество открывавшихся таблиц. При большом значении переменной " +"рекомендуется увеличить размер кеша таблиц (table_cache)." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Количество открытых файлов." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" +"Количество открытых потоков (в основном применяется к файлам журналов)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Количество открытых таблиц." + +#: server_status_variables.php:645 +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 "" +"Количество свободных блоков памяти в кеше запроса. Высокое значение может " +"указывать на фрагментацию, проблема которой решается выполнением запроса " +"FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Объем свободной памяти для кеша запросов." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" +"Количество "попаданий" в кеш запросов, т.е. сколько запросов было " +"удовлетворено запросами, находящимися в кеше." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Количество запросов, добавленных в кеш запросов." + +#: server_status_variables.php:659 +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 "" +"Количество запросов, удаленных из кеша для освобождения памяти под " +"кеширование новых запросов. Эта информация может помочь при настройке " +"размера кеша запросов. Кеш запросов использует стратегию LRU (дольше всего " +"не использующиеся страницы заменяются новыми) при принятии решения об " +"удаления запроса из кеша." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Количество запросов, которые оказались некешируемыми или для которых " +"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Количество запросов, зарегистрированных в кеше." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." + +#: server_status_variables.php:679 +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 "" +"Количество запросов-объединений, выполненных без использования индексов. " +"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" +"Количество запросов-объединений, выполненных с использованием поиска по " +"диапазону в таблице, на которую делается ссылка." + +#: server_status_variables.php:686 +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 "" +"Количество запросов-объединений, выполненных с использованием поиска по " +"диапазону для выборки строк из вторичной таблицы. Если значение переменной " +"не равно 0, рекомендуется проверить индексы таблиц." + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Количество запросов-объединений, выполненных с использованием поиска по " +"диапазону в первой таблице. Обычно значение этой переменной не критично, " +"даже если оно велико." + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" +"Количество запросов-объединений, выполненных с использованием полного поиска " +"по первой таблице." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Количество временных таблиц, открытых в настоящий момент подчиненным потоком." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Общее количество повторов транзакций подчиненным потоком репликации с " +"момента запуска." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Присваивается значение ON, если данный сервер функционирует как подчиненный, " +"подключенный к главному." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Количество потоков, на создание которых потребовалось более чем " +"slow_launch_time секунд." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Количество запросов, выполнявшихся более long_query_time секунд." + +#: server_status_variables.php:717 +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 "" +"Количество проходов, сделанных алгоритмом сортировки. При большом значении " +"следует увеличить значение переменной sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" +"Количество операций сортировки, выполненных с использованием диапазона." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Количество отсортированных строк." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" +"Количество операций сортировки, выполненных с использованием полного " +"сканирования таблицы." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" +"Количество запросов на блокировку таблицы, которые были удовлетворены " +"немедленно." + +#: server_status_variables.php:734 +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 "" +"Количество запросов на блокировку таблицы, которые были удовлетворены только " +"после определенного периода ожидания. Если значение велико и есть проблемы с " +"производительностью, необходимо сначала оптимизировать свои запросы, а затем " +"разбить свою таблицу (или таблицы) или использовать репликацию." + +#: server_status_variables.php:740 +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 "" +"Количество потоков в потоковом кеше. Частоту успешных обращений к кешу можно " +"вычислить по формуле Threads_created/Connections. Если это значение окрашено " +"в красный цвет - вам следует увеличить thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Количество открытых текущих соединений." + +#: server_status_variables.php:748 +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 "" +"Полное количество потоков, созданных для поддержания соединений с клиентом. " +"При большом значении переменной, можно увеличить значение переменной " +"thread_cache_size (это не даст существенного выигрыша в производительности, " +"при хорошей реализации потоков)." + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Количество процессов, находящихся в активном состоянии." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Не удалось установить переменную" @@ -12369,26 +12341,26 @@ msgstr "Ограничение внешнего ключа" msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Слежение за %1$s было выключено на версии %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Слежение за %1$s было включено на версии %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12397,117 +12369,117 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Ошибка запроса" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Вывести %1$s с датой от %2$s до %3$s пользователя %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Удалить строку данных слежения за таблицей" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Нет данных" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Выгрузка SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Показать версии" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Выключить слежение за %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Выключить" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Включить слежение за %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Включить" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Создать версию %1$s из %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Создать версию" @@ -12664,11 +12636,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "Переменная long_query_time установлена в %d секунд." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Запись журналов медленных запросов" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Отключен журнал медленных запросов." @@ -12685,15 +12657,34 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "Переменная log_slow_queries установлена в 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Включите запись журналов медленных запросов установив переменную " +"{log_slow_queries} в 'ON'. Это поможет в поиске медленных, недостаточно " +"оптимизированных запросов." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "Переменная log_slow_queries установлена в 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Серии выпусков" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Версия сервера MySQL ниже 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12701,21 +12692,21 @@ msgstr "" "В связи с улучшенной производительностью MySQL 5.1 и еще более выдающимися " "результатами MySQL 5.5, вам рекомендуется обновить свою версию MySQL." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Текущая версия: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Промежуточная версия" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Версия менее 5.1.30 (первый стабильный выпуск 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12724,24 +12715,24 @@ msgstr "" "более выдающимися результатами MySQL 5.5, вам рекомендуется обновить свою " "версию MySQL." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Версия менее 5.5.8 (первый стабильный выпуск 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Необходимо обновить MySQL до стабильной версии 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Дистрибутив" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Версия собрана из исходников, не официальная сборка MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12752,41 +12743,41 @@ msgstr "" "применима только к официальной сборке MySQL, а не к пакетам из дистрибутивов " "(таким как RedHat, Debian/Ubuntu и так далее)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "В version_comment найдено слово 'source'" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "" "Документация MySQL в полной мере применима только к официальной сборке MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Документация Percona находится на http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "В version_comment найдено слово 'percona'" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Документация Drizzle находится на http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Строка версии (%s) соответствует схеме версии Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Архитектура MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL не был собран, как 64-битная программа." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12797,20 +12788,20 @@ msgstr "" "Возможно, вам следует рассмотреть возможность установки 64-битной версии " "MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Объем памяти доступной на данном хосте: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Кеш запросов отключен" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Кеш запросов не был включен." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12823,21 +12814,21 @@ msgstr "" "Примечание: При использовании memcached, игнорируйте данную " "рекомендацию." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "Переменная query_cache_size установлена в 0, или переменная query_cache_type " "установлена в 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Метод кеширования запросов" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Оптимальный метод кеширования." -#: libraries/advisory_rules.txt:157 +#: 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 вместо механизма кеширования запросов MySQL, в " "особенности при наличии нескольких подчиненных серверов." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12859,36 +12850,36 @@ msgstr "" "Кеширование запросов включено и сервер получает %d запросов в секунду. " "Данное правило срабатывает при поступлении более 100 запросов в секунду." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Эффективность кеширования запросов (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "Кеширование запросов работает недостаточно эффективно из-за низкой частоты " "успешных обращений." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Рассмотрите возможность увеличения {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Текущая частота успешных обращений кеширования запросов %s%% ниже 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Использование кеширования запросов" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Использовано менее 80%% кеша запросов." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12896,7 +12887,7 @@ msgstr "" "Это может быть вызвано низким значением переменной {query_cache_limit}. Так " "же, может помочь очистка кеша запросов." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12905,15 +12896,15 @@ msgstr "" "Текущее соотношение свободного кеша запросов по отношению к полному кешу " "запросов составляет %s%%. Значение должно быть выше 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Фрагментация кеша запросов" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Кеш запросов существенно фрагментирован." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12934,7 +12925,7 @@ msgstr "" "кеш по формуле: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12945,17 +12936,17 @@ msgstr "" "будет означать последовательное чередование свободных и занятых блоков. " "Данное значение должно быть ниже 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Очисток низкой памяти кеша запросов" -#: libraries/advisory_rules.txt:184 +#: 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:185 +#: 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 " @@ -12965,7 +12956,7 @@ msgstr "" "что накладные расходы на кеш увеличатся вместе с его размером, поэтому " "изменяйте значение небольшими шагами одновременно наблюдая за результатом." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12974,11 +12965,11 @@ msgstr "" "Соотношение удаленных запросов к добавленным запросам составляет %s%%. Чем " "ниже данное значение, тем лучше (порог срабатывания правила: 0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Максимальный размер кеша запросов" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12987,7 +12978,7 @@ msgstr "" "привести к заметной нагрузке, поэтому требуется внимательное поддержание " "состояния кеша." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12995,23 +12986,23 @@ msgstr "" "В зависимости от системного окружения, для повышения производительности " "может быть полезно уменьшение данного значения." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Текущий размер кеша запросов: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Минимальный размер результата кеша запросов" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Максимальный размер результата установленный в кеше запросов, по умолчанию " "составляет 1 MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -13033,20 +13024,20 @@ msgstr "" "обновлении таблиц), увеличение {query_cache_limit} может снизить " "эффективность." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit установлен на 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Процент сортировок вызывающих создание временных таблиц" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "" "Слишком большое количество сортировок вызывают создание временных таблиц." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -13054,7 +13045,7 @@ msgstr "" "Рассмотрите возможность увеличения sort_buffer_size и/или " "read_rnd_buffer_size, в зависимости от ограничения памяти вашей системы" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -13063,11 +13054,11 @@ msgstr "" "%s%% сортировок вызывает создание временных таблиц, данное значение должно " "быть ниже 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Процент сортировок вызывающих создание временных таблиц" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -13075,15 +13066,15 @@ msgstr "" "Среднее значение создания временных таблиц: %s, данное значение должно быть " "менее 1 в час." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Сортировать строки" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Было отсортировано большое количество строк." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -13095,20 +13086,20 @@ msgstr "" "используют поля индексов в выражении ORDER BY, так как это приведет к " "значительно более быстрой сортировке" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Средний показатель отсортированных строк: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Доля объединений не использующих индексы" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Слишком большое количество объединения не использующих индексы." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13116,22 +13107,22 @@ msgstr "" "Это означает сканирование всей таблицы при объединении. Добавление индексов " "для полей используемых в условии, значительно увеличит скорость объединения" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Среднее значение объединения таблиц: %s, данное значение должно быть менее 1 " "в час" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Доля чтения первого вхождения индекса" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Доля чтения первого вхождения индекса высока." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13148,22 +13139,22 @@ msgstr "" "сканирования. Другим образом уменьшить полноиндексное сканирование можно " "только переписав запросы." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Среднее значение сканирования индексов: %s, значение должно быть менее 1 в " "час" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Доля чтения фиксированного положения" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Доля чтения данных из фиксированного положения высока." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13173,7 +13164,7 @@ msgstr "" "или полном сканировании таблицы, включая запросы объединения не использующие " "индексы. Добавьте индексы где это возможно." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13182,15 +13173,15 @@ msgstr "" "Средняя доля чтений из фиксированной позиции: %s, значение должно быть менее " "1 в час" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Доля чтения следующей строки таблицы" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Доля чтения следующей строки таблицы высока." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13198,7 +13189,7 @@ msgstr "" "Указывает на то, что большое количество запросов совершают полное " "сканирование таблицы. Добавьте индексы где это возможно." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13206,15 +13197,15 @@ msgstr "" "Доля чтения следующей строки таблицы: %s, данное значение должно быть менее " "1 в час" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size против max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size и max_heap_table_size не одно и то же." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13226,16 +13217,16 @@ msgstr "" "Таким образом, если вы хотите увеличить ограничение размера таблиц в памяти, " "необходимо изменить второе из них соответственно." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Текущие значения tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Процентное соотношение временных таблиц на диске" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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." @@ -13243,7 +13234,7 @@ msgstr "" "Значительное количество временных таблиц было записано на диск, вместо то " "чтобы быть сохранено в памяти." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13262,7 +13253,7 @@ msgstr "" "\"http://www.facebook.com/note.php?note_id=10150111255065841&comments" "\">Статьи группы Pythian" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13271,11 +13262,11 @@ msgstr "" "%s%% из всех временных таблиц были записаны на диск, данное значение должно " "быть ниже 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Соотношение временных таблиц на диске" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13294,7 +13285,7 @@ msgstr "" "dev.mysql.com/doc/refman/5.5/en/internal-temporary-tables.html" "\">Документации MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13303,15 +13294,15 @@ msgstr "" "Соотношение временных таблиц записанных на диск: %s, данное значение должно " "быть менее 1 в час" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Размер буфера ключей MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "Буфер ключей не установлен. Индексы MyISAM не будут кешироваться." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13319,21 +13310,21 @@ msgstr "" "Установите значение переменной {key_buffer_size} в зависимости от размера " "индексов MyISAM. Начните с 64M." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size равен 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Максимальный %% буфера ключей MyISAM, который был использован" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Низкий %% использования буфера ключей MyISAM (кеш индекса)." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13343,7 +13334,7 @@ msgstr "" "таблицы, чтобы убедиться в удалении индексов, или просмотрите запросы и " "используемые ими индексы." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13351,44 +13342,44 @@ msgstr "" "Максимальный %% буфера ключей MyISAM, который был использован: %s%%, данное " "значение должно быть выше 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Процент использованного буфера ключей MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% использованного буфера ключей MyISAM: %s%%, данное значение должно быть " "выше 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Процент чтения индексов из памяти" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "Малый %% индексов использует буфер ключей MyISAM." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Возможно необходимо увеличить значение переменной {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Чтений индексов из памяти: %s%%, данное значение должно быть выше 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Соотношение открытых таблиц" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Высокое соотношение открытых таблиц." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13396,17 +13387,17 @@ msgstr "" "Открытые таблицы требуют выполнения затратных операций ввода-вывода. " "Избежать этого можно увеличением значения переменной {table_open_cache}." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" "Соотношение открытых таблиц: %s, данное значение должно быть менее 10 в час" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Процентное соотношение использованного ограничения открытых файлов" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13414,7 +13405,7 @@ msgstr "" "Количество открытых файлов приближается к максимальному. Возможно появление " "ошибки \"Слишком много открытых файлов\"." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13422,7 +13413,7 @@ msgstr "" "Рассмотрите возможность увеличения значения переменной {open_files_limit}, и " "после ее изменения и перезагрузки, проверьте журнал ошибок." -#: libraries/advisory_rules.txt:332 +#: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" @@ -13430,60 +13421,60 @@ msgstr "" "Количество открытых файлов составляет %s%% от лимита. Данное значение должно " "быть ниже 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Соотношение открытых файлов" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Высокое соотношение открытых файлов." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" "Соотношение открытых файлов: %s, данное значение должно быть менее 5 в час" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% незамедлительной блокировки таблиц" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" "Слишком большое количество запросов на блокировку таблицы, которые не были " "выполнены немедленно." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Для уменьшения ожидания блокировки необходима оптимизация запросов и/или " "использование таблиц типа InnoDB." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Незамедлительная блокировка таблиц: %s%%, данное значение должно быть выше " "95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Соотношение ожидания блокировки таблиц" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Соотношение ожидания блокировки таблиц: %s, данное значение должно быть " "менее 1 в час" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Кеш потока" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13491,44 +13482,44 @@ msgstr "" "Кеш потока отключен, что выразится в увеличенной нагрузке от новых " "соединений к MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Включите кеширование потока установив переменную {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Кеш потока установлен в 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "%% соотношение обращений в кеш потока" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Кеш потока действует не эффективно." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Увеличьте {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Частота успешных обращений в кеш потока: %s%%, данное значение должно быть " "выше 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Потоки с медленным запуском" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Обнаружено большое количество потоков с медленным запуском." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13537,20 +13528,20 @@ msgstr "" "так как сами операции достаточно просты. Обратите особое внимание на " "загрузку вашей системы." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "Запуск %s потока(ов) занял более %s секунд, должно быть 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Время медленного запуска" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads выше 2 сек." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13558,16 +13549,16 @@ msgstr "" "Установите переменную slow_launch_time на 1 или 2 сек., чтобы корректно " "считать медленно запускаемые потоки" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time установлен на %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Процентное соотношение использованных соединений" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13575,7 +13566,7 @@ msgstr "" "Максимальный размер использованных соединений приближается к значению " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13585,7 +13576,7 @@ msgstr "" "незакрытыми операторами базы данных быстрее уничтожались. Убедитесь, что в " "коде корректно закрываются операторы базы данных." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13593,15 +13584,15 @@ msgstr "" "Max_used_connections установлен в %s%% от max_connections, данное значение " "должно быть ниже 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Процентное соотношение прерванных соединений" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Слишком большое количество соединений было прервано." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Данная статья поможет вам в отслеживании " "источника проблемы." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" "%s%% от всех соединений были прерваны. Данное значение должно быть ниже 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Соотношение прерванных соединений" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" @@ -13631,15 +13622,15 @@ msgstr "" "Соотношение прерванных соединений %s, данное значение должно быть менее 1 в " "час" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Процентное соотношение прерванных связей клиентов" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Слишком большое количество прерванных клиентских связей." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13650,45 +13641,45 @@ msgstr "" "в коде правильного закрытия обработчика базы данных. Проверьте вашу сеть и " "программный код." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" "%s%% от всех клиентских соединений были прерваны. Данное значение должно " "быть ниже 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Соотношение прерванных клиентских соединений" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Соотношение прерванных клиентских соединений %s, данное значение должно быть " "менее 1 в час" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Отключен InnoDB?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "У вас не включен InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "Обычно тип таблиц InnoDB является наилучшим выбором." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb установлен в 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Размер журнала InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13696,7 +13687,7 @@ msgstr "" "Размер файла журнала InnoDB не соответствует выбранному размеру буферного " "пула InnoDB." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13720,7 +13711,7 @@ msgstr "" "смотрите данную запись блога" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13729,15 +13720,15 @@ msgstr "" "Размер вашего журнала InnoDB составляет %s%% по отношению к размеру " "буферного пула InnoDB, данное соотношение не должно быть ниже 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Максимальный размер журнала InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Размер файла журнала InnoDB неадекватно велик." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13760,20 +13751,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">данную запись блога" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Абсолютный размер журнала InnoDB %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Размер буферного пула InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Буферный пул InnoDB имеет маленький размер." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13799,7 +13790,7 @@ msgstr "" "\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-" "innodb_buffer_pool_size/\">данную статью" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13813,15 +13804,15 @@ msgstr "" "большого количества таблиц InnoDB или запущенных других служб на текущей " "машине." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Одновременные вставки MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Включите concurrent_insert установив значение в 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also Документацию MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Отправлено KiB с момента последнего обновления" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Принято KiB с момента последнего обновления" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Трафик сервера (в KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Соединений с момента последнего обновления" + +#~ msgid "Questions since last refresh" +#~ msgstr "Вопросов с момента последнего обновления" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Вопросы (выражения выполненные сервером)" + +#~ msgid "Runtime Information" +#~ msgstr "Текущее состояние MySQL" + +#~ msgid "Number of data points: " +#~ msgstr "Количество точек данных: " + +#~ msgid "Refresh rate: " +#~ msgstr "Частота обновления: " + +#~ msgid "Run analyzer" +#~ msgstr "Запустить анализ" + #~ msgid "Show more actions" #~ msgstr "Показать больше операций" diff --git a/po/si.po b/po/si.po index 635324602d..a7b520a897 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-03 18:45+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala Settings
menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "විමසුම් කෑෂ් කාර්යක්ෂමතාව" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "විමසුම් කෑෂ් භාවිතය" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "භාවිතා කරන ලද විමසුම් කෑෂ්" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "පද්ධතියේ CPU භාවිතය" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "පද්ධතියේ මතකය" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "පද්ධතියේ ප්‍රතිහරණය" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "මධ්‍යක භාරය" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "සම්පූර්ණ මතකය" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "කෑෂ්ගත මතකය" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "බෆරගත මතකය" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "නිදහස් මතකය" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "භාවිත මතකය" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "මුළු ප්‍රතිහරණය" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "කෑෂ්ගත ප්‍රතිහරණය" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "භාවිත ප්‍රතිහරණය" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "නිදහස් ප්‍රතිහරණය" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "යැවුණු බයිට ගණන" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "ලැබුණු බයිට ගණන" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "සම්බන්ධතා" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "ක්‍රියාවලි" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "වගු %d" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "ප්‍රශ්න" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "තදබදය" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "සිටුවම්" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "ප්‍රස්තාරය ඉවත් කරන්න" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "මාතෘකාව සහ ලේබල සංස්කරණය කරන්න" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "ජාලකයට ප්‍රස්තාර එක් කරන්න" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "කිසිවක් නැත" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "අධීක්ෂණය නැවත අරඹන්න" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "අධීක්ෂණය තාවකාලිකව නවතන්න" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log සහ slow_query_log සක්‍රීය යි." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log සක්‍රීය යි." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log සක්‍රීය යි." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log සහ general_log අක්‍රීය යි." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output අගය TABLE ලෙස සිටුවා නැත." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output අගය TABLE ලෙස සිටුවා ඇත." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1270,12 +1243,12 @@ msgstr "" "slow_query_log සක්‍රීයමුත් සේවාදායකය ලොග ගත කරන්නේ තත්පර %dට වඩා ගතවන විමසුම් පමණි. " "ඔබගේ පද්ධතියද සලකා long_query_time අගය තත්පර 0-2 අතර අගයකට සිටුවීම සුදුසුය." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1284,30 +1257,30 @@ msgstr "" "ප්‍රතිසැකසේ:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "log_output %s ට සිටුවන්න" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s සක්‍රිය කරන්න" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s අක්‍රිය කරන්න" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time තත්පර %dකට සිටුවන්න" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1315,161 +1288,161 @@ msgstr "" "ඔබට මෙම විචල්‍යයන් වෙනස් කල නොහැක. කරුණාකර root ලෙස ප්‍රවේශ වන්න. නැතහොත් දත්ත ගබඩා " "පරිපාලක විමසන්න." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "සිටුවම් වෙනස් කිරීම" # සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "ප්‍රස්තාර මාතෘකාව" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "ආන්තර" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "%s න් බෙදන ලද" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "ඒකකය" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "slow log වෙතින්" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "general log වෙතින්" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "ලොග විශ්ලේෂණය කෙරෙමින්" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "ලොග විශ්ලේෂණය සහ පූරණය කෙරෙමින්. මේ සඳහා මඳ වේලාවක් ගත විය හැක." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "ඉල්ලීම අවලංගු කරන්න" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "ලගු දත්ත පූරණය කරන ලදී. මේ අතරතුර කෙරුණු විමසුම්:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "ලොග වගුව වෙත යන්න" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "දත්ත කිසිවක් හමු නොවිණි" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "ලොගය විශ්ලේෂණය කෙරුනමුත් මෙම කාල පරාසයට අදාල දත්ත කිසිවක් හමු නොවිණි." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "විශ්ලේෂණය…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "ප්‍රතිදානය පහදන්න" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "කාලය" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "මුළු කාලය:" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "වගුව" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "ප්‍රස්ථාර" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "ප්‍රස්ථාරය සංස්කරණය කරන්න" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "ශ්‍රේණි" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "ලොග වගුව සඳහා පෙරහන් විකල්ප" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "පෙරහන්න" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "විමසුම් වචන/regexp මගින් පෙරහන්න:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "WHERE වාක්‍යඛණ්ඩයේ ඇති විචල්‍ය දත්ත මගහැර, විමසුම් කාණ්ඩ කරන්න" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "ගොනු කල පේළි ගණන:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "මුළු එකතුව:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "ලොගයන් පූරණය කෙරෙමින්" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "අධීක්ෂකය යාවත්කාලින කිරීම අසමත් විය" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1478,253 +1451,255 @@ msgstr "" "ප්‍රස්ථාර සඳහා නව දත්ත ලබාගැනීමේදී සේවාදායකය නොවලංගු ප්‍රතිචාරයක් ලබාදුනි. මෙය බොහෝදුරට " "ඔබගේ සැසිය කල් ඉකුත්වීමෙන් සිදුවිය හැක. පිටුව ප්‍රතිපූරණය කර ලොගින් වීම සලකා බලන්න." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "පිටුව ප්‍රතිපූරණය කරන්න" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "වෙනස් වූ පේළි:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "වින්‍යාස ගොනුව විග්‍රහ කිරීම අසමත් විය. ගොනුවෙහි වලංගු JSON කේත ඇත්දැයි පරීක්ෂා කරන්න." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "අනයනිත වින්‍යාස සමඟින් ප්‍රස්ථාර ජාලය ගොඩනැගීම අසමත් විය. පෙරනිමි වින්‍යාස වෙත මාරු වෙමින්…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "අධීක්ෂකයේ වින්‍යාසයන් ආනයනය" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "ඔබට ආනයනය කිරීමට අවශ්‍ය ගොනුව තෝරන්න" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "විමසුම විශ්ලේෂණය" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "උපදේශක පද්ධතිය" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "විය හැකි කාර්ය සාධනය ආශ්‍රිත ගැටළු" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "ගැටළු" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "නිර්දේශය" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "රීතිය සම්බන්ද තොරතුරු" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "යුක්තිසාධනය" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "භාවිතා කරන ලද විචල්‍යයන් / සූත්‍ර" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "ඇගයීම" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "පූරණය කෙරෙමින්" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "ඉල්ලීම පිරිසැකසෙමින්" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "තීරුව හලමින්" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "ප්‍රාථමික මූලය එක් කරමින්" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "මෙම නිවේදනය ඉවත් කිරීමට ක්ලික් කරන්න" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "දත්තගබඩාව පූරණය" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "වගු ඇතුලත් කරන්න" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "සුචි සඟවන්න" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "සුචි පෙන්වන්න" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "අන්‍ය මූල පරීක්ෂාව:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(සක්‍රිය)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(අක්‍රිය)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "සොයමින්" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "සෙවුම් ප්‍රතිඵල පෙන්වන්න" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "පිරික්සමින්" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "ඉවත් කෙරෙමින්" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "සුරැකි ශ්‍රිතයක නිර්වචනයෙහි RETURN ප්‍රකාශයක් තිබිය යුතුයි!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET සංස්කාරකය" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s තීරුව සඳහා අගයන්" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "නව තීරුවක් සඳහා අගයන්" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේත්‍ර වලට ඇතුලත් කරන්න" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "අගයන් %dක් එක් කරන්න" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "සටහන: ගොනුවේ වගු එකකට වැඩි ගණනක් ඇත්නම්, ඒවා එකකට සංයුක්ත කෙරෙනු ඇත" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "විමසුම් කවුළුව සඟවන්න" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "විමසුම් කවුළුව පෙන්වන්න" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "වෙනස් කරන්න" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "විමසුම ක්‍රියාත්මක කිරීමේ කාලය" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1733,90 +1708,90 @@ msgstr "%d වලංගු පේළි අංකයක් නොවේ." msgid "Save" msgstr "සුරකින්න" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "සෙවුම් නිර්ණායක සඟවන්න" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoom සෙවීම" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "එක් ලක්ෂ්‍යයකින් දත්ත පේළියක් නියෝජනය කෙරේ." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "ලක්ෂ්‍යයක් මතින් ගමන් කරන විට එහි ලේබලය පෙන්නුම් කරයි." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "තුළු සූමකරණය සඳහා ප්‍රස්ථාරයේ කොටසක් මූසිකය ආධාරයෙන් තෝරන්න." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "පෙර තත්ත්වයට පැමිණීම සඳහා සූමකරණය ප්‍රතිසකසන බොත්තම ක්ලික් කරන්න." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "පේළියක දත්ත පරීකෂා කිරීමට හා සමහරක් දත්ත වෙනස් කිරීමට ලක්ෂ්‍යයක් මත ක්ලික් කරන්න." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "ප්‍රස්තාරයෙහි විශාලත්වය පහළ දකුණු කොණෙන් ඇදීමෙන් වෙනස් කල හැක." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "තීර දෙකක් තෝරන්න" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "එකිනෙකට වෙනස් තීර දෙකක් තෝරන්න" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "විමසුම් ප්‍රථිඵල" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "පිටපත් කරන්න" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "තීරයන් එක් කරන්න" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1825,41 +1800,46 @@ msgstr "" "යන්න?" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "සංස්කරණය අවලංගු කිරීමට escape ඔබන්න" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "අනුපිළිවෙල අනුව සැකසීමට ක්ලික් කරන්න" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතලය ක්ලික් කරන්න" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1867,7 +1847,7 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1876,62 +1856,62 @@ msgid "" "content." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "සබැඳීම වෙත යන්න" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "තීර නම් පිටපත් කරන්න" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "දත්ත පේළි(ය) පෙන්වන්න" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "තවත්" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "සියල්ල පෙන්වන්න" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "සුචි සඟවන්න" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1941,266 +1921,266 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "යාවත්කාලීන" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "තෝරන්න" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "අද දින" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "මාර්තු" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "මැයි" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "ජුනි" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "ජූලි" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "සති" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "දින දර්ශන-මාස-වසර" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "කිසිවක් නැත" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "පැය" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "තත්පර" @@ -2250,16 +2230,16 @@ msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලක msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "%1$s වන පේළියේ අනපේක්ෂිත අනුලකුණකි. ටැබයක් අපේක්ෂිත නමුත් \"%2$s\" හමුවිය" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "තප්පරයකට" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "මිනිත්තුවකට" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "පැයකට" @@ -2285,7 +2265,7 @@ msgstr "ෆොන්ටයෙහි ප්‍රමාණය" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ආරෝහන" @@ -2294,7 +2274,7 @@ msgstr "ආරෝහන" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "අවරෝහන" @@ -2408,7 +2388,7 @@ msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "ඉවත් කරන්න" @@ -2578,7 +2558,7 @@ msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "නවතා දමන්න" @@ -2634,12 +2614,13 @@ msgstr "සියල්ල කතිර කොටුගත කරන්න" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" @@ -2647,7 +2628,7 @@ msgstr "අපනයනය" msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2728,16 +2709,16 @@ msgstr "උඩුගත කරන ලද ගොනුව කියවීමට msgid "Open new phpMyAdmin window" msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය" @@ -2749,21 +2730,21 @@ msgstr "සුචියක් අර්ථදක්වා නැත!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 #, fuzzy msgid "Cardinality" msgstr "Cardinality" @@ -2774,13 +2755,13 @@ msgstr "Cardinality" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "පරිතුලනය" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "ටීකාව" @@ -2823,7 +2804,7 @@ msgstr "දසුන" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "සැකිල්ල" @@ -2896,34 +2877,35 @@ msgstr "සිද්ධි" msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "භාවිතා කරන්නන්" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "ද්වීමය ලොගය" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "අනුරූකරණය" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "පේණු" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "යන්ත්‍රයන්" @@ -2971,6 +2953,105 @@ msgstr "මෑතදී භාවිතා කල වගු" msgid "There are no recent tables" msgstr "මෑතදී භාවිතා කල වගු කිසිවක් නොමැත" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL විමසුම" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "හසුරුවනය" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "විමසුම් කෑෂ්" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "ත්‍රෙඩයන්" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "තාවකාලික දත්ත" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "යතුරු කෑෂ් කිරීම" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "ඈඳුම්" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "තේරීම" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "වගු" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "ගොනු" + +#: libraries/ServerStatusData.class.php:207 +#, fuzzy +msgid "Flush (close) all tables" +msgstr "Flush (close) all tables" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "විවෘත වගු පෙන්වන්න" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "අනුගාමි දායකයන් පෙන්වන්න" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "ප්‍රධාන සේවාදායකයෙහි තත්වය පෙන්වන්න" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "අනුගාමි සේවාදායකයේ තත්ත්වය පෙන්වන්න" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "විමසුම් කෑෂය හිස් කරන්න" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB තත්වය" + +#: 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." @@ -3066,7 +3147,7 @@ msgstr "මෙහෙයවනය" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "අගය" @@ -3498,11 +3579,6 @@ msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ල msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL විමසුම" - #: libraries/Util.class.php:710 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:292 @@ -3537,7 +3613,7 @@ msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -3633,13 +3709,6 @@ msgstr "මුද්‍රණය කරන්න" msgid "shared" msgstr "හවුල්" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "වගු" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3680,61 +3749,61 @@ msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍ msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය වින්‍යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] සඳහා අගය ඔබගේ වින්‍යාස ගොනුවේ අඩංගු විය යුතුමය!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" @@ -5937,8 +6006,8 @@ msgstr "" "ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන [kbd]" "anonymous[/kbd] භාවිතා කෙරේ)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "භාවිත නාමය" @@ -6570,10 +6639,6 @@ msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ග msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB තත්වය" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7221,20 +7286,20 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "දත්තගබඩා නමින් පෙරහන්න" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "ශ්‍රේණිය ඉවත් කරන්න" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7348,17 +7413,17 @@ msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "සැකිල්ල පමණයි" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "දත්ත පමණයි" @@ -7753,8 +7818,7 @@ msgstr "MIME වර්ග පෙන්වන්න" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "දායකයා" @@ -8326,7 +8390,7 @@ msgid "Slave status" msgstr "අනුගාමි සේවාදායකයේ තත්වය" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "විචල්‍යය" @@ -8834,7 +8898,7 @@ msgstr "ගුණාංග" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "අතිරේක" @@ -9502,7 +9566,7 @@ msgstr "වගුවට නාම මූලයක් එක් කරන්න" msgid "Check tables having overhead" msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා කරන්න" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" @@ -9843,7 +9907,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "සබඳතා දක්වන ඉරි පෙන්වන්න/සඟවන්න" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9910,31 +9974,31 @@ msgstr "පිටුව සාදන ලදි" msgid "Page creation failed" msgstr "පිටුව සෑදීම අසමත් විය" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "පිටුව" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "තෝරාගත් පිටු ආනයනය කරන්න" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "පිටුවක් සාදා අපනයනය කරන්න" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "නව පිටු නාමය: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10052,15 +10116,11 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "ගොනු" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -10144,7 +10204,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "අනුවාදය" @@ -10201,10 +10261,6 @@ msgstr "ප්‍රධාන සේවාදායකය %s වෙත සාර msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක ප්‍රධාන සේවාදායකය ලෙස සකසා ඇත." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "ප්‍රධාන සේවාදායකයෙහි තත්වය පෙන්වන්න" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "සම්බන්ධිත salves පෙන්වන්න" @@ -10338,133 +10394,98 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක අනුගාමි සේවාදායකය ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" -msgstr "හසුරුවනය" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්‍රමාණය: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "විමසුම් කෑෂ්" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "මෙම MySQL සේවාදායකය %1$s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "ත්‍රෙඩයන්" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන හා අනුගාමි " +"සේවාදායක ලෙස ක්‍රියාකරයි." -#: server_status.php:661 -msgid "Temporary data" -msgstr "තාවකාලික දත්ත" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන සේවාදායකය ලෙස " +"ක්‍රියාකරයි." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී අනුගාමි සේවාදායකය ලෙස " +"ක්‍රියාකරයි." -#: server_status.php:663 -msgid "Key cache" -msgstr "යතුරු කෑෂ් කිරීම" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න." -#: server_status.php:664 -msgid "Joins" -msgstr "ඈඳුම්" +#: server_status.php:122 +msgid "Replication status" +msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:666 -msgid "Sorting" -msgstr "තේරීම" - -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -#, fuzzy -msgid "Flush (close) all tables" -msgstr "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "ලබන ලද" -#: server_status.php:682 -msgid "Show open tables" -msgstr "විවෘත වගු පෙන්වන්න" +#: server_status.php:168 +msgid "Sent" +msgstr "යවන ලද" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "අනුගාමි දායකයන් පෙන්වන්න" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:693 -msgid "Show slave status" -msgstr "අනුගාමි සේවාදායකයේ තත්ත්වය පෙන්වන්න" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "විමසුම් කෑෂය හිස් කරන්න" +#: server_status.php:253 +msgid "Aborted" +msgstr "අත්හැර දමන ලදි" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "ධාවන කාල තොරතුරු" +#: server_status.php:313 +msgid "ID" +msgstr "හැඳුනුම් අංකය" -#: server_status.php:830 -msgid "All status variables" -msgstr "සියලුම තත්ත්ව විචල්‍යයන්" +#: server_status.php:329 +msgid "Command" +msgstr "විධානය" -#: server_status.php:832 -msgid "Monitor" -msgstr "අධීක්ෂකය" - -#: server_status.php:834 -msgid "Advisor" -msgstr "උපදේශකය" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "පේළි ගණන:" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "පෙරහන්" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "වචනය අඩංගු:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "වර්ගය මත පෙරන්න..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "ආකෘතික අගයන් පෙන්වන්න" - -#: server_status.php:930 -msgid "Related links:" -msgstr "අදාල සබැඳි:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "විශ්ලේශකය ක්‍රියාත්මක කරවන්න" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "උපදෙස්" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10472,7 +10493,7 @@ msgstr "" "සේවාදායක තත්ත්ව විචල්‍යයන් අධ්‍යයනය කිරීමෙන් සේවාදායක විචල්‍යයන්ට අදාල නිර්දේශ ලබා දීමට උපදේශක " "පද්ධතියට හැකිය." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10481,7 +10502,7 @@ msgstr "" "කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් කරගෙන බවත් එම නිසා " "එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් සලකන්න." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10491,7 +10512,7 @@ msgstr "" "වෙනස්කම් ප්‍රතිවර්තනය කරන්නේ කෙසේද යන්න දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය " "තවදුරටත් නරක විය හැකිය." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10501,701 +10522,39 @@ msgstr "" "දත්තගබඩාව නිරීක්ෂණය කිරීම හා පෙර අවස්ථා සමග සසැදීමත්, මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් " "කිරීම් ප්‍රතිවර්තනය කිරීමත් ය." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්‍රශ්න ගණන: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "ප්‍රකාශය" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්‍රමාණය: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "මෙම MySQL සේවාදායකය %1$s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන හා අනුගාමි " -"සේවාදායක ලෙස ක්‍රියාකරයි." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන සේවාදායකය ලෙස " -"ක්‍රියාකරයි." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී අනුගාමි සේවාදායකය ලෙස " -"ක්‍රියාකරයි." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "අනුරූ කරණයේ තත්වය" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "ලබන ලද" - -#: server_status.php:1208 -msgid "Sent" -msgstr "යවන ලද" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "උපරිම සමගාමී සම්බන්ධතා" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "අසාර්ථක උත්සාහයන්" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "අත්හැර දමන ලදි" - -#: server_status.php:1322 -msgid "ID" -msgstr "හැඳුනුම් අංකය" - -#: server_status.php:1338 -msgid "Command" -msgstr "විධානය" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "නිදහස් පිටු ගණන." - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "මුළු දත්ත කියැවුම් ගණන." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "මුළු දත්ත ලියැවුම් ගණන." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." - -#: server_status.php:1574 -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 "" -"ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "සාදන ලද පිටු ගණන." - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "කියවන ලද පිටු ගණන." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "ලියන ලද පිටු ගණන." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "අවධානය අක්‍රීයයි." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "අධීක්ෂණය අරඹන්න" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "උපදෙස්/පිහිටුවීම" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "ප්‍රස්ථාර එක් කරන්න" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "ප්‍රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "ප්‍රස්ථාරයේ තීර" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "ප්‍රස්ථාර සැකසුම" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11203,15 +10562,15 @@ msgstr "" "ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " "කර ගැනීමට අවශ්‍ය විය හැකිය." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11225,7 +10584,7 @@ msgstr "" "general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " "15% දක්වා ඉහල යා හැකි බව සලකන්න" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11237,11 +10596,11 @@ msgstr "" "MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " "භාවිතා කල හැක." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "අධීක්ෂකය භාවිතා කිරීම:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11251,7 +10610,7 @@ msgstr "" "ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " "මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11263,11 +10622,11 @@ msgstr "" "පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " "හැක." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "කරුණාවෙන් සලකන්න:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11279,92 +10638,702 @@ msgstr "" "මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " "අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "පෙරසැදි ප්‍රස්ථාර" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "තත්ව විචල්‍ය(ය)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "ශ්‍රේණිය තෝරන්න:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "භාජකයක් භාවිතා කරන්න" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "මෙම ශ්‍රේණිය එක් කරන්න" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "ශ්‍රේණිය ඉවත් කරන්න" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "ලොග සංඛ්‍යලේඛන" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "තෝරාගත් කාල පරාසය:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "විමසුම් විශ්ලේශකය" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "තත්පර %dක්" msgstr[1] "තත්පර %dක්" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "මිනිත්තු %dක්" msgstr[1] "මිනිත්තු %dක්" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්‍රශ්න ගණන: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "ප්‍රකාශය" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "පෙරහන්" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "වචනය අඩංගු:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "වර්ගය මත පෙරන්න..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "ආකෘතික අගයන් පෙන්වන්න" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "අදාල සබැඳි:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "නිදහස් පිටු ගණන." + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "මුළු දත්ත කියැවුම් ගණන." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "මුළු දත්ත ලියැවුම් ගණන." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." + +#: server_status_variables.php:516 +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 "" +"ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "සාදන ලද පිටු ගණන." + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "කියවන ලද පිටු ගණන." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "ලියන ලද පිටු ගණන." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "අවධානය අක්‍රීයයි." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "විචල්‍යය සිටුවීම අසමත් විය" @@ -11915,142 +11884,142 @@ msgstr "අන්‍ය මූල නිරෝධය" msgid "Tracking report for table `%s`" msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s වන අනුවාදය සාදන ලදි. %2$s සඳහා අවධානය සක්‍රීයයි." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය අක්‍රීය කරන ලදී." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය සක්‍රීය කරන ලදී." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL ය ක්‍රියාත්මක කරන ලදි." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "විමසුම් දෝෂය" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s පෙන්වන්න, %2$s දින සිට %3$s දින දක්වා %4$s %5$s භාවිතා කරන්නා විසින්" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "අවධානය පිළිබඳ දත්ත පේළිය වාර්තාවෙන් ඉවත් කරන්න" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "දත්ත නොමැත" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "දිනය" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "දත්ත අර්ථ දැක්වීම" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්‍රතිස්ථාපනය කෙරෙනු ඇත." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL ක්‍රියාත්මක කිරීම" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "අපනයන කරන්න %s ලෙස" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "අනුවාද පෙන්වන්න" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "%s සඳහා අවධානය අක්‍රීය කරන්න" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "අක්‍රීය කරන්න" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "%s සඳහා අවධානය සක්‍රීය කරන්න" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "සක්‍රීය කරන්න" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "අනුවාදය සාදන්න" @@ -12184,11 +12153,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "මන්දගාමී විමසුම් ලොගගත කිරීම" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "වැඩි කාලයක් ගන්න විමසුම් සටහන් කරනා ලොගය අක්‍රීය යි." @@ -12202,120 +12171,132 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "වගු තෝරන්න" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "වත්මන් අනුවාදය: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "සුළු අනුවාදය" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "ඔබ MySQL 5.5 හි ස්ථාවර අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "ව්‍යප්තිය" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL නිර්මිතය" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "විමසුම් කෑෂ් අක්‍රීයයි" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "විමසුම් කෑෂ් සක්‍රීය කර නැත." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12323,19 +12304,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "විමසුම් කෑෂ්ගත කරන ක්‍රමය" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "කෑෂ්ගත කරන ක්‍රමය ප්‍රශස්ත නැත." -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s වගු" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12726,270 +12707,270 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Percentage of slow queries" msgid "Percentage of index reads from memory" msgstr "මන්දගාමී විමසුම් ප්‍රතිශතය" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "වගුව සාදන්න" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "The current number of pending writes." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "The number of pending log file fsyncs." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sort buffer size" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sort buffer size" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sort buffer size" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "යතුරු කෑෂ් කිරීම" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "අවධානය අක්‍රීයයි." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "අවධානය අක්‍රීයයි." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "අවධානය අක්‍රීයයි." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sort buffer size" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -12997,50 +12978,50 @@ msgid "" "launch" msgstr "The number of threads that are not sleeping." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Allows creating temporary tables." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13151,15 +13132,15 @@ msgid "" "it should not be below 20%%" msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "උපරිම InnoDB ලොග විශාලත්වය" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13173,24 +13154,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Buffer pool size" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13205,7 +13186,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13214,27 +13195,59 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "concurret_insert 1ට සිටුවා සක්‍රීය කරන්න" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත" +#~ msgid "KiB sent since last refresh" +#~ msgstr "අවසන් යාවත්කාලින කිරීමේ සිට යැවුණු KiB" + +#~ msgid "KiB received since last refresh" +#~ msgstr "අවසන් යාවත්කාලින කිරීමේ සිට ලැබුණු KiB" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "සේවාදායකයේ තදබදය (KiB වලින්)" + +#~ msgid "Connections since last refresh" +#~ msgstr "අවසන් යාවත්කාලින කිරීමේ සිට සබැඳුම්" + +#~ msgid "Questions since last refresh" +#~ msgstr "අවසන් යාවත්කාලින කිරීමේ සිට ප්‍රශ්න" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "ප්‍රශ්න (සේවාදායකය විසින් ක්‍රියාත්මක කරන ලද ප්‍රකාශ)" + +#~ msgid "Runtime Information" +#~ msgstr "ධාවන කාල තොරතුරු" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "පේළි ගණන:" + +#~ msgid "Refresh rate: " +#~ msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව: " + +#~ msgid "Run analyzer" +#~ msgstr "විශ්ලේශකය ක්‍රියාත්මක කරවන්න" + #~ msgid "Show more actions" #~ msgstr "තවත් ක්‍රියාවන් පෙන්වන්න" diff --git a/po/sk.po b/po/sk.po index 01d9f12ef4..67c2b053be 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-21 15:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Slovak =2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Hľadať" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Vykonaj" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Kľúčový názov" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Popis" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Komentár k tabuľke" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Stĺpec" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Stĺpec" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Nulový" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Predvolené" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Predvolené" msgid "Links to" msgstr "Linkovať na" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Komentáre" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Áno" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabuľka" @@ -338,7 +338,7 @@ msgstr "Veľkosť" msgid "in use" msgstr "práve sa používa" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "práve sa používa" msgid "Creation" msgstr "Vytvorenie" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Vytvorenie" msgid "Last update" msgstr "Posledná zmena" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -407,7 +407,7 @@ msgstr "Sledované tabuľky" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databáza" @@ -415,17 +415,17 @@ msgstr "Databáza" msgid "Last version" msgstr "Posledná verzia" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Vytvorené" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Stav" @@ -440,7 +440,7 @@ msgstr "Akcia" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Ukázať" @@ -456,11 +456,11 @@ msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" msgid "Drop" msgstr "Odstrániť" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "nie je zapnuté" @@ -468,11 +468,11 @@ msgstr "nie je zapnuté" msgid "Versions" msgstr "Verzia" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Snímok štruktúry" @@ -540,45 +540,45 @@ msgstr "Použíť OpenStreetMap ako základnú vrstvu" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Bod" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Bod %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Pridať bod" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Vonkajší obrys" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Vnútorný obrys" @@ -586,15 +586,15 @@ msgstr "Vnútorný obrys" msgid "Add a linestring" msgstr "Pridať linku" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Pridať vnútorný obrys" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygón" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Pridať polygón" @@ -738,8 +738,9 @@ msgstr "Ďalšie nastavenia" msgid "Database server" msgstr "Databázový server" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -758,7 +759,7 @@ msgstr "Verzia protokolu" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Používateľ" @@ -995,12 +996,12 @@ msgstr "Načítavam oprávnenia" msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Zavrieť" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1010,15 +1011,15 @@ msgstr "Zavrieť" msgid "Edit" msgstr "Upraviť" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Živý graf prevádzky" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Živý graf spojení/procesov" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Živý graf dopytov" @@ -1029,13 +1030,14 @@ msgstr "Statické data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Ostatné" @@ -1050,48 +1052,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Odoslaných KiB od posledného obnovenia" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Prijatých KiB od posledného obnovenia" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Sieťová prevádzka (v KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Spojení od posledného obnovenia" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesy" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Spojenia / Procesy" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Dotazov od posledného obnovenia" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Dopyty (príkazy vykonané na serveri)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Štatistika dopytov" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Vaše nastavenie monitoru nie je kompatibilné" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1102,196 +1070,201 @@ msgstr "" "touto verziou monitora a pravdepodobne nebude fungovať správne. Prosím, " "obnovte východzie nastavenie v ponuke Nastavenia." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Úspešnosť vyrovnávacej pamäte príkazov" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Využitie vyrovnávacej pamäte príkazov" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Využitá vyrovnávacia pamäť príkazov" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Využitie CPU" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Systémová pamäť" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Stránkovacia oblasť" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Priemerné vyťaženie" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Celková pamäť" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Vyrovnávacia pamäť" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Vyrovnávacia pamäť" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Voľná pamäť" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Využitá pamäť" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Swap celkom" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Cachovaný swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Využitý swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Voľný swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Odoslaných bajtov" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Prijatých bajtov" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Spojenia" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesy" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabuliek" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Dopyty" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Nastavenia" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Odstrániť graf" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Upraviť názov a popisy" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Pridať graf do mriežky" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Pridajte prosím aspoň jednu hodnotu do série" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Žiadny" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Obnoviť monitor" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Prerušiť monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log a slow_query_log sú povolené." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log je povolený." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log je povolený." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log a general_log sú zakázané." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output nie je nastavený do tabuľky." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output je nastavený do tabuľky." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1302,12 +1275,12 @@ msgstr "" "sekúnd. Doporučujeme nastaviť premennú long_query_time na 0-2 sekundy, v " "závislosti na zaťažení vášho systému." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastavený na %d sekúnd." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1316,30 +1289,30 @@ msgstr "" "servera:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Nastaviť log_output do %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Zapnúť %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Vypnúť %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Nastaviť long_query_time na %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1347,53 +1320,53 @@ msgstr "" "Nemôžete zmeniť tieto premenné. Prihláste sa prosím ako root alebo " "kontaktujte vášho správcu databázy." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Zmeniť nastavenia" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Názov grafu" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Rozdiely" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Vydelené s %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Jednotka" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Zo záznamu pomalých dopytov" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Z všeobecného logu" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyzujem záznamy" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Načítavam a analyzujem záznamy. Môže to chvíľu trvať." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Zrušiť požiadavku" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1403,7 +1376,7 @@ msgstr "" "Kritériom na zoskupenie bol len samotný SQL dopyt, takže ostatné atribúty " "dopytov, ako je napr. čas spustenia, sa môžu líšiť." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1412,102 +1385,102 @@ msgstr "" "Keďže bolo zvolené zoskupovanie INSERT dopytov, sú aj INSERT dopyty do " "rovnakej tabuľky zoskupované, bez ohľadu na vkladané dáta." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Záznamy boli načítané. V tomto časovom rozmedzí boli vykonané nasledujúce " "dopyty:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Prejsť na tabuľku so záznamami" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Žiadne dáta" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Záznamy boli skontrolované, ale v tomto časovom rozmedzí neboli nájdené " "žiadne údaje." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyzujem…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Vysvetliť výstup" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Čas" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Celkový čas:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Výsledky profilovania" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabuľka" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Graf" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Upraviť graf" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Série" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Nastavenie filtrovania logovacích tabuliek" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrovať dopyty podľa slova/regulárneho výrazu:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Zlučovať dopyty, ignorovať premenné dáta vo WHERE výraze" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Počet zlúčených riadkov:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Celkom:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Načítavam záznamy" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Obnovenie monitora zlyhalo" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1517,255 +1490,257 @@ msgstr "" "spôsobené vypršaním relácie. Problém môžete vyriešiť znovu načítaním " "stránky, alebo opätovným prihlásením." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Znovu načítať stránku" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Ovplyvnené záznamy:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Zlyhalo spracovanie konfiguračného súboru. Pravdepodobne neobsahuje platný " "JSON kód." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nepodarilo sa vytvoriť graf z importovanej konfigurácie. Používam východzie " "nastavenia…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importovať konfiguráciu monitora" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Zvoľte súbor, ktorý chcete importovať" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analyzovať dopyt" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Poradca" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Možné problémy s výkonom" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problém" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Odporúčanie" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Podrobnosti o pravidle" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Zdôvodnenie" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Použitá premenná / vzorec" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Kontrola" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Načítanie" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Prebieha spracovanie požiadavka" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Chyba pri spracovanie požiadavku" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Odstraňujem stĺpce" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Pridavam primarny kľúč" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Kliknutím zatvoríte túto správu" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Premenovávam databázy" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Znovu načítať databázu" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopírujem databázu" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Mením znakovú sadu" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Pridať tabuľku" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Skryť indexy" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Zobraziť indexy" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Kontrola cudzích kľúčov:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Zapnuté)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Vypnuté)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Vyhľadávam" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Skryť výsledky vyhľadávania" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Zobraziť výsledky vyhľadávania" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Prechádzať" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Odstraňujem" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Hodnoty pre pole %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Hodnoty pre nový stĺpec" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Zadajte každú hodnotu do samostatného poľa" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Pridať %d hodnôt" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Poznámka: Ak súbor obsahuje viac tabuliek, tieto budú spojené do jednej" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Skryť vyhľadávacie pole" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Zobrazit vyhľadávacie pole" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Zmeniť" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Čas behu dopytu" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1774,88 +1749,88 @@ msgstr "%d nie je platné číslo riadku." msgid "Save" msgstr "Uložiť" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Skryť parametre vyhľadávania" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoomovacie vyhľadávanie" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje riadok dát." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Pohybom myši nad bodom zobrazíte jeho názov." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pre priblíženie kliknite na sekciu grafu." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite na tlačidlo Obnoviť zoom na návrat do pôvodného stavu." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliknite na dátový bod pre zobrazenie a prípadnú úpravu dát." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf môžete zväčšiť potiahnutím za pravý dolný roh." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Zvoľte dva stĺpce" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Zvoľte dva rôzne stĺpce" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Výsledky dopytu" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopírovať" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Pridať stĺpce" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1863,41 +1838,46 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Pridať voľbu pre stĺpec " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Klávesou ESC ukončíte upravovanie" -#: js/messages.php:350 +#: js/messages.php:338 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 "Na stránke sú neuložené zmeny. Naozaj ju chcete opustiť?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kliknite pre zoradenie" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Kliknite pre označenie/odznačenie" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknite na šípku
pre zmenu viditeľnosti stĺpca" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1906,7 +1886,7 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1915,62 +1895,62 @@ msgid "" "content." msgstr "Väčšinu stĺpcov môžete upraviť>br />kliknutím na ich obsah." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "Väčšinu stĺpcov môžete upraviť
kliknutím na ich obsah." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Prejsť na odkaz" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopírovať názov stĺpca" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Zobraziť riadky" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Viac" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Zobraziť všetko" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Skryť indexy" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1980,266 +1960,266 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "aktuálna" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Hotovo" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Dnes" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Január" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Február" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Marec" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Apríl" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Máj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Jún" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Júl" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "August" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "September" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Október" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "November" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Piatok" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Týž" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalendár-mesiac-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "žiadny" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minúty" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekundy" @@ -2289,16 +2269,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "za minútu" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "za hodinu" @@ -2326,7 +2306,7 @@ msgstr "Veľkosť písma" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Vzostupne" @@ -2335,7 +2315,7 @@ msgstr "Vzostupne" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Zostupne" @@ -2451,7 +2431,7 @@ msgstr "Odstrániť nájdené záznamy z tabuľky %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Zmazať" @@ -2621,7 +2601,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Zabiť" @@ -2677,12 +2657,13 @@ msgstr "Označiť všetko" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" @@ -2690,7 +2671,7 @@ msgstr "Exportovať" msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2775,16 +2756,16 @@ msgstr "Nahraný súbor sa nedá prečítať (presunúť)." msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Pokiaľ chcete pokračovať, Javascript musí byť povolený" @@ -2796,21 +2777,21 @@ msgstr "Nebol definovaný žiadny index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Mohutnosť" @@ -2820,13 +2801,13 @@ msgstr "Mohutnosť" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Zotriedenie" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentár" @@ -2871,7 +2852,7 @@ msgstr "Pohľad" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Štruktúra" @@ -2944,34 +2925,35 @@ msgstr "Udalosti" msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Používatelia" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binárny log" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikácia" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Systémy" @@ -3022,6 +3004,104 @@ msgstr "Nedávne tabuľky" msgid "There are no recent tables" msgstr "Neboli nájdené žiadne nedávne tabuľky" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL dopyt" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Manipulačná Rutina" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Vyrovnávacia pamäť príkazov" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Počet vlákien" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Dočasné dáta" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Odložené vloženia" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Vyrovnávacia pamäť kľúčov" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Zjednotenia" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Zoraďovanie" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabuľky" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinátor transakcií" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Súbory" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Zobraziť otvorené tabuľky" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Zobraziť podriadené hosty" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Zobraziť stav master replikácie" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Zobraziť stav podriadených hostov" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stav InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Štatistika dopytov" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Stav všetkých premenných" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Monitor" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Poradca" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3114,7 +3194,7 @@ msgstr "Operátor" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Hodnota" @@ -3501,11 +3581,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL dopyt" - #: libraries/Util.class.php:710 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:292 @@ -3540,7 +3615,7 @@ msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Obnoviť" @@ -3636,13 +3711,6 @@ msgstr "Vytlačiť" msgid "shared" msgstr "zdieľaný" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabuľky" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3683,11 +3751,11 @@ msgstr "Skontrolovať oprávnenia pre databázu "%s"." msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Nepodarilo sa načítať konfiguračný súbor" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3695,12 +3763,12 @@ msgstr "" "Toto je často spôsobené syntaktickou chybou v súbore, prosím skontrolujte " "chyby vypísané nižšie." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3708,38 +3776,38 @@ msgstr "" "Direktíva [code]$cfg['PmaAbsoluteUri'][/code] MUSÍ byť nastavená v " "konfiguračnom súbore!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "možný pokus o exploit" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "zistený číselný kľúč" @@ -6018,8 +6086,8 @@ msgstr "" "Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Užívateľ" @@ -6672,10 +6740,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stav InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Využitie Vyrovnávacej Pamäte" @@ -7346,18 +7410,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Filtrovať tabuľky podľa mena" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7455,17 +7519,17 @@ msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Iba štruktúru" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Štruktúru a dáta" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Iba dáta" @@ -7858,8 +7922,7 @@ msgstr "Zobraziť MIME typy" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Hostiteľ" @@ -8420,7 +8483,7 @@ msgid "Slave status" msgstr "Stav podriadených hostov" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Premenná" @@ -8935,7 +8998,7 @@ msgstr "Atribúty" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9634,7 +9697,7 @@ msgstr "Pridať predponu k tabuľke" msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Žiadny" @@ -9985,7 +10048,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Prepnúť príbuzné riadky" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" @@ -10051,31 +10114,31 @@ msgstr "Stránka bola vytvorená" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nový názov stránky: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10194,15 +10257,11 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Súbory" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -10288,7 +10347,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Verzia" @@ -10345,10 +10404,6 @@ msgstr "Master server zmenený úspešne na %s" msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Zobraziť stav master replikácie" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10479,182 +10534,29 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status.php:657 -msgid "Handler" -msgstr "Manipulačná Rutina" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Vyrovnávacia pamäť príkazov" - -#: server_status.php:659 -msgid "Threads" -msgstr "Počet vlákien" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Dočasné dáta" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Odložené vloženia" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Vyrovnávacia pamäť kľúčov" - -#: server_status.php:664 -msgid "Joins" -msgstr "Zjednotenia" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Zoraďovanie" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinátor transakcií" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Zobraziť otvorené tabuľky" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Zobraziť podriadené hosty" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Zobraziť stav podriadených hostov" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Stav serveru" - -#: server_status.php:830 -msgid "All status variables" -msgstr "Stav všetkých premenných" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Monitor" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Poradca" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Počet dátových bodov: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Obnovovacia frekvencia: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtre" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Obsahujúca slovo:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Zobraziť iba varovné hodnoty" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Zobraziť neformátované hodnoty" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Súvisiace odkazy:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Spustiť analyzátor" - -#: server_status.php:966 -msgid "Instructions" -msgstr "Inštrukcie" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Dopytov od spustenia: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Údaj" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tento MySQL server beží %1$s. Bol spustený %2$s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." @@ -10662,18 +10564,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10681,11 +10583,11 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10693,45 +10595,296 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Prijaté" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Odoslané" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Príkaz" -#: server_status.php:1527 +#: server_status_advisor.php:29 +msgid "Instructions" +msgstr "Inštrukcie" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +msgid "Start Monitor" +msgstr "Spustiť monitor" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "Pokyny/Nastavenie" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Pridať graf" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Obnovovacia frekvencia" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Stĺpce grafu" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "Obnoviť predvolené" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "Monitor inštrukcie" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +msgid "Preset chart" +msgstr "" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +msgid "Select series:" +msgstr "Vybrať série:" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "alebo zadajte meno premennej:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +msgid "Add this series" +msgstr "Pridať túto sériu" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "Série v grafe:" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Zvolený časový rozsah:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Analyzátor dopytov" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekúnd" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minúta" +msgstr[1] "%d minúty" +msgstr[2] "%d minút" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Dopytov od spustenia: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Údaj" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtre" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Obsahujúca slovo:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Zobraziť iba varovné hodnoty" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Zobraziť neformátované hodnoty" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Súvisiace odkazy:" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10741,16 +10894,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10762,11 +10915,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10774,7 +10927,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10782,7 +10935,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10790,23 +10943,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -10816,7 +10969,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -10826,7 +10979,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -10834,7 +10987,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -10844,7 +10997,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10853,7 +11006,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -10866,7 +11019,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -10878,35 +11031,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu riadku v tabuľke." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -10916,7 +11069,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -10928,11 +11081,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -10940,7 +11093,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10948,11 +11101,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10960,7 +11113,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -10974,88 +11127,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1574 +#: server_status_variables.php:516 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 "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11064,51 +11217,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11117,7 +11270,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11125,7 +11278,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11134,17 +11287,17 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formát importovaného súboru" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11155,26 +11308,26 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11185,17 +11338,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11203,38 +11356,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11246,7 +11399,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11254,19 +11407,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11274,12 +11427,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11288,7 +11441,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11296,15 +11449,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11312,13 +11465,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11326,14 +11479,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11343,23 +11496,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11371,7 +11524,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11381,11 +11534,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11396,198 +11549,16 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sledovanie nie je aktívne." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "Spustiť monitor" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "Pokyny/Nastavenie" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Pridať graf" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Obnovovacia frekvencia" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Stĺpce grafu" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "Obnoviť predvolené" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "Monitor inštrukcie" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -msgid "Preset chart" -msgstr "" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -msgid "Select series:" -msgstr "Vybrať série:" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "alebo zadajte meno premennej:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -msgid "Add this series" -msgstr "Pridať túto sériu" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "Série v grafe:" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Zvolený časový rozsah:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Analyzátor dopytov" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundy" -msgstr[2] "%d sekúnd" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minúta" -msgstr[1] "%d minúty" -msgstr[2] "%d minút" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12128,147 +12099,147 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledovanie je aktívne." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledovanie je aktívne." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Chyba dopytu" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Žiadne dáta" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Chýba hodnota pre %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Vytvoriť verziu" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Vytvoriť verziu" @@ -12403,11 +12374,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time je nastavený na %d sekúnd." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Logovanie pomalých dopytov" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "slow_query_log je vypnutý." @@ -12423,118 +12394,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time je nastavený na %d sekúnd." -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time je nastavený na %d sekúnd." + +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Aktuálna verzia: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Minor verzia" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Mali by ste aktualizovať na stabilnú verziu MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribúcia" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL architektúra" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Cache dopytov nie je povolená." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12542,21 +12525,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Caching metóda dopytov" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Vyrovnávacia pamäť príkazov" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Frekvencia dočasného ukladania na disk" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12927,51 +12910,51 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Veľkosť vyrovnávacej pamäte MyISAM kľúčov" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Maximálne využitie (%%) vyrovnávacej pamäte MyISAM pre kľúče" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Využitie MyISAM vyrovnávacej pamäte kľúčov je nízke %%." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -12979,197 +12962,197 @@ msgstr "" "max %% vyrovávacej pamäte MyISAM kľúčov niekedy použitej: %s%%, táto hodnota " "by mala byť vyššia ako 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Percento využitia vyrovnávacej pamäte MyISAM kľúčov" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Zobraziť SQL dopyty" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Frekvencia otvárania tabuliek" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Frekvencia otvárania tabuliek je vysoká." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Percento použitia limitu otvorených súborov" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Frekvencia otvárania súborov" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Frekvencia otvárania súborov je vysoká." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Okamžite získané zámky tabuľky %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Príliš veľa zámkov tabuliek nebolo získaných okamžite." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Veľkosť zoraďovacej pamäte" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Veľkosť zoraďovacej pamäte" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Veľkosť zoraďovacej pamäte" + +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Vyrovnávacia pamäť vláken" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Sledovanie nie je aktívne." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Frekvencia úspešnosti vyrovnávacej pamäte %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Sledovanie nie je aktívne." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Počet nespiacich vlákien." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Počet nespiacich vlákien." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time je nastavený na %d sekúnd." -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13177,50 +13160,50 @@ msgid "" "launch" msgstr "Počet nespiacich vlákien." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time je nastavený na %d sekúnd." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Trvalé spojenia" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Trvalé spojenia" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Povolí vytváranie dočasných tabuliek." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13335,17 +13318,17 @@ msgid "" "it should not be below 20%%" msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Veľkosť vyrovnávacej pamäte" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Veľkosť záznamového súboru je príliš veľká." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13359,24 +13342,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Veľkosť vyrovnávacej pamäte" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Veľkosť vyrovnávacej pamäte" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13391,7 +13374,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13400,27 +13383,57 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Súčasných vkladaní do MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "concurrent_insert is set to 0" msgid "Enable concurrent_insert by setting it to 1" msgstr "concurrent_insert je nastavené na 0" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Odoslaných KiB od posledného obnovenia" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Prijatých KiB od posledného obnovenia" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Sieťová prevádzka (v KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Spojení od posledného obnovenia" + +#~ msgid "Questions since last refresh" +#~ msgstr "Dotazov od posledného obnovenia" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Dopyty (príkazy vykonané na serveri)" + +#~ msgid "Runtime Information" +#~ msgstr "Stav serveru" + +#~ msgid "Number of data points: " +#~ msgstr "Počet dátových bodov: " + +#~ msgid "Refresh rate: " +#~ msgstr "Obnovovacia frekvencia: " + +#~ msgid "Run analyzer" +#~ msgstr "Spustiť analyzátor" + #~ msgid "Show more actions" #~ msgstr "Zobraziť viac operácii" diff --git a/po/sl.po b/po/sl.po index e7aac3ac7f..57dda69408 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-24 17:11+0200\n" "Last-Translator: Domen \n" "Language-Team: Slovenian Nastavitve
." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Učinkovitost predpomnilnika poizvedb" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Uporaba predpomnilnika poizvedb" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Uporabljenega predpomnilnika poizvedb" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Uporaba sistemskega CPU" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistemski pomnilnik" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Sistemska izmenjava" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Povprečna obremenitev" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Skupni pomnilnik" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Predpomnjen pomnilnik" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Medpomnjen pomnilnik" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Prost pomnilnik" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Uporabljen pomnilnik" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Skupna izmenjava" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Predpomnjena izmenjava" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Medpomnjena izmenjava" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Prosta izmenjava" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Poslanih bajtov" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Povezave" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabel(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Nastavitve" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Odstrani grafikon" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Uredi naslov in oznake" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Dodaj grafikon na mrežo" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Brez" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Nadaljuj nadziranje" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Postoj nadziranje" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log in slow_query_log sta omogočena." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log je omogočen." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogočen." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log in general_log sta onemogočena." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output ni nastavljen na TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output je nastavljen na TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1305,12 +1278,12 @@ msgstr "" "trajajo več kot %d sekund. Priporočljivo je, da nastavite long_query_time na " "0–2 sekundi, odvisno od vašega sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastavljen na %d sekund(o)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1319,30 +1292,30 @@ msgstr "" "privzeto vrednost ob ponovnem zagonu strežnika:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Nastavi log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Omogoči %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Onemogoči %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Nastavi long_query_time na %d s" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1350,53 +1323,53 @@ msgstr "" "Teh spremenljivk ne morete spremeniti. Prosimo, prijavite se kot root ali " "stopite v stik z upravljavcem vaše zbirke podatkov." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Spremeni nastavitve" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Naslov grafikona" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Razlika" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Deljeno z %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Enota" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Iz počasnega dnevnika" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Iz splošnega dnevnika" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analiziranje dnevnikov" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Prekliči zahtevo" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1406,7 +1379,7 @@ msgstr "" "zbirni pogoj je bila uporabljena le sama poizvedba SQL, zato se lahko drugi " "atributi poizvedb, npr. začetni čas, razlikujejo." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1415,100 +1388,100 @@ msgstr "" "Ker je izbrano zbiranje poizvedb INSERT, so poizvedbe INSERT iste tabele " "prav tako zbrane skupaj, ne glede na vstavljene podatke." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Podatki dnevnika so naloženi. Poizvedbe, izvedene v tem časovnem razponu:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Pojdi v dnevniško tabelo" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Našel nisem nobenih podatkov" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Dnevnik je analiziran, vendar v tem časovnem razponu nisem našel podatkov." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analiziranje…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Razloži izhod" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Čas" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Skupni čas:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profiliranje rezultatov" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafikon" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Uredi grafikon" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serije" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Možnosti filtra dnevnikov tabel" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtriranje" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtriraj poizvedbe po besedi/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Združi poizvedbe, neupoštevajoč spremenljive podatke v stavkih WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Seštevek združenih vrstic:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Skupaj:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Dnevniki nalaganja" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Osvežitev nadziranja je spodletela" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1518,254 +1491,256 @@ msgstr "" "se je najverjetneje zgodilo, ker je vaša seja potekla. Ponovno nalaganje " "strani in ponovni vnos poveril bi morala pomagati." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Ponovno naloži stran" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Spremenjene vrstice:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Razčlenjevalne konfiguracijske datoteke je spodletelo. Kot kaže, ni veljavna " "koda JSON." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " "privzeto konfiguracijo…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Uvozi konfiguracijo nadziranja" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Prosimo, izberite datoteko, ki jo želite uvoziti" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analiziraj poizvedbo" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Svetovalni sistem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Morebitni spori zmogljivosti" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Spor" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Priporočilo" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Podrobnosti pravila" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Utemeljitev" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Uporabljena spremenljivka/formula" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Preizkus" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Nalaganje" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Obdelovanje zahteve" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Napaka v obdelovanju zahteve" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Koda napake: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Besedilo napake: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Brisanje stolpca" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Dodajanje primarnega ključa" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "V redu" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Kliknite, da prezrete obvestilo" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Preimenovanje zbirk podatkov" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ponovno nalaganje zbirke podatkov" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopiranje zbirke podatkov" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Spreminjanje nabora znakov" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabele morajo imeti vsaj en stolpec" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Vstavi tabelo" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Skrij indekse" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Pokaži indekse" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Preverjanje tujih ključev:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Omogočeno)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Onemogočeno)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Iskanje" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Skrij rezultate iskanja" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Prikaži rezultate iskanja" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Brskanje" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Vrednosti stolpca %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Vrednosti novega stolpca" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Vnesite vsako vrednost v svoje polje" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "Opomba: Če datoteka vsebuje več tabel, bodo združene v eno" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Skrij polje poizvedbe" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Spremeni" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Čas izvajanja poizvedbe" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1774,89 +1749,89 @@ msgstr "%d ni veljavna številka vrstice." msgid "Save" msgstr "Shrani" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Skrij iskalne pogoje" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Iskanje s povečevanjem" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Vsaka točka predstavlja podatkovno vrstico." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Za povečanje izberite z miško del izrisa." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "Kliknite gumb za ponastavitev povečave za vrnitev na prvotno stanje." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kliknite podatkovno točko za ogled in morebitno urejanje podatkovne vrstice." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Izberite dva stolpca" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Izberite dva različna stolpca" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Rezultati poizvedbe" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Dodaj stolpce" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1864,15 +1839,20 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Dodaj možnost za stolpec " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Pritisnite ubežnico (escape) za prekinitev urejanja" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1880,27 +1860,27 @@ msgstr "" "Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da " "želite zapustiti stran, preden shranite podatke?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Povlecite za preureditev" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kliknite za razvrstitev" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Kliknite za označitev/opustitev" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Dvakrat kliknite za kopiranje imena stolpca" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknite spustno puščico
za preklop vidnosti stolpcev" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1909,7 +1889,7 @@ msgstr "" "potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju " "morda ne bodo delovale." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1917,59 +1897,59 @@ msgstr "" "Večino stolpcev lahko urejate
neposredno z dvojnim klikom na njihovo " "vsebino." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Večino stolpcev lahko urejate
neposredno s klikom na njihovo vsebino." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Pojdi na povezavo" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopiraj ime stolpca" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Z desnim miškinim gumbom kliknite na ime stolpca, da ga skopirate v " "odložišče." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Prikaži podatkovno vrstico(-e)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Več" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Pokaži ploščo" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Skrij ploščo" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "Izbrane strani nisem našel v zgodovini; morda je potekla." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1979,266 +1959,266 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "posodobljeno" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Končano" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Danes" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "januar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "februar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "marec" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "april" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "junij" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "julij" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "avgust" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "september" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "november" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "torek" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "petek" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "ted." #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "brez" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Ura" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuta" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekunda" @@ -2291,16 +2271,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neveljaven znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2$s«" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "na sekundo" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "na minuto" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "na uro" @@ -2327,7 +2307,7 @@ msgstr "Velikost pisave" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Naraščajoče" @@ -2336,7 +2316,7 @@ msgstr "Naraščajoče" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Padajoče" @@ -2454,7 +2434,7 @@ msgstr "Izbrišem zadetke v tabeli %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Izbriši" @@ -2624,7 +2604,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Prekini proces" @@ -2679,12 +2659,13 @@ msgstr "Označi vse" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" @@ -2692,7 +2673,7 @@ msgstr "Izvozi" msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2776,16 +2757,16 @@ msgstr "Ne morem prebrati (premakniti) naložene datoteke." msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Po tej točki mora biti JavaScript omogočen" @@ -2797,21 +2778,21 @@ msgstr "Ni definiranega indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalnost" @@ -2821,13 +2802,13 @@ msgstr "Kardinalnost" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Pripomba" @@ -2872,7 +2853,7 @@ msgstr "Pogled" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -2945,34 +2926,35 @@ msgstr "Dogodki" msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Uporabniki" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Dvojiški dnevnik" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Podvojevanje" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Vtičniki" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Pogoni" @@ -3026,6 +3008,104 @@ msgstr "Nedavne tabele" msgid "There are no recent tables" msgstr "Ni nobenih nedavnih tabel" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "Poizvedba SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Upravljavec" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Predpomnilnik poizvedb" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Niti" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Začasni podatki" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Zakasnjena vstavljanja" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Predpomnilnik ključev" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Stiki" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Razvrščanje" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabele" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinator transakcij" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Datoteke" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Izplakni (zapri) vse tabele" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Pokaži odprte tabele" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Prikaži gostitelje podrejencev" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Pokaži stanje glavnega strežnika" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Prikaži stanje podrejencev" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Izplakni predpomnilnik poizvedb" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Stanje InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistika poizvedb" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Vse spremenljivke stanja" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Nadziranje" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Svetovalec" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3123,7 +3203,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vrednost" @@ -3571,11 +3651,6 @@ msgstr "Naštevanje, izbrano s seznama določenih vrednosti" msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "Poizvedba SQL" - #: libraries/Util.class.php:710 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:292 @@ -3610,7 +3685,7 @@ msgid "Create PHP Code" msgstr "Ustvari kodo PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Osveži" @@ -3706,13 +3781,6 @@ msgstr "Natisni" msgid "shared" msgstr "deljeno" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabele" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3753,11 +3821,11 @@ msgstr "Preveri privilegije za zbirko podatkov "%s"." msgid "Check Privileges" msgstr "Preveri privilegije" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Ne morem prebrati konfiguracijske datoteke" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3765,12 +3833,12 @@ msgstr "" "To po navadi pomeni, da ima skladenjsko napako; prosimo, preverite vse " "spodaj prikazane napake." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3778,40 +3846,40 @@ msgstr "" "Ukaz [code]$cfg['PmaAbsoluteUri'][/code] MORA biti določen v konfiguracijski " "datoteki!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi na različico %s ali novejšo." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "poskus prepisa GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "možno izkoriščanje" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "zaznana številska tipka" @@ -6016,8 +6084,8 @@ msgstr "" "Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Uporabniško ime" @@ -6664,10 +6732,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Stanje InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Uporaba zaloge medpomnilnika" @@ -7364,16 +7428,16 @@ msgstr[1] "najdena %s druga rezultata" msgstr[2] "najdeni %s drugi rezultati" msgstr[3] "najdenih %s drugih rezultatov" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtriraj zbirke podatkov po imenu" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Počisti hitri filter" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtriraj predmete po imenu" @@ -7469,17 +7533,17 @@ msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktura in podatki" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Samo podatki" @@ -7874,8 +7938,7 @@ msgstr "Prikaži vrste MIME" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Gostitelj" @@ -8465,7 +8528,7 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Spremenljivka" @@ -8981,7 +9044,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dodatno" @@ -9680,7 +9743,7 @@ msgstr "Dodaj predpono tabeli" msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Brez" @@ -10025,7 +10088,7 @@ msgstr "Preklopi majhno/veliko" msgid "Toggle relation lines" msgstr "Preklopi relacijske črte" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" @@ -10091,31 +10154,31 @@ msgstr "Stran je bila ustvarjena" msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Stran" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Uvozi z izbrane strani" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Izvozi na izbrano stran" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Ustvari stran in izvozi nanjo" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Ime nove strani: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Izvozi/Uvozi v razmerju" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "priporočeno" @@ -10235,15 +10298,11 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Datoteke" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -10329,7 +10388,7 @@ msgstr "Modul" msgid "Library" msgstr "Knjižnica" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Različica" @@ -10388,10 +10447,6 @@ msgstr "Glavni strežnik je uspešno spremenjen v %s" msgid "This server is configured as master in a replication process." msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Pokaži stanje glavnega strežnika" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Pokaži povezane podrejence" @@ -10534,130 +10589,99 @@ msgstr "" "Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite " "konfigurirati?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena." -#: server_status.php:657 -msgid "Handler" -msgstr "Upravljavec" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Promet omrežja od zagona: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Predpomnilnik poizvedb" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Strežnik MySQL deluje že %1$s. Zagnal se je %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Niti" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Strežnik MySQL deluje kot glavni strežnik in podrejenec v " +"postopku podvojevanja." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Začasni podatki" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Zakasnjena vstavljanja" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:663 -msgid "Key cache" -msgstr "Predpomnilnik ključev" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " +"razdelek o podvojevanju." -#: server_status.php:664 -msgid "Joins" -msgstr "Stiki" +#: server_status.php:122 +msgid "Replication status" +msgstr "Stanje podvojevanja" -#: server_status.php:666 -msgid "Sorting" -msgstr "Razvrščanje" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " +"statistika, kot jo poroča strežnik MySQL, morda napačna." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinator transakcij" +#: server_status.php:149 +msgid "Received" +msgstr "Prejeto" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Izplakni (zapri) vse tabele" +#: server_status.php:168 +msgid "Sent" +msgstr "Poslano" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Pokaži odprte tabele" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "največ sočasnih povezav" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Prikaži gostitelje podrejencev" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Neuspeli poizkusi" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Prikaži stanje podrejencev" +#: server_status.php:253 +msgid "Aborted" +msgstr "Prekinjeno" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Izplakni predpomnilnik poizvedb" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Podatki o izvajanju" +#: server_status.php:329 +msgid "Command" +msgstr "Ukaz" -#: server_status.php:830 -msgid "All status variables" -msgstr "Vse spremenljivke stanja" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Nadziranje" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Svetovalec" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Število podatkovnih točk: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Hitrost osveževanja: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filtri" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Vsebuje besedo:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Prikaži samo opozorilne vrednosti" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtriraj po kategoriji ..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Prikaži neoblikovane vrednosti" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Sorodne povezave:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Zaženi analitik" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Navodila" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10665,7 +10689,7 @@ msgstr "" "Svetovalni sistem lahko nudi priporočila o strežniških spremenljivkah tako, " "da analizira spremenljivke stanja strežnika." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10674,7 +10698,7 @@ msgstr "" "Kakor koli, pomnite, da sistem nudi priporočila, ki temeljijo na preprostih " "računih in splošnih smernicah, ki morda ne ustrezajo vašemu sistemu." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10685,7 +10709,7 @@ msgstr "" "razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen " "učinek." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10695,817 +10719,39 @@ msgstr "" "nastavitve naenkrat, opazovanje ali primerjalno preizkušanje vaše zbirke " "podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Vprašanj od zagona: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Izjave" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "Št." - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Promet omrežja od zagona: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Strežnik MySQL deluje že %1$s. Zagnal se je %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Strežnik MySQL deluje kot glavni strežnik in podrejenec v " -"postopku podvojevanja." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " -"razdelek o podvojevanju." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Stanje podvojevanja" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " -"statistika, kot jo poroča strežnik MySQL, morda napačna." - -#: server_status.php:1191 -msgid "Received" -msgstr "Prejeto" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Poslano" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "največ sočasnih povezav" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Neuspeli poizkusi" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Prekinjeno" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Ukaz" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " -"povezave." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." - -#: server_status.php:1529 -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 "" -"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " -"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " -"shranitev izjav iz transakcije uporabljene začasne datoteke." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" -"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " -"dnevnika." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." - -#: server_status.php:1532 -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 "" -"Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med " -"izvajanjem izjav. Če je Created_tmp_disk_tables velika, boste morda želeli " -"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " -"na pomnilniku namesto na disku." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Koliko začasnih datotek je ustvaril mysqld." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " -"med izvajanjem stavkov." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " -"napake (najverjetneje podvojen ključ)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " -"na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Število zapisanih vrstic INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Število izvedenih izjav FLUSH." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Število notranjih izjav COMMIT." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Število izbrisov vrstice iz tabele." - -#: server_status.php:1541 -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 "" -"Strežnik MySQL lahko vpraša skladiščni pogon NDB Cluster, če ve za tabelo z " -"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " -"so bile tabele odkrite." - -#: server_status.php:1542 -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 "" -"Koliko krat je bil prvi vnos prebran iz indeksa. Če je vrednost visoka, " -"kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " -"FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." - -#: server_status.php:1543 -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 "" -"Število zahtev za branje vrstice, temelječih na ključu. Če je vrednost " -"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " -"indeksirane." - -#: server_status.php:1544 -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 "" -"Število zahtev za branje naslednje vrstice v zaporedju ključa. To je " -"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " -"pregledujete indeks." - -#: server_status.php:1545 -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 "" -"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " -"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Število zahtev za branje vrstice temelječih na ustaljenem položaju. To je " -"visoko, če izvajate veliko poizvedb, ki potrebujejo razvrščanje rezultata. " -"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " -"tabel, ali stike, ki ne uporabljajo ključev pravilno." - -#: server_status.php:1547 -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 "" -"Število zahtev za branje naslednje vrstice v podatkovni datoteki. To je " -"visoko, če izvajate veliko pregledov tabel. Na splošno to kaže, da vaše " -"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " -"prednosti indeksov, ki jih imate." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Število notranjih izjav ROLLBACK." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Število zahtev za posodobitev vrstice v tabeli." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Število zahtev za vstavitev vrstice v tabelo." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Število trenutno umazanih strani." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" -"Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Število prostih strani." - -#: server_status.php:1555 -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 "" -"Število zapahnjenih strani v zalogi medpomnilnika InnoDB. Te strani so " -"trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " -"ne morejo biti izplaknjene ali odstranjene." - -#: server_status.php:1556 -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 "" -"Število zasedenih strani, ker so bile dodeljene upravljalni skupni uporabi, " -"kot je zaklepanje vrstic ali prilagodljiv zgoščevalni indeks. Vrednost se " -"lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Skupna velikost zaloge medpomnilnika, v straneh." - -#: server_status.php:1558 -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 "" -"Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " -"poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " -"izvaja zaporedno pregledovanje celotne tabele." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " -"medpomnilnika in je moral izvesti enostransko branje." - -#: server_status.php:1562 -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 "" -"Po navadi pisanje v zalogo medpomnilnika InnoDB poteka v ozadju. Če pa je " -"potrebno brati ali ustvariti stran in ni na voljo nobene čiste strani, je " -"potrebno počakati, da se strani najprej izplaknejo. Števec šteje primere teh " -"čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " -"morala biti vrednost majhna." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Število dozdajšnjih posegov fsync()." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Trenutno število čakajočih posegov fsync()." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Trenutno število čakajočih branj." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Trenutno število čakajočih pisanj." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Količina do zdaj prebranih podatkov, v bajtih." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Skupno število branj podatkov." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Skupno število zapisovanj podatkov." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Količina do zdaj zapisanih podatkov, v bajtih." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." - -#: server_status.php:1574 -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 "" -"Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " -"in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Število zahtev pisanja v dnevnik." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Število fizičnih pisanj v dnevniško datoteko." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Število čakajoče dnevniške datoteke fsyncs." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Čakajoča pisanja v dnevniško datoteko." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Število bajtov zapisanih v dnevniško datoteko." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Število ustvarjenih strani." - -#: server_status.php:1582 -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 "" -"Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " -"v straneh; velikost strani omogoča preprosto pretvorbo v bajte." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Število prebranih strani." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Število zapisanih strani." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Število zaklepov vrstic, na katere se trenutno čaka." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Število čakanj na zaklepe vrstic." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Število vrstic izbrisanih iz tabel InnoDB." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Število vrstic vstavljenih v tabele InnoDB." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Število vrstic prebranih iz tabel InnoDB." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Število vrstic posodobljenih v tabelah InnoDB." - -#: server_status.php:1594 -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 "" -"Število blokov ključev v predpommnilniku ključev, ki so se spremenili, " -"vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " -"Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " -"uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." - -#: server_status.php:1596 -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 "" -"Število uporabljenih blokov v predpomnilniku ključev. To je najvišja " -"dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " -"naenkrat v uporabi." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." - -#: server_status.php:1599 -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 "" -"Število fizičnih branj bloka ključev z diska. Če je Key_reads velik, potem " -"je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " -"pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " -"primerjavi z zahtevami za branje (izračunana vrednost)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Število fizičnih pisanj bloka ključev na disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " -"vrednost)" - -#: server_status.php:1604 -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 "" -"Skupni izdatek zadnje prevedene poizvedbe, kot ga je izračunal optimizator " -"poizvedb. Uporabno za primerjanje izdatkov različnih načrtov poizvedb za " -"enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " -"poizvedba." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " -"najverjetneje premajhen." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Število odprtih datotek." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Število odprtih tabel." - -#: server_status.php:1611 -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 "" -"Število prostih pomnilniških blokov v predpomnilniku poizvedb. Visoko " -"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " -"izvedbo stavka FLUSH QUERY CACHE." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Količina prostega spomina za predpomnilnik poizvedb." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Število zadetkov predpomnilnika." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Število poizvedb dodanih v predpomnilnik." - -#: server_status.php:1615 -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 "" -"Število poizvedb, ki so bile izbrisane iz predpomnilnika, da se sprosti " -"spomin za predpomnenje novih poizvedb. Informacija lahko pomaga pri " -"uravnavanju velikosti predpomnilnika poizvedb. Predpomnilnik poizvedb " -"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " -"poizvedbe naj odstrani iz predpomnilnika." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " -"zaradi nastavitve query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Število zabeleženih poizvedb v predpomnilniku." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Skupno število blokov v predpomnilniku poizvedb." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." - -#: server_status.php:1620 -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 "" -"Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " -"preverite indekse vaših tabel." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." - -#: server_status.php:1622 -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 "" -"Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " -"(Če to ni 0, previdno preverite indekse vaših tabel.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " -"kritično, četudi je veliko.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" -"Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " -"SQL podrejenca." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " -"sekund." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." - -#: server_status.php:1630 -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 "" -"Število prehodov spajanja, ki jih je moral opraviti algoritem razvrščanja. " -"Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " -"sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Število razvrščanj, ki so bila storjena z razponi." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Število razvrščenih vrstic." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." - -#: server_status.php:1635 -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 "" -"Koliko krat zaklepa tabele ni bilo mogoče pridobiti takoj in je bilo " -"potrebno počakati. Če je to visoko in imate težave z zmogljivostjo, najprej " -"optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " -"ali uporabite podvojevanje." - -#: server_status.php:1636 -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 "" -"Število niti v predpomnilniku niti. Delež zadetkov predpomnilnika se lahko " -"izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " -"povečajte svoj thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Število trenutno odprtih povezav." - -#: server_status.php:1638 -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 "" -"Število niti ustvarjenih za ravnanje s povezavami. Če je Threads_created " -"velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " -"ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Število niti, ki ne spijo." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Začni nadziranje" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Navodila/Namestitev" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Preurejanje/urejanje grafikonov je končano" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Dodaj grafikon" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Preuredi/uredi grafikone" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Stolpci grafikona" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11513,15 +10759,15 @@ msgstr "" "Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " "zapleteno nastavitev, jo boste morda želeli izvoziti." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Povrni na privzeto" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Navodila nadziranja" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11535,7 +10781,7 @@ msgstr "" "general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " "poveča obremenitev strežnika do 15 %" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11547,11 +10793,11 @@ msgstr "" "tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " "strežniške zmožnosti izrisa grafikonov." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Uporaba monitorja:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11562,7 +10808,7 @@ msgstr "" "pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " "grafikonu." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11574,11 +10820,11 @@ msgstr "" "grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko " "kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Prosimo, pomnite:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11591,79 +10837,79 @@ msgstr "" "časovni razpon ter onemogočite general_log in počistite njene tabele, ko " "nadziranja ne potrebujete več." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Prednastavljeni grafikon" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Spremenljivke stanja" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Izberite serije:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Pogosto nadzirano" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "ali vnesite ime spremenljivke:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Prikaži kot vrednost razlike" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Uporabi delitelja" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Pripni enoto k vrednostim podatkov" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Dodaj serijo" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Počisti serije" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Serije v grafikonu:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Statistika dnevnikov" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Izbrano časovno območje:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Analitik poizvedb" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11672,7 +10918,7 @@ msgstr[1] "%d sekundi" msgstr[2] "%d sekunde" msgstr[3] "%d sekund" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11681,6 +10927,731 @@ msgstr[1] "%d minuti" msgstr[2] "%d minute" msgstr[3] "%d minut" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Vprašanj od zagona: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Izjave" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "Št." + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filtri" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Vsebuje besedo:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Prikaži samo opozorilne vrednosti" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtriraj po kategoriji ..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Prikaži neoblikovane vrednosti" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Sorodne povezave:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " +"povezave." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." + +#: server_status_variables.php:334 +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 "" +"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " +"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " +"shranitev izjav iz transakcije uporabljene začasne datoteke." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" +"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " +"dnevnika." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." + +#: server_status_variables.php:346 +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 "" +"Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med " +"izvajanjem izjav. Če je Created_tmp_disk_tables velika, boste morda želeli " +"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " +"na pomnilniku namesto na disku." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Koliko začasnih datotek je ustvaril mysqld." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " +"med izvajanjem stavkov." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " +"napake (najverjetneje podvojen ključ)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " +"na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Število zapisanih vrstic INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Število izvedenih izjav FLUSH." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Število notranjih izjav COMMIT." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Število izbrisov vrstice iz tabele." + +#: server_status_variables.php:381 +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 "" +"Strežnik MySQL lahko vpraša skladiščni pogon NDB Cluster, če ve za tabelo z " +"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " +"so bile tabele odkrite." + +#: server_status_variables.php:387 +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 "" +"Koliko krat je bil prvi vnos prebran iz indeksa. Če je vrednost visoka, " +"kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " +"FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." + +#: server_status_variables.php:393 +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 "" +"Število zahtev za branje vrstice, temelječih na ključu. Če je vrednost " +"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " +"indeksirane." + +#: server_status_variables.php:398 +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 "" +"Število zahtev za branje naslednje vrstice v zaporedju ključa. To je " +"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " +"pregledujete indeks." + +#: server_status_variables.php:403 +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 "" +"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " +"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Število zahtev za branje vrstice temelječih na ustaljenem položaju. To je " +"visoko, če izvajate veliko poizvedb, ki potrebujejo razvrščanje rezultata. " +"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " +"tabel, ali stike, ki ne uporabljajo ključev pravilno." + +#: server_status_variables.php:414 +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 "" +"Število zahtev za branje naslednje vrstice v podatkovni datoteki. To je " +"visoko, če izvajate veliko pregledov tabel. Na splošno to kaže, da vaše " +"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " +"prednosti indeksov, ki jih imate." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Število notranjih izjav ROLLBACK." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Število zahtev za posodobitev vrstice v tabeli." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Število zahtev za vstavitev vrstice v tabelo." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Število trenutno umazanih strani." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" +"Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Število prostih strani." + +#: server_status_variables.php:443 +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 "" +"Število zapahnjenih strani v zalogi medpomnilnika InnoDB. Te strani so " +"trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " +"ne morejo biti izplaknjene ali odstranjene." + +#: server_status_variables.php:448 +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 "" +"Število zasedenih strani, ker so bile dodeljene upravljalni skupni uporabi, " +"kot je zaklepanje vrstic ali prilagodljiv zgoščevalni indeks. Vrednost se " +"lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Skupna velikost zaloge medpomnilnika, v straneh." + +#: server_status_variables.php:458 +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 "" +"Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " +"poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " +"izvaja zaporedno pregledovanje celotne tabele." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " +"medpomnilnika in je moral izvesti enostransko branje." + +#: server_status_variables.php:474 +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 "" +"Po navadi pisanje v zalogo medpomnilnika InnoDB poteka v ozadju. Če pa je " +"potrebno brati ali ustvariti stran in ni na voljo nobene čiste strani, je " +"potrebno počakati, da se strani najprej izplaknejo. Števec šteje primere teh " +"čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " +"morala biti vrednost majhna." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Število dozdajšnjih posegov fsync()." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Trenutno število čakajočih posegov fsync()." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Trenutno število čakajočih branj." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Trenutno število čakajočih pisanj." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Količina do zdaj prebranih podatkov, v bajtih." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Skupno število branj podatkov." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Skupno število zapisovanj podatkov." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Količina do zdaj zapisanih podatkov, v bajtih." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." + +#: server_status_variables.php:516 +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 "" +"Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " +"in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Število zahtev pisanja v dnevnik." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Število fizičnih pisanj v dnevniško datoteko." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Število čakajoče dnevniške datoteke fsyncs." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Čakajoča pisanja v dnevniško datoteko." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Število bajtov zapisanih v dnevniško datoteko." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Število ustvarjenih strani." + +#: server_status_variables.php:541 +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 "" +"Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " +"v straneh; velikost strani omogoča preprosto pretvorbo v bajte." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Število prebranih strani." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Število zapisanih strani." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Število zaklepov vrstic, na katere se trenutno čaka." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Število čakanj na zaklepe vrstic." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Število vrstic izbrisanih iz tabel InnoDB." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Število vrstic vstavljenih v tabele InnoDB." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Število vrstic prebranih iz tabel InnoDB." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Število vrstic posodobljenih v tabelah InnoDB." + +#: server_status_variables.php:579 +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 "" +"Število blokov ključev v predpommnilniku ključev, ki so se spremenili, " +"vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " +"Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " +"uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." + +#: server_status_variables.php:588 +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 "" +"Število uporabljenih blokov v predpomnilniku ključev. To je najvišja " +"dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " +"naenkrat v uporabi." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." + +#: server_status_variables.php:599 +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 "" +"Število fizičnih branj bloka ključev z diska. Če je Key_reads velik, potem " +"je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " +"pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " +"primerjavi z zahtevami za branje (izračunana vrednost)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Število fizičnih pisanj bloka ključev na disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " +"vrednost)" + +#: server_status_variables.php:619 +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 "" +"Skupni izdatek zadnje prevedene poizvedbe, kot ga je izračunal optimizator " +"poizvedb. Uporabno za primerjanje izdatkov različnih načrtov poizvedb za " +"enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " +"poizvedba." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " +"najverjetneje premajhen." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Število odprtih datotek." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Število odprtih tabel." + +#: server_status_variables.php:645 +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 "" +"Število prostih pomnilniških blokov v predpomnilniku poizvedb. Visoko " +"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " +"izvedbo stavka FLUSH QUERY CACHE." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Količina prostega spomina za predpomnilnik poizvedb." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Število zadetkov predpomnilnika." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Število poizvedb dodanih v predpomnilnik." + +#: server_status_variables.php:659 +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 "" +"Število poizvedb, ki so bile izbrisane iz predpomnilnika, da se sprosti " +"spomin za predpomnenje novih poizvedb. Informacija lahko pomaga pri " +"uravnavanju velikosti predpomnilnika poizvedb. Predpomnilnik poizvedb " +"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " +"poizvedbe naj odstrani iz predpomnilnika." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " +"zaradi nastavitve query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Število zabeleženih poizvedb v predpomnilniku." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Skupno število blokov v predpomnilniku poizvedb." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." + +#: server_status_variables.php:679 +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 "" +"Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " +"preverite indekse vaših tabel." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." + +#: server_status_variables.php:686 +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 "" +"Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " +"(Če to ni 0, previdno preverite indekse vaših tabel.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " +"kritično, četudi je veliko.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" +"Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " +"SQL podrejenca." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " +"sekund." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." + +#: server_status_variables.php:717 +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 "" +"Število prehodov spajanja, ki jih je moral opraviti algoritem razvrščanja. " +"Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " +"sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Število razvrščanj, ki so bila storjena z razponi." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Število razvrščenih vrstic." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." + +#: server_status_variables.php:734 +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 "" +"Koliko krat zaklepa tabele ni bilo mogoče pridobiti takoj in je bilo " +"potrebno počakati. Če je to visoko in imate težave z zmogljivostjo, najprej " +"optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " +"ali uporabite podvojevanje." + +#: server_status_variables.php:740 +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 "" +"Število niti v predpomnilniku niti. Delež zadetkov predpomnilnika se lahko " +"izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " +"povečajte svoj thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Število trenutno odprtih povezav." + +#: server_status_variables.php:748 +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 "" +"Število niti ustvarjenih za ravnanje s povezavami. Če je Threads_created " +"velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " +"ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Število niti, ki ne spijo." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Nastavljanje spremenljivke je spodletelo" @@ -12266,26 +12237,26 @@ msgstr "Omejitev tujih ključev" msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledenje %1$s je bilo deaktivirano pri različici %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledenje %1$s je bilo aktivirano pri različici %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12293,119 +12264,119 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Napaka poizvedbe" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Stavek upravljanja s podatki je uspešno izbrisan" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Prikaži %1$s z datumi od %2$s do %3$s uporabnika %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Izbriši vrstico podatkov sledenja iz poročila" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Brez podatkov" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "Odložen SQL" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "Izvršitev SQL" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Prikaži različice" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktiviraj sledenje za %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Aktiviraj sledenje %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Ustvari različico %1$s tabele %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Ustvari različico" @@ -12557,11 +12528,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time je trenutno nastavljen na %d s." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Beleženje počasnih poizvedb" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Dnevnik počasnih poizvedb je onemogočen." @@ -12578,15 +12549,34 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries je nastavljen na 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Omogočite beleženje počasnih poizvedb tako, da nastavite {log_slow_queries} " +"na 'ON'. To bo pomagalo pri odpravljanju težav s slabo delujočimi " +"poizvedbami." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries je nastavljen na 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Serije izdaj" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "Strežnik MySQL različice nižje od 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12594,21 +12584,21 @@ msgstr "" "Morali bi posodobiti, saj ima MySQL 5.1 izboljšano učinkovitost, MySQL 5.5 " "pa še bolj." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Trenutna različica: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Manjša različica" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Različica nižja od 5.1.30 (prvi izid GA 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12616,24 +12606,24 @@ msgstr "" "Morali bi posodobiti, saj imajo najnovejše različice MySQL 5.1 izboljšano " "učinkovitost, MySQL 5.5 pa še bolj." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Različica nižja od 5.5.8 (prvi izid GA 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Morali bi nadgraditi, na ustaljeno različico MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribucija" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Različica je prevedena iz izvorne kode, in ni uradna izdaja MySQL." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12643,40 +12633,40 @@ msgstr "" "distribucijo. Priročnik MySQL je točen samo za uradne izdaje MySQL, ne za " "katere koli paketne distribucije (kot so RedHat, Debian/Ubuntu itn.)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "našel sem 'source' v version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "Priročnik MySQL je točen samo za uradne izdaje MySQL." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Dokumentacija Percona se nahaja na http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "našel sem 'percona' v version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Dokumentacija Drizzle se nahaja na http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Niz različice (%s) se ujema s shemo različic Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arhitektura MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL ni preveden kot 64-bitni paket." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12687,20 +12677,20 @@ msgstr "" "vašega pomnilnika. Morda boste želeli razmisliti o namestitvi 64-bitne " "različice MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Razpoložljiv pomnilnik na tem gostitelju: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Predpomnjenje poizvedb je onemogočeno" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Predpomnjenje poizvedb ni omogočeno." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12712,21 +12702,21 @@ msgstr "" "na dvomestno vrednost MiB in nastavite {query_cache_type} na 'ON'. " "Pomnite: Če uporabljate memcached, to priporočilo prezrite." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size je nastavljen na 0 ali pa je query_cache_type nastavljen na " "'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Način predpomnjenja poizvedb" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Podoptimalni način predpomnjenja." -#: libraries/advisory_rules.txt:157 +#: 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 namesto predpomnjenja " "poizvedb MySQL, še posebej, če imate več podrejencev." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12747,35 +12737,35 @@ msgstr "" "Predpomnjenje poizvedb je omogočeno in strežnik prejema %d poizvedb na " "sekundo. To pravilo se sproži, če je več kot 100 poizvedb na sekundo." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Učinkovitost predpomnjenja poizvedb (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" "Predpomnjenje poizvedb ne teče učinkovito, saj ima nizek delež zadetkov." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Razmislite o povečanju {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Trenutni delež zadetkov predpomnilnika poizvedb %s %% je pod 20 %%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Uporaba predpomnilnika poizvedb" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Izkoriščanega je manj kot 80 %% predpomnilnika poizvedb." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12783,7 +12773,7 @@ msgstr "" "To morda povzroča prenizek {query_cache_limit}. Izplaknitev predpomnilnika " "poizvedb bo morda prav tako pomagala." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12792,15 +12782,15 @@ msgstr "" "Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " "skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Razdrobljenost predpomnilnika poizvedb" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Predpomnilnik poizvedb je precej razdrobljen." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12820,7 +12810,7 @@ msgstr "" "lahko na povprečno velikost vaših poizvedb v pomnilniku z uporabo formule: " "(query_cache_size - qcache_free_memory) / qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12831,11 +12821,11 @@ msgstr "" "pomeni, da je predpomnilnik poizvedb izmeničen vzorec prostih in " "uporabljenih blokov. Vrednost bi morala biti pod 20 %%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Oklestitve predpomnilnika poizvedb ob majhnem pomnilniku" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -12843,7 +12833,7 @@ msgstr "" "Predpomnjene poizvedbe so odstranjene zaradi nizkega pomnilnika " "predpomnilnika poizvedb." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12853,7 +12843,7 @@ msgstr "" "uporaba sredstev za vzdrževanje predpomnilnika verjetno povečala z njegovo " "velikostjo, zato to storite v majhnih korakih in spremljajte rezultate." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12862,11 +12852,11 @@ msgstr "" "Razmerje med odstranjenimi in vstavljenimi poizvedbami je %s %%. Nižja je " "vrednost, boljše je. (Meja sprožitve tega pravila: 0,1 %%.)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Največja velikost predpomnilnika poizvedb" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12875,7 +12865,7 @@ msgstr "" "poizvedb lahko povzročijo precejšnje povečanje sredstev, potrebnih za " "vzdrževanje pomnilnika." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12883,23 +12873,23 @@ msgstr "" "Odvisno od vašega sistema bo zmanjšanje te vrednost morda povečalo " "zmogljivost." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Trenutna velikost predpomnilnika poizvedb: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Velikost najmanjšega rezultata predpomnilnika poizvedb" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Privzeta največja velikost množice podatkov v predpomnilniku poizvedb je 1 " "MiB." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12919,19 +12909,19 @@ msgstr "" "(pogosto neveljavne zaradi posodobitev tabel), povečanje {query_cache_limit} " "lahko zmanjšalo učinkovitost." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit je nastavljen na 1 MiB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Odstotek razvrščanj, ki so povzročila začasne tabele" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Preveč razvrščanj povzroča začasne tabele." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12939,7 +12929,7 @@ msgstr "" "Razmislite o povečanju sort_buffer_size in/ali read_rnd_buffer_size, odvisno " "od omejitev vašega sistemskega pomnilnika" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12948,26 +12938,26 @@ msgstr "" "%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja " "od 10 %%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Delež razvrščanj, ki povzroča začasne tabele" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" "Povprečje začasnih tabel: %s; vrednost bi morala biti manj kot 1 na uro." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Razvrščanje vrstic" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Veliko vrstic je razvrščanih." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12979,20 +12969,20 @@ msgstr "" "uporabljajo v stavku ORDER BY indeksirana polja, saj bo to sledilo v veliko " "hitrejše razvrščanje" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Povprečje razvrščenih vrstic: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Delež stikov brez indeksov" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Obstaja preveč stikov brez indeksov." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13000,20 +12990,20 @@ msgstr "" "To pomeni, da stiki izvajajo polne preglede tabel. Dodajanje indeksov za " "stolpce, ki se uporabljajo v pogojih stikov, bo zelo pohitrilo stike tabel" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "Povprečje stikov tabel: %s; vrednost bi morala biti manj kot 1 na uro" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Delež branja prvega vnosa indeksa" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Delež branja prvega vnosa indeksa je visok." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13029,22 +13019,22 @@ msgstr "" "in/ali pohitril polne preglede indeksov. Drugače pa je polne preglede " "indeksov mogoče zmanjšati samo s preoblikovanjem poizvedb." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Povprečje pregledovanja indeksov: %s; vrednost bi morala biti manj kot 1 na " "uro" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Delež branja stalnega položaja" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Delež branja podatkov s stalnega položaja je visok." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13054,7 +13044,7 @@ msgstr "" "pregled tabele, vključno s poizvedbami stikov, ki ne uporabljajo indeksov. " "Dodajte indekse, kjer je to primerno." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13063,15 +13053,15 @@ msgstr "" "Delež povprečja branja stalnega položaja: %s; vrednost bi morala biti manj " "kot 1 na uro" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Delež branja naslednje vrstice v tabeli" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Delež branja naslednje vrstice v tabeli je visok." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13079,7 +13069,7 @@ msgstr "" "To kaže, da mora veliko poizvedb izvesti polne preglede tabele. Dodajte " "indekse, kjer je to primerno." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13087,15 +13077,15 @@ msgstr "" "Delež branja naslednje vrstice v tabeli: %s; vrednost bi morala biti manj " "kot 1 na uro" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size proti max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size in max_heap_table_size nista enaki." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13107,23 +13097,23 @@ msgstr "" "želite povečati omejitev tabel v pomnilniku, boste morali povečati tudi " "drugo vrednost." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Trenutni vrednosti sta tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Odstotek začasnih tabel na disku" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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 "" "Veliko začasnih tabel je zapisanih na disk, namesto shranjenih v pomnilniku." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13141,7 +13131,7 @@ msgstr "" "bajtov), kot je omenjeno na začetku članka skupine Pythian" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13150,11 +13140,11 @@ msgstr "" "%s %% vseh začasnih tabel je zapisanih na disk; vrednost bi morala biti pod " "25 %%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Delež začasnih tabel na disku" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13172,7 +13162,7 @@ msgstr "" "bajtov), kot je omenjeno v dokumentaciji MySQL" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13181,16 +13171,16 @@ msgstr "" "Delež začasnih tabel, pisanih na disk: %s; vrednost bi morala biti manj kot " "1 na uro" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Velikost medpomnilnika ključev MyISAM" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Medpomnilnika ključev ni inicializiran. Indeksi MyISAM ne bodo predpomnjeni." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13198,23 +13188,23 @@ msgstr "" "Nastavite {key_buffer_size} glede na velikost vaših indeksov MyISAM. 64M je " "dober začetek." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size je 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Največji %% medpomnilnika ključev MyISAM kadar koli uporabljen" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "" "%% uporabljenega medpomnilnika ključev MyISAM (predpomnilnika indeksov) je " "nizek." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13224,7 +13214,7 @@ msgstr "" "vaše tabele in pogledati, ali so bili indeksi odstranjeni, ali preveriti " "poizvedbe in pričakovanja o tem, kateri indeksi se uporabljajo." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13232,44 +13222,44 @@ msgstr "" "največji %% kadar koli uporabljenega medpomnilnika ključev MyISAM: %s %%; " "vrednost bi morala biti nad 95 %%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Odstotek uporabljenega medpomnilnika ključev MyISAM" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% uporabljenega medpomnilnika ključev MyISAM: %s %%; vrednost bi morala " "biti nad 95 %%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Odstotek branj indeksov iz pomnilnika" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "%% indeksov, ki uporabljajo medpomnilnik ključev MyISAM, je nizek." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Morda boste morali povečati {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Branj indeksov iz pomnilnika: %s %%; vrednost bi morala biti nad 95 %%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Delež odpiranj tabel" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Delež odpiranj tabel je visok." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13277,16 +13267,16 @@ msgstr "" "Odpiranje tabel zahteva branje/pisanje na disk, kar je potrošno. Povečanje " "{table_open_cache} se bo temu morda izognilo." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Delež odprtih tabel: %s; vrednost bi morala biti manj kot 10 na uro" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Odstotek omejitve uporabljenih odprtih datotek" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13294,7 +13284,7 @@ msgstr "" "Število odprtih datotek se približuje največjemu številu odprtih datotek. " "Morda boste prejeli napako \"Preveč odprtih datotek\"." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13302,60 +13292,60 @@ msgstr "" "Razmislite o povečanju {open_files_limit} in preverite dnevnik napak po " "ponovnem zagonu, ko spremenite open_files_limit." -#: libraries/advisory_rules.txt:332 +#: 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 "Število odprtih datotek je na %s %% omejitve. Moralo bi biti pod 85 %%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Delež odprtih datotek" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Delež odprtih datotek je visok." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Delež odprtih datotek: %s; vrednost bi morala biti pod 5 na uro" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% takojšnjih zaklepov tabel" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Preveč zaklepov tabel ni bilo dodeljenih nenudoma." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimizirajte poizvedbe ali uporabite InnoDB, da zmanjšate čakanje zaradi " "zaklepa." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Takojšnji zaklepi tabel: %s %%; vrednost bi morala biti nad 95 %%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Delež čakanja na zaklep tabel" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Delež čakanja na zaklep tabel: %s; vrednost bi morala biti manj kot 1 na uro" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Predpomnilnik niti" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13363,44 +13353,44 @@ msgstr "" "Predpomnilnik niti je onemogočen, kar povzroča večjo porabo sredstev pri " "novih povezavah z MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" "Omogočite predpomnilnik niti tako, da nastavite {thread_cache_size} na večje " "od 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Predpomnilnik niti je nastavljen na 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "%% deleža zadetkov predpomnilnika niti" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Predpomnjenje niti ni učinkovito." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Povečajte {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Delež zadetkov predpomnilnika niti: %s %%; vrednost bi morala biti nad 80 %%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Niti, ki se zaganjajo počasi" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Obstaja preveč niti, ki se zaganjajo počasi." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13409,20 +13399,20 @@ msgstr "" "za precej preproste operacije. Morda boste želeli pazljivo spremljati " "obremenitev vašega sistema." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s nit(i) je za zagon potrebovalo več kot %s sekund; moralo bi biti 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Čas počasnega zagona" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads je nad 2 s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13430,23 +13420,23 @@ msgstr "" "Nastavite slow_launch_time na 1 s ali 2 s za pravilno preštevanje niti, ki " "se zaganjajo počasi" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time je nastavljen na %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Odstotek uporabljenih povezav" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "" "Največje število uporabljenih povezav se bliža vrednosti max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13456,22 +13446,22 @@ msgstr "" "ne zaprejo upravljavca zbirk podatkov pravilno, hitreje prekinjene. " "Prepričajte se, da koda pravilno zapira upravljavce zbirk podatkov." -#: libraries/advisory_rules.txt:390 +#: 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 je na %s %% max_connections; moralo bi biti pod 80 %%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Odstotek prekinjenih povezav" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Prekinjenih je preveč povezav." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Ta članek vam bo morda pomagal izslediti " "vir." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s %% vseh povezav je prekinjenih. Vrednost bi morala biti pod 1 %%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Delež prekinjenih povezav" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" "Delež prekinjenih povezav je %s; vrednost bi morala biti manj kot 1 na uro" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Odstotek prekinjenih odjemalcev" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Preveč odjemalcev je prekinjenih." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13517,42 +13507,42 @@ msgstr "" "MySQL. To je lahko zaradi omrežnih težav ali pa koda ne zapira pravilno " "upravljavca zbirk podatkov. Preverite svoje omrežje in kodo." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s %% vseh odjemalcev je prekinjenih. Vrednost bi morala biti pod 2 %%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Delež prekinjenih objemalcev" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Delež prekinjenih objemalcev je %s; vrednost bi morala biti manj kot 1 na uro" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Je InnoDB onemogočen?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Nimate omogočenega InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB je po navadi boljša izbira za pogone tabel." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb je nastavljeno na 'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "Velikost dnevnika InnoDB" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13560,7 +13550,7 @@ msgstr "" "Velikost dnevnika InnoDB v primerjavi z zalogo medpomnilnika InnoDB ni " "primerne velikosti." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13584,7 +13574,7 @@ msgstr "" "com/2007/01/increase-innodblogfilesize-proper-way.html\">to objavo na blogu" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13593,15 +13583,15 @@ msgstr "" "Velikost vašega dnevnika InnoDB je v primerjavi z velikostjo zaloge " "medpomnilnika InnoDB %s-%%; ne bi smela biti pod 20 %%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Največja velikost dnevnika InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Velikost datoteke dnevnika InnoDB je nezadostne velikosti." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13625,20 +13615,20 @@ msgstr "" "com/2007/01/increase-innodblogfilesize-proper-way.html\">to objavo na blogu" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Absolutna velikost vašega dnevnika InnoDB je %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Velikost zaloge medpomnilnika InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Zaloga vašega medpomnilnika InnoDB je precej majhna." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13663,7 +13653,7 @@ msgstr "" "si tudi ta članek" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13676,15 +13666,15 @@ msgstr "" "popolnoma primerno za vaš sistem, če nimate veliko tabel InnoDB ali na isti " "napravi tečejo druge storitve." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "Sočasna vstavljanja MyISAM" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Omogočite concurrent_insert z nastavitvijo na 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also dokumentacijo MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB poslanih od zadnje osvežitve" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB prejetih od zadnje osvežitve" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Promet strežnika (v KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Povezav od zadnje osvežitve" + +#~ msgid "Questions since last refresh" +#~ msgstr "Vprašanja od zadnje osvežitve" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Vprašanja (izvedene poizvedbe strežnika)" + +#~ msgid "Runtime Information" +#~ msgstr "Podatki o izvajanju" + +#~ msgid "Number of data points: " +#~ msgstr "Število podatkovnih točk: " + +#~ msgid "Refresh rate: " +#~ msgstr "Hitrost osveževanja: " + +#~ msgid "Run analyzer" +#~ msgstr "Zaženi analitik" + #~ msgid "Show more actions" #~ msgstr "Prikaži več dejanj" diff --git a/po/sq.po b/po/sq.po index c5070f977f..0d3743fe8b 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Albanian " -"\n" -"Language: sq\n" +"Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Kërko" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Zbato" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Emri i kyçit" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Përshkrimi" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komenti për databazën: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Komentet e tabelës" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolonë(a)" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Kolonë(a)" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Lloji" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Lloji" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Prezgjedhur" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Prezgjedhur" msgid "Links to" msgstr "Lidhje me" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Komente" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Jo" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Jo" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Po" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -338,7 +338,7 @@ msgstr "Madhësia" msgid "in use" msgstr "në përdorim" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "në përdorim" msgid "Creation" msgstr "Krijimi" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Krijimi" msgid "Last update" msgstr "Ndryshimi i fundit" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -406,7 +406,7 @@ msgstr "Tabela të monitoruara" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databazat" @@ -414,17 +414,17 @@ msgstr "Databazat" msgid "Last version" msgstr "Versioni i fundit" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Krijuar" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Përditësuar" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Gjendja" @@ -439,7 +439,7 @@ msgstr "Veprimi" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Shfaq" @@ -455,11 +455,11 @@ msgstr "Fshij të dhënat e monitorimit për këtë tabelë" msgid "Drop" msgstr "Elemino" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "jo-aktiv" @@ -467,11 +467,11 @@ msgstr "jo-aktiv" msgid "Versions" msgstr "Versione" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Raporti i monitorimit" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Pamje çasti e strukturës" @@ -539,45 +539,45 @@ msgstr "Përdor OpenStreetMaps si nivel bazë" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Gjeometria" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Pikë" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Pika %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Shto një pikë të re" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linjë-varg" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Rrethi i Jashtëm" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Rrethi i Brendshëm" @@ -585,15 +585,15 @@ msgstr "Rrethi i Brendshëm" msgid "Add a linestring" msgstr "Shto një linestring" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Shto një rreth të brendshëm" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Shumëkëndësh" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Shto një shumëkëndësh" @@ -735,8 +735,9 @@ msgstr "Karakteristika të mëtejshme" msgid "Database server" msgstr "Serveri i Bazës së të Dhënave" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Serveri" @@ -755,7 +756,7 @@ msgstr "Versioni i protokollit" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Përdorues" @@ -988,12 +989,12 @@ msgstr "Duke ringarkuar të drejtat" msgid "Removing Selected Users" msgstr "Duke hequr përdoruesit e zgjedhur" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Mbyll" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1003,15 +1004,15 @@ msgstr "Mbyll" msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Grafiku i trafikut në kohë reale" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Grafiku i lidhjeve dhe proceseve në kohë reale" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Grafiku i query në kohë reale" @@ -1022,13 +1023,14 @@ msgstr "Të dhëna statike" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Të tjera" @@ -1043,48 +1045,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB të dërguara nga përditësimi i fundit" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB të marra nga përditësimi i fundit" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Trafiku i serverit (në KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Numri i lidhjeve nga përditësimi i fundit" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Proceset" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Lidhje/Procese" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Numri i 'questions' nga përditësimi i fundit" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Questions (instruksione të ekzekutuara nga serveri)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistikat e query" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Konfigurimi i monitorit lokal është i papajtueshëm" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1097,196 +1065,201 @@ msgstr "" "funksionojnë më. Ju lutemi rivendosni në gjendjen fillestare këto parametra " "në menunë Parametrat." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efikasiteti i cache të query" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Përdorimi i cache të query" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Cache e query e përdorur" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Përdorimi i CPU të sistemit" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Kujtesa e sistemit" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Swap i sistemit" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Ngarkesa mesatare" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Kujtesë gjithsej" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Kujtesa në cache" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Kujtesa në buffer" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Kujtesa e lirë" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Kujtesa e përdorur" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Gjithsej swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Swap në cache" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Byte të marrë" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Lidhje" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Proceset" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabelë(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Pyetje" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Parametrat" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Hiqe grafikun" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Asnjë lloj" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1294,449 +1267,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Vendos log_output në %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktivizo %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Ç'aktivizo %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Modifiko parametrat" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Parametrat aktuale" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Titulli i grafikut" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analizimi i log" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Kapërce në tabelën e Log" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nuk u gjet asnjë e dhënë" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Shpjego nxjerrjen" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Koha" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Koha gjithsej:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Rezultati i profilizimit" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafiku" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Modifiko grafikun" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Seria" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Mundësi filtrimi për log-un e tabelave" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Shuma e rreshtave të grupuara:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Gjithsej:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Duke ngarkuar log-et" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Ri-ngarko faqen" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importo" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analizo Query" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Rekomandim" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Justifikim" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Duke ngarkuar" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Duke përpunuar Kërkesën" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nuk është zgjedhur asnjë databazë." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Duke ndyshuar emrat e bazave të të dhënave" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ri-ngarko Bazën e të Dhënave" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Duke kopjuar Bazën e të Dhënave" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Duke ndryshuar familjen e gërmave" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabela duhet të ketë të paktën një kolonë" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Shto tabelë" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Fshih treguesit" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Afisho treguesit" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Kontrolli i çelësave të huaj:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Aktiv)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Jo aktiv)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Në kërkim" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Fshih rezultatet e kërkimit" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Afisho rezultatet e kërkimit" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Shfleto" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Duke fshirë %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "Redaktues i ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Vlera për fushën %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Vlera për një fushë të re" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Jepni çdo vlerë në një fushë të veçantë" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Shto %d vlerë(a)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Fshih kutinë e query" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Afisho kutinë e query" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ndrysho" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1745,189 +1720,194 @@ msgstr "" msgid "Save" msgstr "Ruaj" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Fshih kriteret e kërkimit" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Afisho kriteret e kërkimit" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Kërkim me Zoom" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Zgjidhni dy kolona" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Rezultati SQL" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Përmbajtja e të dhënave të kësaj pike" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Shto një fushë të re" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopjo emrat e kolonave" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Afisho rreshtat e të dhënave" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Gjenero fjalëkalimin" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Gjenero" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Më shumë" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Trego panelin" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Fshih panelin" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "Faqja e kerkuar nuk u gjet ne historik, ndoshta ka skaduar." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1935,266 +1915,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "e përditësuar" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Kryer" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Paraardhësi" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Pasardhësi" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Sot" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Janar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mars" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Prill" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Qershor" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Korrik" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Gusht" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Tetor" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dhj" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "E diel" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "E hënë" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "E martë" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "E premte" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Die" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Hë" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Më" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "En" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Sh" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "asnjë" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minutë" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekondë" @@ -2244,16 +2224,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "në sekondë" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "në minutë" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "në orë" @@ -2279,7 +2259,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Në ngjitje" @@ -2288,7 +2268,7 @@ msgstr "Në ngjitje" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Në zbritje" @@ -2403,7 +2383,7 @@ msgstr "Të fshihen të dhënat korresponduese me tabelën %s?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Fshi" @@ -2600,7 +2580,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Hiq" @@ -2657,12 +2637,13 @@ msgstr "Zgjidh gjithçka" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" @@ -2670,7 +2651,7 @@ msgstr "Eksporto" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2754,16 +2735,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2777,21 +2758,21 @@ msgstr "Asnjë tregues i përcaktuar!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Tregues" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2801,13 +2782,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Rradhitja" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komente" @@ -2850,7 +2831,7 @@ msgstr "Paraqitje" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -2923,37 +2904,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Përdorues" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "Binar" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikimi" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Të ndryshueshmet" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Familje gërmash" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3002,6 +2984,108 @@ msgstr "Asnjë tabelë" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "query SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "Lloji i query" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "Përdor shtimet me vonesë" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabela" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Fusha" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "Shfaq tabelat" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Gjëndja InnoDB" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistikat e query" + +#: 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." @@ -3094,7 +3178,7 @@ msgstr "Operatori" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vlerë" @@ -3495,11 +3579,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Madhësia maksimum: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "query SQL" - #: libraries/Util.class.php:710 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:292 @@ -3534,7 +3613,7 @@ msgid "Create PHP Code" msgstr "Krijo kodin PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Rifresko" @@ -3631,13 +3710,6 @@ msgstr "Printo" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabela" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3681,22 +3753,22 @@ msgstr "Kontrollo të drejtat për databazën "%s"." msgid "Check Privileges" msgstr "Kontrollo të drejtat" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3708,38 +3780,38 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file " "i konfigurimit!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5899,8 +5971,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" @@ -6559,10 +6631,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Gjëndja InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7221,18 +7289,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Transformo tabelën e renditur sipas" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7336,17 +7404,17 @@ msgid "Drop the database (DROP)" msgstr "Fshij bazën e të dhënave (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Vetëm struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktura dhe të dhënat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Vetëm të dhënat" @@ -7774,8 +7842,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Pritësi" @@ -8365,7 +8432,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "E ndryshueshme" @@ -8923,7 +8990,7 @@ msgstr "Pronësi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Shtesë" @@ -9651,7 +9718,7 @@ msgstr "Shtoji prefiks tabelës" msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10022,7 +10089,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Kineze tradicionale" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10104,41 +10171,41 @@ msgstr "Tabela %s u eleminua" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Përdorimi" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importo files" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Krijo një tregues të ri" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Emri i përdoruesit" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10260,16 +10327,11 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Fusha" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -10354,7 +10416,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Versioni i PHP" @@ -10415,10 +10477,6 @@ msgstr "Të drejtat u përditësuan me sukses." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10550,12 +10608,12 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10563,871 +10621,160 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "Lloji i query" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "Përdor shtimet me vonesë" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "Marrë" + +#: server_status.php:168 +msgid "Sent" +msgstr "Dërguar" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "Shfaq tabelat" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Përpjekje të dështuara" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Dështoi" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Komanda" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informacione mbi Runtime" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "regjistrime për faqe" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Rifresko" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Mos ndrysho fjalëkalim" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "Shfaq tabelat" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "Shfaq tabelat" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Relacione" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Lloji i query" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funksioni" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Instruksione" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Ky server MySQL po punon që prej %s. U nis më %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Marrë" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Dërguar" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Përpjekje të dështuara" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Dështoi" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Komanda" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" -"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -msgid "Percentage of used key cache (calculated value)" -msgstr "Familja gërmave të file:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Gjurmimi nuk është aktiv." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sht" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy msgid "Add chart" msgstr "Shto një fushë të re" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Shto/Fshi kollonat e fushës" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11436,7 +10783,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11444,18 +10791,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11463,11 +10810,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11475,90 +10822,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ndysho emrin e databazës në" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Zgjidh Tabelat" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Shto një përdorues të ri" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "query SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Statistikat e rreshtave" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Zgjidh Tabelat" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lloji i query" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11566,7 +10913,7 @@ msgid_plural "%d seconds" msgstr[0] "në sekondë" msgstr[1] "në sekondë" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11574,6 +10921,624 @@ msgid_plural "%d minutes" msgstr[0] "në përdorim" msgstr[1] "në përdorim" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Instruksione" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Mos ndrysho fjalëkalim" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "Shfaq tabelat" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "Shfaq tabelat" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Relacione" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" +"Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +msgid "Percentage of used key cache (calculated value)" +msgstr "Familja gërmave të file:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Gjurmimi nuk është aktiv." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12151,151 +12116,151 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Lloji i query" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Asnjë databazë" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Të dhëna" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versioni i MySQL" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" @@ -12438,12 +12403,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "query SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12459,130 +12424,140 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Zgjidh Tabelat" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Versioni i MySQL" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Versioni i PHP" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Duhet të instaloni %s %s ose superior." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Përshkrimi" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Set simbolesh MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy msgid "Query cache disabled" msgstr "Lloji i query" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Serveri nuk përgjigjet" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12590,21 +12565,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy msgid "Query caching method" msgstr "Lloji i query" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy msgid "Suboptimal caching method." msgstr "Lloji i query" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tabela(at)" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12982,289 +12957,289 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "Shfaq të gjitha kërkesat" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Shfaq të gjitha kërkesat" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "Shfaq të gjitha kërkesat" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Shfaq të gjitha kërkesat" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Krijo një faqe të re" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Familja gërmave të file:" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy msgid "Percentage of used open files limit" msgstr "Familja gërmave të file:" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy msgid "Rate of open files" msgstr "Familja gërmave të file:" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Familja gërmave të file:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Krijo një tabelë të re tek databaza %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "Lloji i query" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Gjurmimi nuk është aktiv." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Gjurmimi nuk është aktiv." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Gjurmimi nuk është aktiv." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Lidhje" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Lidhje" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13393,20 +13368,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13421,7 +13396,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13430,25 +13405,61 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB të dërguara nga përditësimi i fundit" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB të marra nga përditësimi i fundit" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Trafiku i serverit (në KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Numri i lidhjeve nga përditësimi i fundit" + +#~ msgid "Questions since last refresh" +#~ msgstr "Numri i 'questions' nga përditësimi i fundit" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (instruksione të ekzekutuara nga serveri)" + +#~ msgid "Runtime Information" +#~ msgstr "Informacione mbi Runtime" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "regjistrime për faqe" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Rifresko" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Lloji i query" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/sr.po b/po/sr.po index 8bba14d373..f760305e34 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:05+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Serbian " -"\n" -"Language: sr\n" +"Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Претраживање" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Крени" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Име кључа" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -113,17 +113,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База %1$s је креирана." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Коментар базе: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -137,12 +137,12 @@ msgstr "Коментари табеле" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Колона" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Колона" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Подразумевано" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Подразумевано" msgid "Links to" msgstr "Везе ка" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Да" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Табела" @@ -342,7 +342,7 @@ msgstr "Величина" msgid "in use" msgstr "се користи" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "се користи" msgid "Creation" msgstr "Направљено" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Направљено" msgid "Last update" msgstr "Последња измена" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -416,7 +416,7 @@ msgstr "Провери табелу" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "База података" @@ -425,18 +425,18 @@ msgstr "База података" msgid "Last version" msgstr "Направи релацију" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Направи" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Статус" @@ -451,7 +451,7 @@ msgstr "Акција" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Прикажи" @@ -467,11 +467,11 @@ msgstr "" msgid "Drop" msgstr "Одбаци" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -480,11 +480,11 @@ msgstr "" msgid "Versions" msgstr "Персијски" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" @@ -561,49 +561,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додај ново поље" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -613,17 +613,17 @@ msgstr "" msgid "Add a linestring" msgstr "Додај новог корисника" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додај новог корисника" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -770,8 +770,9 @@ msgstr "Опште особине релација" msgid "Database server" msgstr "База за корисника" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервер" @@ -792,7 +793,7 @@ msgstr "Верзија протокола" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Корисник" @@ -1051,12 +1052,12 @@ msgstr "Поново учитај привилегије" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1066,17 +1067,17 @@ msgstr "" msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор сервера" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1088,13 +1089,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1109,55 +1111,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Избор сервера" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Процеси" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Конекције" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Статистике реда" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1165,220 +1130,225 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Кеш упита" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Кеш упита" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Кеш упита" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Укупно" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Скуп прихватника" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Укупно" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Слободне стране" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Конекције" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процеси" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "бајтова" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табела" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Персијски" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Опште особине релација" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "Уклони базу" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Држи се мреже" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "нема" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1386,531 +1356,533 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Сачувај као датотеку" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Омогућено" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Онемогућено" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Опште особине релација" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Наслов извештаја" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Локални" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Захтеви за читање" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "База не постоји" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "База не постоји" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Време" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Укупно" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Профилисање" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табела" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Карактер сет" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add new field" msgid "Edit chart" msgstr "Додај ново поље" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL упит" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Опције за извоз базе" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "Датотеке" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "Број сортираних редова." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Укупно" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Локални" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Поново учитај" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Ажурирај упит" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Документација" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Документација" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Откажи" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Локални" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Процеси" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Није изабрана ни једна база." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "У реду" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Преименуј базу у" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Преименуј базу у" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Копирај базу у" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Карактер сет" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Табела мора имати барем једно поље." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Користи табеле" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add new field" msgid "Hide indexes" msgstr "Додај ново поље" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Прикажи мрежу" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Искључи провере страних кључева" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Омогућено" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Онемогућено" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Претраживање" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришем %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Број поља" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додај новог корисника" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Промени" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1919,220 +1891,225 @@ msgstr "%d није исправан број реда." msgid "Save" msgstr "Сачувај" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Претраживање" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додај/обриши колону" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Операције на резултатима упита" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Копирај" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Додај %s поља" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "База не постоји" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Имена колона" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Приказ записа" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Направи" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Прикажи све" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add new field" msgid "Hide Panel" msgstr "Додај ново поље" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2140,30 +2117,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "База не постоји" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy msgid "Done" msgstr "Подаци" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2171,96 +2148,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "мај" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2268,78 +2245,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "дец" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2347,113 +2324,113 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2506,16 +2483,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "у секунди" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "у минуту" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "на сат" @@ -2541,7 +2518,7 @@ msgstr "Величина фонта" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Растући" @@ -2550,7 +2527,7 @@ msgstr "Растући" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Опадајући" @@ -2669,7 +2646,7 @@ msgstr "Приказ података табеле" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Обриши" @@ -2870,7 +2847,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Обустави" @@ -2925,12 +2902,13 @@ msgstr "Означи све" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" @@ -2938,7 +2916,7 @@ msgstr "Извоз" msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3027,16 +3005,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3050,21 +3028,21 @@ msgstr "Кључ није дефинисан!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Кардиналност" @@ -3074,13 +3052,13 @@ msgstr "Кардиналност" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Сортирање" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3124,7 +3102,7 @@ msgstr "Поглед" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -3198,36 +3176,37 @@ msgstr "Догађаји" msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Бинарни дневник" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Репликација" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Складиштења" @@ -3283,6 +3262,106 @@ msgstr "Нема табела" msgid "There are no recent tables" msgstr "Провери табелу" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL упит" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Руковалац" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Кеш упита" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Нити" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Привремени подаци" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Одложена уметања" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Кеш кључева" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Спојеви" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Сортирање" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Табеле" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Координатор трансакција" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Датотеке" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Очисти (затвори) све табеле" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Прикажи отворене табеле" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Прикажи подређене сервер" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +#, fuzzy +msgid "Show master status" +msgstr "Прикажи статус подређених сервера" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Прикажи статус подређених сервера" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Очисти кеш упита" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB статус" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +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." @@ -3378,7 +3457,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Вредност" @@ -3782,11 +3861,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL упит" - #: libraries/Util.class.php:710 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:292 @@ -3821,7 +3895,7 @@ msgid "Create PHP Code" msgstr "Направи PHP код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Освежи" @@ -3922,13 +3996,6 @@ msgstr "Штампај" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Табеле" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3972,25 +4039,25 @@ msgstr "Провери привилегије за базу "%s"." msgid "Check Privileges" msgstr "Провери привилегије" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4002,39 +4069,39 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у " "конфигурационој датотеци!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6232,8 +6299,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6927,10 +6994,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB статус" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Коришћење скупа прихватника" @@ -7614,18 +7677,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "назив табеле" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7727,17 +7790,17 @@ msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структура и подаци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Само подаци" @@ -8169,8 +8232,7 @@ msgstr "Доступни MIME-типови" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Домаћин" @@ -8780,7 +8842,7 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Променљива" @@ -9353,7 +9415,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Додатно" @@ -10068,7 +10130,7 @@ msgstr "База не постоји" msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10447,7 +10509,7 @@ msgstr "Промени мало/велико" msgid "Toggle relation lines" msgstr "Да одаберете релацију, кликните :" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" @@ -10529,41 +10591,41 @@ msgstr "Табела %s је одбачена" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страна" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз датотека" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Направи нови кључ" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Име корисника" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "препоручено" @@ -10685,15 +10747,11 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Датотеке" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -10779,7 +10837,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Персијски" @@ -10840,11 +10898,6 @@ msgstr "Привилегије су успешно поново учитане." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -#, fuzzy -msgid "Show master status" -msgstr "Прикажи статус подређених сервера" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10977,224 +11030,54 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status.php:657 -msgid "Handler" -msgstr "Руковалац" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Кеш упита" - -#: server_status.php:659 -msgid "Threads" -msgstr "Нити" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Привремени подаци" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Одложена уметања" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Кеш кључева" - -#: server_status.php:664 -msgid "Joins" -msgstr "Спојеви" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Сортирање" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Координатор трансакција" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Очисти (затвори) све табеле" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Прикажи отворене табеле" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Прикажи подређене сервер" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Прикажи статус подређених сервера" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Очисти кеш упита" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Информације о току рада" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Број поља" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Освежи" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Датотеке" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Немој да мењаш лозинку" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Прикажи отворене табеле" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Прикажи отворене табеле" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Релације" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Врста упита" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Функције" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Име" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11202,47 +11085,330 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Примљено" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Послато" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Наредба" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Функције" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +msgid "Start Monitor" +msgstr "Статус" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Додај ново поље" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Освежи" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Додај/обриши колону" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Уклони базу" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Изабери табеле" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Неисправан назив табеле" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +msgid "Add this series" +msgstr "Додај новог корисника" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL упит" + +#: server_status_monitor.php:677 +#, fuzzy +msgid "Log statistics" +msgstr "Статистике реда" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Изабери све" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Врста упита" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у секунди" +msgstr[1] "у секунди" +msgstr[2] "у секунди" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" +msgstr[2] "се користи" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Име" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Датотеке" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Немој да мењаш лозинку" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Прикажи отворене табеле" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Прикажи отворене табеле" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Релације" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11252,16 +11418,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11273,11 +11439,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11285,7 +11451,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11293,7 +11459,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11301,23 +11467,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11327,7 +11493,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11337,7 +11503,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11345,7 +11511,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11355,7 +11521,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11363,7 +11529,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11375,7 +11541,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11387,35 +11553,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11425,7 +11591,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11437,11 +11603,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11449,7 +11615,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11457,11 +11623,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11469,7 +11635,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11483,55 +11649,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -11539,35 +11705,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11576,51 +11742,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -11628,7 +11794,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -11636,7 +11802,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -11646,17 +11812,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11666,26 +11832,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11695,17 +11861,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11713,39 +11879,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11757,7 +11923,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11765,19 +11931,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11785,11 +11951,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11797,7 +11963,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11805,15 +11971,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11821,11 +11987,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11833,12 +11999,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11848,23 +12014,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11876,7 +12042,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11886,11 +12052,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11902,219 +12068,16 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:1799 -#, fuzzy -msgid "Start Monitor" -msgstr "Статус" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Додај ново поље" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Додај/обриши колону" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Уклони базу" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Изабери табеле" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Неисправан назив табеле" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -msgid "Add this series" -msgstr "Додај новог корисника" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL упит" - -#: server_status.php:1964 -#, fuzzy -msgid "Log statistics" -msgstr "Статистике реда" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Изабери све" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Врста упита" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у секунди" -msgstr[1] "у секунди" -msgstr[2] "у секунди" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "се користи" -msgstr[1] "се користи" -msgstr[2] "се користи" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12695,149 +12658,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Врста упита" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозвољава уметање и замену података." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "База не постоји" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Подаци" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Направи релацију" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Направи релацију" @@ -12981,12 +12944,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL упит" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13002,131 +12965,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Изабери табеле" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Направи релацију" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Персијски" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Опис" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL сет карактера" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Кеш упита" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Сервер не одговара" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13134,23 +13107,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Кеш упита" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Кеш упита" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s табела" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13546,267 +13519,267 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Прикажи комплетне упите" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Направи табелу" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Тренутни број уписа на чекању." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Формат датотека за увоз" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Формат датотека за увоз" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Направи нову табелу у бази %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid " number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Величина прихватника за сортирање" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Величина прихватника за сортирање" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Кеш кључева" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Кеш кључева" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Кеш кључева" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Сервер не одговара" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Величина прихватника за сортирање" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Број нити које нису успаване." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Број нити које нису успаване." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13814,49 +13787,49 @@ msgid "" "launch" msgstr "Број нити које нису успаване." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of used connections" msgstr "макс. истовремених веза" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "max. concurrent connections" msgid "Percentage of aborted connections" msgstr "макс. истовремених веза" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Дозвољава креирање привремених табела.." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13971,17 +13944,17 @@ msgid "" "it should not be below 20%%" msgstr "Број уписа учињених у InnoDB оставу бафера." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Величина прихватника" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13995,24 +13968,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Величина прихватника" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Величина прихватника" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14027,7 +14000,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14036,31 +14009,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "макс. истовремених веза" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "макс. истовремених веза" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "макс. истовремених веза" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Избор сервера" + +#~ msgid "Runtime Information" +#~ msgstr "Информације о току рада" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Број поља" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Освежи" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Врста упита" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/sr@latin.po b/po/sr@latin.po index b88f43c93f..c5b4eeb8e5 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:05+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Serbian (latin) " -"\n" -"Language: sr@latin\n" +"Language-Team: Serbian (latin) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Pretraživanje" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolona" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Kolona" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Podrazumevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "Podrazumevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Da" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabela" @@ -339,7 +339,7 @@ msgstr "Veličina" msgid "in use" msgstr "se koristi" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -347,7 +347,7 @@ msgstr "se koristi" msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -355,7 +355,7 @@ msgstr "Napravljeno" msgid "Last update" msgstr "Poslednja izmena" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "Praćene tabele" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Baza podataka" @@ -416,17 +416,17 @@ msgstr "Baza podataka" msgid "Last version" msgstr "Poslednja verzija" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Kreirano" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Ažurirano" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -441,7 +441,7 @@ msgstr "Akcija" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Prikaži" @@ -457,11 +457,11 @@ msgstr "Obriši podatke o praćenju za ovu tabelu" msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "neaktivno" @@ -469,11 +469,11 @@ msgstr "neaktivno" msgid "Versions" msgstr "Verzije" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Izveštaj o praćenju" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Snimak strukture" @@ -541,45 +541,45 @@ msgstr "Iskoristi OpenStreetMaps kao osnovni sloj" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Tačka" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Tačka %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Dodaj tačku" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linija teksta" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Spoljni prsten" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Unutrašnji prsten" @@ -587,15 +587,15 @@ msgstr "Unutrašnji prsten" msgid "Add a linestring" msgstr "Dodaj novu liniju teksta" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Dodaj unutrašnji prsten" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Dodaj poligon" @@ -734,8 +734,9 @@ msgstr "Dodatna podešavanja" msgid "Database server" msgstr "Server baze podataka" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -754,7 +755,7 @@ msgstr "Verzija protokola" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Korisnik" @@ -986,12 +987,12 @@ msgstr "Ponovono učitavanje prava pristupa" msgid "Removing Selected Users" msgstr "Uklanjanje izabranih korisnika" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Zatvori" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1001,15 +1002,15 @@ msgstr "Zatvori" msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Grafikon trenutnog saobraćaja" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Živi grafikon veze/procesi" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Grafikon upita" @@ -1020,13 +1021,14 @@ msgstr "Statički podaci" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Ostalo" @@ -1041,48 +1043,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KB poslato od poslednjeg osvežavanja" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KB primljeno od poslednjeg osvežavanja" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Količina saobraćaja na serveru (u KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Veze od poslednjeg osvežavanja" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Procesi" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Veze / Procesi" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Pitanja od poslednjeg osvežavanja" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Pitanja (izvršeni iskazi od strane servera)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Statistika upita" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Konfiguracija lokalnog monitoringa nije kompatibilna" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1095,196 +1063,201 @@ msgstr "" "resetujete konfiguraciju na početbe vrednosti u opciji menija " "Podešavanja." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Efikasnost query cache-a" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Upotreba query cache-a" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Iskorišćeno query cache-a" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Zauzetost sistemskog procesora" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistemska memorija" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Sistemski svop" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Prosečno opterećenje" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Ukupno memorije" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Keširana memorija" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Baferisana memorija" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Slobodna memorija" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Iskorišćena memorija" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Ukupno Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Keširani svop" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Iskorišćeni svop" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Slobodno Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Poslato bajtova" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Primljeno bajtova" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Veze" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Procesi" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabela" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Pitanja" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Podešavanja" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Ukloni grafikon" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Uredi naslov i opise" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Dodaj grafikon na grid" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Molimo vas da dodate bar jednu promenljivu u seriju podataka" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "nema" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Nastavi praćenje" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Zaustavi praćenje" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log i slow_query_log su omogućeni." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log je omogućen." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogućen." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log i general_log su isključeni." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output nije postavljen na TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output je postavljen na TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1295,12 +1268,12 @@ msgstr "" "izvršavaju više od %d sekundi. Preporučljivo je da podesite long_query_time " "na 0-2 sekunde, u zavisnosti od vašeg sistema." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je postavljeno na %d sekund(i)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1309,30 +1282,30 @@ msgstr "" "podrazumevane vrednosti kad server bude restartovan:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Postavi log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Omogući %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Onemogući %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Postavi long_query_time na %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1340,53 +1313,53 @@ msgstr "" "Nemate prava da promenite ove promenljive. Molimo vas da se prijavite kao " "root ili kontaktirajte vašeg administratora baze." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Izmeni podešavanja" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Trenutna podešavanja" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Naslov grafikona" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Diferencijalni" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Podeljeno sa %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Jedinica" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Iz dnevnika sporih upita" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Iz glavnog dnevnika" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analiziranje logova" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje i učitavanje dnevnika. Ovo može da potraje neko vreme." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Otkaži zahtev" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1396,7 +1369,7 @@ msgstr "" "Međutim samo sam SQL upit je iskorišćen kao kriterijum za grupisanje, tako " "da ostali atributi upita, kao što je vreme pokretanja, mogu da se razlikuju." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1405,99 +1378,99 @@ msgstr "" "Pošto je grupisanje INSERT upita izabrano, INSERT upiti u istu tabelu su " "takođe grupisani zajedno, bez obzira na umetnute podatke." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Podaci iz dnevnika učitani. Upiti izvršeni u ovom vremenskom razmaku:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Preskoči na Log tabelu" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Nema podataka" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" "Dnevnik analiziran, ali ništa nije pronađeno u ovom vremenskom razmaku." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Aniliziram…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Objasni izlaz" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Vreme" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Ukupno vreme:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Rezultat profilisanja" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Grafikon" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Izmeni grafikon" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serije" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Opcije filtera log tabele" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filter" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtriraj upite po word/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupisanje upita, ignoriši promenljive vrednosti u WHERE klauzulama" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Suma grupisanih redova:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Ukupno:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Učitavanje logova" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Osvežavanje monitoringa neuspešno" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1507,256 +1480,258 @@ msgstr "" "odgovor. To se najverovatnije desilo jer je sesija istekla. Osvežavanje " "stranice i ponovno prijavljivanje trebalo bi da pomogne." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Ponovo učitaj stranu" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Zahvaćeni redovi:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Neuspelo analiziranje konfiguracione datoteke. Izgleda da sadržaj nije u " "validnom JSON formatu." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Neuspelo formiranje grafikona sa uvezenom konfiguracijom. Resetujem na " "podrazumevanu konfiguraciju…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Podešavanje Import monitor-a" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Molimo izaberite datoteku koju želite da uvezete" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analiza upita" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Sistem za savete" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Mogući problemi sa performansama" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Pitanje" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Preporuka" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Detalji pravila" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Opravdanje" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Korišćene promenljiva/formula" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Učitavanje" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Obrada zahteva" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Greška kod obrade zahteva" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Brisanje kolone" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Dodavanje primarnog ključa" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "U redu" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Kliknite da bi ste zatvorili ovo obaveštenje" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Preimenovanje baza podataka" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ponovno učitavanje baze" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopiranje baze" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Izmena seta znakova" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabela mora imati bar jednu kolonu" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Umetni tabelu" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Sakrij indekse" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Prikaži indekse" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Provera stranog ključa:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(omogućeno)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Onemogućeno)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Pretraga" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Prikaži rezultate pretrage" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Pregledanje" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Brisanje" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicija uskladištene funkcije mora imati RETURN iskaz!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Vrednosti za kolonu %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Vrednosti za novu kolonu" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Unesi svaku vrednost u posebno polje" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Dodaj %d vrednost(i)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Imajte u vidu: Ako datoteka sadrži više tabela, one će biti kombinovane u " "jednu" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Sakrij okvir sa upitima" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Prikažiokvir sa upitima" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Promeni" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Vreme izvršavanja upita" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1765,91 +1740,91 @@ msgstr "%d nije ispravan broj reda." msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Sakrij kriterijume za pretragu" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Prikaži kriterijume za pretragu" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Uvećaj polje za pretragu" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Svaka tačka pretsavlja jedan red podataka." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Ako zadržite kursor miša iznad tačke biće prikazan opis." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Da bi ste uvećali prikaz, izaberite deo prikaza sa mišem." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klikni na tačku sa podacima da bi video ili eventualno izmenio red podataka." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Veličina prikaza može da se promeni ako ga uhvatite i povučete mišem u " "donjem desnom uglu." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Izaberi dve kolone" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Izaberite dve različite kolone" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Rezultat upita" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Sadržaj tačke podataka" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Dodaj kolone" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Izaberi kolonu za prikaz" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1857,15 +1832,20 @@ msgstr "" "Niste snimili izmene u raspored. Biće izgubljene ako ih ne snimite. Da li " "želite da nastavite?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Dodaj opciju za kolonu " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Prtisni escape da otkažeš uređivanje" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1873,27 +1853,27 @@ msgstr "" "Izmenili ste neke podatke i izmene nisu sačuvane. Da li ste sigurni da " "želite da napustite ovu stranu pre nego što snimite podatke?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Povucite da bi ste promenili redosled" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Kliknite da bi ste sortirali" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Kliknite da postavite/skinete oznaku" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknite strelici na dole
da bi ste izmenili vidljivost kolone" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1902,7 +1882,7 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1913,64 +1893,64 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Idi na link" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopiraj ime kolone" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Prikaži red(ove) podataka" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Generiši lozinku" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generiši" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Još" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Prikaži sve" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Sakrij indekse" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1980,266 +1960,266 @@ msgstr "" "nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", poslednja stabilna verzija:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "Ažurno" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Gotovo" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Danas" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Januar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Februar" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mart" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "April" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Jun" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Jul" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Avgust" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Septembar" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Oktobar" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Novembar" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Decembar" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Nedelja" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Ponedeljak" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Utorak" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Sreda" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Četvrtak" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Petak" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Sr" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Če" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Su" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Vk" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalendar-mesec-godina" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Čas" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minut" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekund" @@ -2290,16 +2270,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "u minutu" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "po satu" @@ -2327,7 +2307,7 @@ msgstr "Veličina fonta" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Rastući" @@ -2336,7 +2316,7 @@ msgstr "Rastući" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Opadajući" @@ -2453,7 +2433,7 @@ msgstr "Obriši rezultate pretrage za %s tabelu?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Obriši" @@ -2624,7 +2604,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Obustavi" @@ -2681,12 +2661,13 @@ msgstr "Označi sve" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" @@ -2694,7 +2675,7 @@ msgstr "Izvoz" msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2781,16 +2762,16 @@ msgstr "Nije moguće pročitati (premeštenu) primljenu datoteku." msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2804,21 +2785,21 @@ msgstr "Indeks nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Pakovano" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalnost" @@ -2828,13 +2809,13 @@ msgstr "Kardinalnost" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Komentar" @@ -2879,7 +2860,7 @@ msgstr "Pogled" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktura" @@ -2952,34 +2933,35 @@ msgstr "Događaji" msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Korisnici" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binarni dnevnik" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikacija" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Skladištenja" @@ -3030,6 +3012,104 @@ msgstr "Skorašnje pristupane tabele" msgid "There are no recent tables" msgstr "Nema skorašnje pristupanih tabela" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL upit" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Rukovalac" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Keš upita" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Niti" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Privremeni podaci" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Odložena umetanja" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Keš ključeva" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Spojevi" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortiranje" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabele" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Koordinator transakcija" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Datoteke" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Očisti (zatvori) sve tabele" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Prikaži otvorene tabele" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Prikaži podređene server" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Prikaži status master servera" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Prikaži status podređenih servera" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Očisti keš upita" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Statistika upita" + +#: 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." @@ -3128,7 +3208,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Vrednost" @@ -3520,11 +3600,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL upit" - #: libraries/Util.class.php:710 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:292 @@ -3559,7 +3634,7 @@ msgid "Create PHP Code" msgstr "Napravi PHP kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Osveži" @@ -3656,13 +3731,6 @@ msgstr "Štampaj" msgid "shared" msgstr "Deljeno" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabele" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3703,11 +3771,11 @@ msgstr "Proveri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Proveri privilegije" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Neuspelo čitanje iz konfiguracione datoteke" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3715,12 +3783,12 @@ msgstr "" "Ovo obično znači da postoji sintaksna greška, molimo vas pogledajte greške " "prikazane ispod." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3732,38 +3800,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "moguća zloupotreba" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "otkriven numerički ključ" @@ -5902,8 +5970,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Korisničko ime" @@ -6538,10 +6606,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Korišćenje skupa prihvatnika" @@ -7206,18 +7270,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "naziv tabele" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7315,17 +7379,17 @@ msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktura i podaci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Samo podaci" @@ -7720,8 +7784,7 @@ msgstr "Prikaži MIME tipove" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Domaćin" @@ -8286,7 +8349,7 @@ msgid "Slave status" msgstr "Status podređenog" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Promenljiva" @@ -8791,7 +8854,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Dodatno" @@ -9483,7 +9546,7 @@ msgstr "Dodaj prefix tabeli" msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Ništa" @@ -9832,7 +9895,7 @@ msgstr "Promeni malo/veliko" msgid "Toggle relation lines" msgstr "Zameni linije relacije" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" @@ -9898,31 +9961,31 @@ msgstr "Strana je kreirana" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Strana" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Uvezi sa izabrane strane" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Izvezi na izabranu stranu" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Kreiraj stranu i izvezi na nju" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Ime nove strane: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "preporučeno" @@ -10038,15 +10101,11 @@ msgstr "Datoteka ne postoji" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Datoteke" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -10132,7 +10191,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Verzija" @@ -10189,10 +10248,6 @@ msgstr "Master server uspešno promenjen u %s" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Prikaži status master servera" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10318,205 +10373,52 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status.php:657 -msgid "Handler" -msgstr "Rukovalac" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Keš upita" - -#: server_status.php:659 -msgid "Threads" -msgstr "Niti" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Privremeni podaci" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Odložena umetanja" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Keš ključeva" - -#: server_status.php:664 -msgid "Joins" -msgstr "Spojevi" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortiranje" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Koordinator transakcija" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Očisti (zatvori) sve tabele" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Prikaži otvorene tabele" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Prikaži podređene server" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Prikaži status podređenih servera" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Očisti keš upita" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Informacije o toku rada" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Broj tačaka podataka: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Interval osvežavanja: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filteri" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Sadrži reč:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Prikaži samo vrednosti upozorenja" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Prikaži neformatirane vrednosti" - -#: server_status.php:930 -msgid "Related links:" -msgstr "ovezani linkovi:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Pokreni analizator" - -#: server_status.php:966 -msgid "Instructions" -msgstr "Instrukcije" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Ime" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL server radi %1$s. Pokrenut je %2$s." -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Status replikacije" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10524,45 +10426,296 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Primljeno" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Poslato" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Naredba" -#: server_status.php:1527 +#: server_status_advisor.php:29 +msgid "Instructions" +msgstr "Instrukcije" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +msgid "Start Monitor" +msgstr "Pokreni monitor" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +msgid "Add chart" +msgstr "Dodaj grafikon" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +msgid "Refresh rate" +msgstr "Interval osvežavanja" + +#: server_status_monitor.php:505 +msgid "Chart columns" +msgstr "Kolone grafikona" + +#: server_status_monitor.php:521 +msgid "Chart arrangement" +msgstr "" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +msgid "Reset to default" +msgstr "" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +msgid "Preset chart" +msgstr "Unapred podesi grafikon" + +#: server_status_monitor.php:614 +msgid "Status variable(s)" +msgstr "" + +#: server_status_monitor.php:617 +msgid "Select series:" +msgstr "Izaberite seriju podataka:" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +msgid "or type variable name:" +msgstr "ili unesite ime promenljive:" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +msgid "Add this series" +msgstr "Dodaj ovu seriju podataka" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +msgid "Series in Chart:" +msgstr "Serije podataka u grafikonu:" + +#: server_status_monitor.php:677 +msgid "Log statistics" +msgstr "Statistike loga" + +#: server_status_monitor.php:678 +msgid "Selected time range:" +msgstr "Izaberi vremenski opseg:" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +msgid "Query analyzer" +msgstr "Analizator upita" + +#: server_status_monitor.php:747 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundi" +msgstr[2] "%d sekunde" + +#: server_status_monitor.php:750 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuta" +msgstr[2] "%d minuta" + +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Ime" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filteri" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Sadrži reč:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Prikaži samo vrednosti upozorenja" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Prikaži neformatirane vrednosti" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "ovezani linkovi:" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj neuspelih pokušaja povezivanja na MySQL server." -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10572,16 +10725,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10593,11 +10746,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10605,7 +10758,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10613,7 +10766,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10621,23 +10774,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -10647,7 +10800,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -10657,7 +10810,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -10665,7 +10818,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -10675,7 +10828,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10683,7 +10836,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -10695,7 +10848,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -10707,35 +10860,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -10745,7 +10898,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -10757,11 +10910,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -10769,7 +10922,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10777,11 +10930,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10789,7 +10942,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -10803,55 +10956,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -10859,35 +11012,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -10896,52 +11049,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -10949,7 +11102,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -10957,7 +11110,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -10967,17 +11120,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -10987,26 +11140,26 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11016,17 +11169,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11034,39 +11187,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11078,7 +11231,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11086,19 +11239,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11106,11 +11259,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11119,7 +11272,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11127,15 +11280,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11143,11 +11296,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11155,12 +11308,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11170,23 +11323,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11198,7 +11351,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11208,11 +11361,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11224,198 +11377,16 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:1799 -msgid "Start Monitor" -msgstr "Pokreni monitor" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -msgid "Add chart" -msgstr "Dodaj grafikon" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -msgid "Refresh rate" -msgstr "Interval osvežavanja" - -#: server_status.php:1835 -msgid "Chart columns" -msgstr "Kolone grafikona" - -#: server_status.php:1851 -msgid "Chart arrangement" -msgstr "" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -msgid "Reset to default" -msgstr "" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -msgid "Preset chart" -msgstr "Unapred podesi grafikon" - -#: server_status.php:1906 -msgid "Status variable(s)" -msgstr "" - -#: server_status.php:1908 -msgid "Select series:" -msgstr "Izaberite seriju podataka:" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -msgid "or type variable name:" -msgstr "ili unesite ime promenljive:" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -msgid "Add this series" -msgstr "Dodaj ovu seriju podataka" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -msgid "Series in Chart:" -msgstr "Serije podataka u grafikonu:" - -#: server_status.php:1964 -msgid "Log statistics" -msgstr "Statistike loga" - -#: server_status.php:1965 -msgid "Selected time range:" -msgstr "Izaberi vremenski opseg:" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -msgid "Query analyzer" -msgstr "Analizator upita" - -#: server_status.php:2038 server_status.php:2066 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundi" -msgstr[2] "%d sekunde" - -#: server_status.php:2041 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuta" -msgstr[2] "%d minuta" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "Neuspelo podešavanje promenljive" @@ -11956,144 +11927,144 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Greška u upitu" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Obriši red sa podacima o praćenju iz izveštaja" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Nema podataka" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Izvezi kao %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Napravi relaciju" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Kreiraj verziju" @@ -12227,11 +12198,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Sporo upisivanje upita u log" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12247,118 +12218,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "slow_query_log is enabled." +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log je omogućen." + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Oslobodi serije podataka" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Trenutna verzija: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Manja verzija" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Trebalo bi da pređete na stabilnu verziju MySQL-a 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribucija" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "Arhitektura MySQL-a" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Keš upita isključen" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Keš upita nije omogućen." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12366,21 +12349,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Način keširanja upita" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Keš upita" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Stopa upotrebe privremenog diska" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12755,51 +12738,51 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "Veličina bafera za MyISAM ključeve" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Maksimalan %% MyISAM bafera za ključeve je ikad korišćeno" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Upotreba MyISAM bafer ključeva (keš indeksa) %% je niska." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -12807,130 +12790,130 @@ msgstr "" "Maksimalno %% MyISAM bafera ključeva je ikad korišćeno: %s%%, ova vrednost " "bi trebala da bude iznad 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Procenat iskorišćenosti MyISAM bafera za ključeve" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Prikaži kompletne upite" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Stopa otvorenih tabela" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Stopa otvaranja tabela je visoka." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Procenat iskorišćenosti limita otvorenih datoteka" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Stopa otvorenih datoteka" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Stopa otvaranja datoteka je visoka." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "%% neposrednog zaključavanja tabela" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Previše zaključavanja tabela nije odmah neposredno dozvoljeno." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Optimizuj upite i/ili iskoristi InnoDB za smanjenje čekanja kod " "zaključavanja." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" "Trenutno zaključavanje tabela: %s%%, ova vrednost bi trebalo da bude iznad " "95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Stopa čekanja na zaključavanje tabela" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Stopa zaklučavanja tabela: %s, ova vrednost bi trebala da bude manja od 1 po " "satu" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "Keš niti" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -12938,42 +12921,42 @@ msgstr "" "Keš niti je isključen, ovo rezultira većim opterećenjem kod novih veza na " "MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Omogući keš niti tako što ćeš postaviti {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Keš niti je postavljen na 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "%% pristupanja kešu niti" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Keš niti nije efikasan." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Povećaj {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" "Stopa pristupanja kešu niti: %s%%, ova vrednost bi trebalo da bude iznad 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Niti koje se sporo pokreću" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Ima previše niti koje se sporo pokreću." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -12982,22 +12965,22 @@ msgstr "" "jednostavna operacija. Možda je najbolje da pažljivo pratite opterećenje " "vašeg sistema." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s nit(i) je bilo potrebno više od %s sekundi da se pokrene, trebalo bi da " "ih bude 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Predugo vreme pokretanja" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads je iznad 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13005,43 +12988,43 @@ msgstr "" "Postavi slow_launch_time na 1s ili 2s da bi ispravno izbrojao niti koje se " "predugo pokreću" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time je postavljeno na %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Procenat iskorišćenih veza" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "Maksimalni broj iskorišćenih veza se bliži vrednosti max_connections." -#: libraries/advisory_rules.txt:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Procenat prekinutih veza" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Previše veza je odbačeno." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13147,15 +13130,15 @@ msgid "" "it should not be below 20%%" msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maksimalna veličina InnoDB log-a" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13169,22 +13152,22 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Apsolutna veličina vašeg InnoDB log-a je %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Veličina InnoDB prostora za bafere" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Veličina prihvatnika" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13199,7 +13182,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13208,16 +13191,16 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM istovremenih upisivanja" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" "Omogući istovremeno umetanje tako što ćeš postaviti concurrent_insert na 1" -#: libraries/advisory_rules.txt:456 +#: 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" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KB poslato od poslednjeg osvežavanja" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KB primljeno od poslednjeg osvežavanja" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Količina saobraćaja na serveru (u KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Veze od poslednjeg osvežavanja" + +#~ msgid "Questions since last refresh" +#~ msgstr "Pitanja od poslednjeg osvežavanja" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Pitanja (izvršeni iskazi od strane servera)" + +#~ msgid "Runtime Information" +#~ msgstr "Informacije o toku rada" + +#~ msgid "Number of data points: " +#~ msgstr "Broj tačaka podataka: " + +#~ msgid "Refresh rate: " +#~ msgstr "Interval osvežavanja: " + +#~ msgid "Run analyzer" +#~ msgstr "Pokreni analizator" + #~ msgid "Show more actions" #~ msgstr "Pikaži još akcija" diff --git a/po/sv.po b/po/sv.po index 33f85f4a1e..fabec01b90 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 12:56+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Swedish " -"\n" -"Language: sv\n" +"Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Sök" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Sök" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Kör" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Nyckelnamn" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Beskrivning" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Databaskommentar" -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Tabellkommentarer" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Kolumn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Kolumn" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Standardvärde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Standardvärde" msgid "Links to" msgstr "Länkar till" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Nej" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ja" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tabell" @@ -337,7 +337,7 @@ msgstr "Storlek" msgid "in use" msgstr "används" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -345,7 +345,7 @@ msgstr "används" msgid "Creation" msgstr "Skapande" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -353,7 +353,7 @@ msgstr "Skapande" msgid "Last update" msgstr "Senaste uppdatering" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -405,7 +405,7 @@ msgstr "Spårade tabeller" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Databas" @@ -413,17 +413,17 @@ msgstr "Databas" msgid "Last version" msgstr "Senaste versionen" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Skapad" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Status" @@ -438,7 +438,7 @@ msgstr "Åtgärd" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Visa" @@ -454,11 +454,11 @@ msgstr "Ta bort spårning för denna tabell" msgid "Drop" msgstr "Radera" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "inaktiv" @@ -466,11 +466,11 @@ msgstr "inaktiv" msgid "Versions" msgstr "Versioner" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Spårningsrapport" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" @@ -538,45 +538,45 @@ msgstr "Använd OpenStreetMaps som baslager" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Punkt" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Punkt %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Lägg till en punkt" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Yttre ringen" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Inre ringen" @@ -584,15 +584,15 @@ msgstr "Inre ringen" msgid "Add a linestring" msgstr "Lägg till ny linestring" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Lägg till ny inre ring" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Addera polygon" @@ -729,8 +729,9 @@ msgstr "Fler inställningar" msgid "Database server" msgstr "Databas-server" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -749,7 +750,7 @@ msgstr "Protokollversion" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Användare" @@ -989,12 +990,12 @@ msgstr "Ladda om privilegier" msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Stäng" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1004,15 +1005,15 @@ msgstr "Stäng" msgid "Edit" msgstr "Redigera" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Live trafik diagram" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Live anslutning/process diagram" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Live sökfrågediagram" @@ -1023,13 +1024,14 @@ msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Annan" @@ -1044,48 +1046,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Kb skickade sedan senaste uppdatering" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Kb mottagna sedan senaste uppdatering" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Server trafik (i Kb)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Anslutningar sedan senaste uppdatering" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Processer" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Anslutningar / Processer" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Frågor sedan senaste uppdatering" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Frågor (utförda kommandon från servern)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Visa statistik" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Lokal övervakningskonfiguration ej kompatibel" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1097,196 +1065,201 @@ msgstr "" "troligt att din nuvarande konfiguration inte fungerar längre. Återställ " "konfigurationen i Inställningar menyn." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Frågecache effektivitet" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Användning av frågecache" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Använd frågecache" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Systemets processoranvändning (CPU)" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Systemminne" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "System swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "Mb" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "kB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Genomsnittlig last" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Totalt minne" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "cachat minne" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Buffrat minne" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Ledigt minne" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Använt minne" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Totalt Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Cachad Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Använt Swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Ledigt Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Antal bitar som skickats" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Antal mottagna bital" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Anslutningar" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Processer" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "bytes" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "kB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "Mb" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tabell(er)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Frågor" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Inställningar" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Ta bort diagram" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Redigera titlar och etiketter" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Addera diagrammet till rutnätet" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Lägg till minst en variabel till serien" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Inget" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Återuppta övervakning" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Pausa monitor" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log och slow_query_log är aktiverade." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log är aktiverad." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log är aktiverad." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log och general_log är deaktiverade." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output är inte definierad som TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output är definerad som TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1297,12 +1270,12 @@ msgstr "" "tid än %d sekunder. Det är lämpligt att definiera long_query_time till 0-2 " "sekunder, beroende på ditt system." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time är definerad till %d sekund(er)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1311,30 +1284,30 @@ msgstr "" "standardvärdet när servern startas om:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Sätt log_output till %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Aktivera %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Inaktivera %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Sätt long_query_time till %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1342,53 +1315,53 @@ msgstr "" "Du kan inte ändra dessa variabler. Logga in som root eller kontakta din " "databasadministratör." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Ändra inställningar" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Diagramtitel" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Differentiell" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "Dividerat med %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Enhet" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Från långsam logg" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Från allmän logg" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Analyserar loggar" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserar och laddar loggar. Detta kan ta lite tid." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Avbryt begäran" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1398,7 +1371,7 @@ msgstr "" "Men endast SQL Text blir jämförd, följaktligen blir frågorna andra attribut " "som starttid kan variera." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1407,98 +1380,98 @@ msgstr "" "Sedan gruppering av INSERT frågor har valts, är INSERT frågor i samma tabell " "också grupperas tillsammans, oberoende av de infogade data." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Loggdata laddad. Frågorna utförda under denna tidsperiod:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Gå till tabellogg" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Inga data hittades" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Logg analyserad, men inget data hittades under denna tidsperiod." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Analyserar…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Förklara utdata" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Tid" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Total tid:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Profilering av resultat" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tabell" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Diagram" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Redigera diagram" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Serier" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Logga tabellfilter alternativ" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtrera" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Filtrera frågor med ord/regexp:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppfrågor, ignorera variabeldata i WHERE klausuler" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Summan av grupperade rader:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Totalt:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Läser in loggar" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Uppdateringen av övervakningen misslyckades" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1508,255 +1481,257 @@ msgstr "" "Detta beror troligen på att din session har upphört. Ladda om sidan och mata " "in dina inloggningsuppgifter igen bör lösa problemet." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Uppdatera sidan" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Påverkade rader:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Parsning av config-filen misslyckades. Det verkar inte vara giltig JSON-kod." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Misslyckades skapa diagrammets rutnät med den importerade configurationen. " "Återställer till ursprunglig konfiguration…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "Importera monitorkonfigurationen" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Välj den fil du vill läsa in" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Analysera fråga" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Handledningssystem" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Möjliga prestandaproblem" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Problem" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Rekommendation" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Regel detaljer" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Motivering" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Använd variabel / formel" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Laddar" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Bearbetar begäran" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Fel i processbegäran" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Felkod: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Felmeddelande %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Inga databaser markerade." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Tar bort kolumn" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Lägger till primär nyckel" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Klicka för att ta bort detta meddelande" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Döp om databaser" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Ladda om databas" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Kopiera databas" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Ändra teckenuppsättning" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tabellen måste ha åtminstone en kolumn" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Lägg till en tabell" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Dölj index" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Visa index" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Kontroll av sekundärnyckel:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Aktiverad)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Inaktiverad)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Söker" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Dölj sökresultat" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Visa sökresultat" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Bläddrar bland" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Raderar" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Definitionen av en sparad funktion måste innehålla en RETURN-programsats!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Värden för kolumn %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Värden för ny kolumn" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Mata in varje värde i separata fält" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Lägg till %d värde(n)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Obs: Om filen innehåller multipla tabeller, kommer de att kombineras till en" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Göm sök-rutan" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Visa frågerutan" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ändra" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Exekveringstid för frågor" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1765,89 +1740,89 @@ msgstr "%d är inte ett giltigt radnummer." msgid "Save" msgstr "Spara" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Dölj sökkriterier" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Zoom sökning" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Varje punkt representerar en dataserie." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Hovra över en punkt kommer visa etiketten." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "För att zooma in, välja en del av grafen med musen." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Klicka på återställningsknappen för att komma tillbaka till ursprungsläget." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Klicka på en datapunkt för att visa och eventuellt redigera dataraden." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kan ändra storlek genom att dra den längs nedre högra hörnet." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Välj två kolumner" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Välj två olika kolumner" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Frågeresultat" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopiera" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Addera kolumn" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1855,15 +1830,20 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Lägg till ett alternativ för kolumn " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Tryck Escape för att avbryta redigeringen" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1871,27 +1851,27 @@ msgstr "" "Du har redigerat en del data och de har inte sparats. Är du säker på att du " "vill lämna denna sida innan du sparar uppgifterna?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Dra för att ändra ordning" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Klicka för att sortera" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Klicka för att markera/avmarkera" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Dubbelklicka för att kopiera kolumnnamn" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klicka på pilen
för att växla kolumnens synlighet" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1900,7 +1880,7 @@ msgstr "" "nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte " "fungerar när du har sparat." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1908,58 +1888,58 @@ msgstr "" "Du kan även redigera de flesta kolumner
genom att dubbelklicka direkt " "på deras innehåll." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Du kan även redigera de flesta kolumner
genom att klicka direkt på " "deras innehåll." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Gå till länk" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Kopiera kolumnnamn" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Högerklicka på kolumnnamnet för att kopiera det till urklipp." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Visa datarad(er)" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generera" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Ändra lösenord" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Mera" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Visa panel" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Dölj Panel" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "Den begärda sidan hittades inte i historien, kan det ha upphört." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1969,266 +1949,266 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "senaste stabila version:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "aktuell" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Klart" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Idag" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "januari" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "februari" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "mars" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "april" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "maj" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "juni" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "juli" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "augusti" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "september" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "oktober" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "november" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "dec" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Måndag" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Fredag" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Vecka" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "kalender-månad-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "Ingen" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Timmar" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Minuter" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Sekunder" @@ -2280,16 +2260,16 @@ msgstr "Oväntade tecken på rad %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Oväntat tecken på rad %1$s. Förväntad tab, men fann \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "per timme" @@ -2316,7 +2296,7 @@ msgstr "Teckenstorlek" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Stigande" @@ -2325,7 +2305,7 @@ msgstr "Stigande" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Fallande" @@ -2439,7 +2419,7 @@ msgstr "Ta bort resultat som matchar %s tabellen?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Radera" @@ -2609,7 +2589,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Döda" @@ -2664,12 +2644,13 @@ msgstr "Markera alla" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" @@ -2677,7 +2658,7 @@ msgstr "Exportera" msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2761,16 +2742,16 @@ msgstr "Kan inte läsa (flyttad) uppladdad fil." msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Klicka på bommen för att förflytta dig till toppen av sidan" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Javascript måste vara aktiverat efter detta" @@ -2782,21 +2763,21 @@ msgstr "Inga index är definierade!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Kardinalitet" @@ -2806,13 +2787,13 @@ msgstr "Kardinalitet" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Kollationering" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Kommentar" @@ -2857,7 +2838,7 @@ msgstr "Vy" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Struktur" @@ -2930,34 +2911,35 @@ msgstr "Händelser" msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Användarna" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binär logg" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikering" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Insticksprogram" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motorer" @@ -3005,6 +2987,104 @@ msgstr "De senaste tabellerna" msgid "There are no recent tables" msgstr "Det finns inga nya tabeller" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-fråga" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Hanterare" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Frågecache" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Trådar" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Temporära data" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Fördröjda infogningar" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Nyckelcache" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Kopplingar" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortering" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tabeller" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Transaktionssamordnare" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Filer" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Flush (stäng) alla tabeller" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Visa öppna tabeller" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Visa slav-värdar" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Visa master-status" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Visa slav-status" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Rensa frågecache" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB-status" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Visa statistik" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Alla statusvariabler" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "Övervaka" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Handledare" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3103,7 +3183,7 @@ msgstr "Aktör" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Värde" @@ -3549,11 +3629,6 @@ msgstr "En uppräkning, vald från listan av definierade värden" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-fråga" - #: libraries/Util.class.php:710 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:292 @@ -3588,7 +3663,7 @@ msgid "Create PHP Code" msgstr "Skapa PHP-kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Uppdatera" @@ -3684,13 +3759,6 @@ msgstr "Skriv ut" msgid "shared" msgstr "delad" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tabeller" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3731,11 +3799,11 @@ msgstr "Kontrollera privilegier för databas "%s"." msgid "Check Privileges" msgstr "Kontrollera privilegier" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Kunde inte läsa konfigurationsfilen" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3743,12 +3811,12 @@ msgstr "" "Detta betyder oftast att det finns ett syntaxfel i det, kontrollera " "eventuella fel som visas nedan." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunde inte ladda standardkonfiguration från: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3756,38 +3824,38 @@ msgstr "" "Direktivet[code]$cfg['PmaAbsoluteUri'][/code] MÅSTE definieras i " "konfigurationsfilen!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för verifiering angiven i konfiguration:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Fel: Token matchningsfel" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "Globals överskrivningsförsök" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "möjlig exploatering" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "numerisk tangent upptäckt" @@ -4560,12 +4628,10 @@ msgid "Databases display options" msgstr "Visningsalternativ för databaser" #: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:19 -#| msgid "Navigation frame" msgid "Navigation panel" msgstr "Navigationspanel" #: libraries/config/messages.inc.php:180 -#| msgid "Customize appearance of the navigation frame" msgid "Customize appearance of the navigation panel" msgstr "Anpassa navigationspanelens utseende" @@ -4583,7 +4649,6 @@ msgid "Tables display options" msgstr "Visningsalternativ för tabeller" #: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:20 -#| msgid "Main frame" msgid "Main panel" msgstr "Huvudpanelen" @@ -4698,12 +4763,10 @@ msgid "Customize import defaults" msgstr "Anpassa standardvärden för import" #: libraries/config/messages.inc.php:211 -#| msgid "Customize navigation frame" msgid "Customize navigation panel" msgstr "Anpassa navigeringspanelen" #: libraries/config/messages.inc.php:212 -#| msgid "Customize main frame" msgid "Customize main panel" msgstr "Anpassa huvudpanelen" @@ -5048,7 +5111,6 @@ msgid "Memory limit" msgstr "Minnesgräns" #: libraries/config/messages.inc.php:299 -#| msgid "Show logo in left frame" msgid "Show logo in navigation panel" msgstr "Visa logotypen i navigeringspanelen" @@ -5057,7 +5119,6 @@ msgid "Display logo" msgstr "Visa logo" #: libraries/config/messages.inc.php:301 -#| msgid "URL where logo in the navigation frame will point to" msgid "URL where logo in the navigation panel will point to" msgstr "URL som navigationspanelens logotyp pekar mot" @@ -5078,7 +5139,6 @@ msgid "Logo link target" msgstr "Logo-länk mål" #: libraries/config/messages.inc.php:305 -#| msgid "Display server choice at the top of the left frame" msgid "Display server choice at the top of the navigation panel" msgstr "Visa val av server högst upp i navigationspanelen" @@ -5091,7 +5151,6 @@ msgid "Target for quick access icon" msgstr "Mål för snabbåtkomst-ikon" #: libraries/config/messages.inc.php:308 -#| msgid "Minimum number of tables to display the table filter box" msgid "" "Defines the minimum number of items (tables, views, routines and events) to " "display a filter box." @@ -5100,7 +5159,6 @@ msgstr "" "att visa filterboxen." #: libraries/config/messages.inc.php:309 -#| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of items to display the filter box" msgstr "Minsta antal objekt för att visa filterboxen" @@ -5109,9 +5167,6 @@ msgid "Minimum number of databases to display the database filter box" msgstr "Minsta antal databaser för att visa databasens filter box" #: libraries/config/messages.inc.php:311 -#| msgid "" -#| "Only light version; display databases in a tree (determined by the " -#| "separator defined below)" msgid "" "Group items in the navigation tree (determined by the separator defined " "below)" @@ -5331,7 +5386,6 @@ msgid "Grid editing: trigger action" msgstr "" #: libraries/config/messages.inc.php:361 -#| msgid "Save all edited cells at once" msgid "Grid editing: save all edited cells at once" msgstr "Rutnäts-redigering: spara alla redigerade celler omedelbart" @@ -5398,31 +5452,24 @@ msgid "Authentication type" msgstr "Autentiseringstyp" #: libraries/config/messages.inc.php:376 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"Lämna tomt för att stänga av " -"[a@http://wiki.phpmyadmin.net/pma/bookmark]bokmärken[/a], förslag: " -"[kbd]pma_bookmark[/kbd]" +"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" msgstr "Tabell för bokmärken" #: libraries/config/messages.inc.php:378 -#| msgid "" -#| "Leave blank for no column comments/mime types, suggested: [kbd]" -#| "pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma__column_info[/kbd]" msgstr "" -"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: " -"[kbd]pma_column_info[/kbd]" +"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: [kbd]" +"pma_column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5482,15 +5529,12 @@ msgid "Count tables" msgstr "Räkna tabeller" #: libraries/config/messages.inc.php:391 -#| msgid "" -#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" -#| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" msgstr "" -"Lämna tomt för avstängt Designer stöd, förslag: " -"[kbd]pma_designer_coords[/kbd]" +"Lämna tomt för avstängt Designer stöd, förslag: [kbd]pma_designer_coords[/" +"kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5526,15 +5570,12 @@ msgid "Hide databases" msgstr "Dölj databaser" #: libraries/config/messages.inc.php:399 -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" -#| "[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" msgstr "" -"Lämna blankt för att stänga av SQL-frågehistoriks stöd, förslag: " -"[kbd]pma_history[/kbd]" +"Lämna blankt för att stänga av SQL-frågehistoriks stöd, förslag: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5599,13 +5640,11 @@ msgid "Password for config auth" msgstr "Löseenord för config auth" #: libraries/config/messages.inc.php:412 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" msgstr "" -"Lämna blankt för att stänga av stöd för PDF-schema, förslag: " -"[kbd]pma_pdf_pages[/kbd]" +"Lämna blankt för att stänga av stöd för PDF-schema, förslag: [kbd]" +"pma_pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5634,9 +5673,6 @@ msgid "Server port" msgstr "Serverport" #: libraries/config/messages.inc.php:418 -#| msgid "" -#| "Leave blank for no \"persistent\" recently used tables across sessions, " -#| "suggested: [kbd]pma_recent[/kbd]" msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma__recent[/kbd]" @@ -5649,16 +5685,12 @@ msgid "Recently used table" msgstr "Nyligen använd tabell" #: libraries/config/messages.inc.php:420 -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"Lämna tomt för avstängt stöd för " -"[a@http://wiki.phpmyadmin.net/pma/relation]relationslänkar[/a], förslag: " -"[kbd]pma_relation[/kbd]" +"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/relation]" +"relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5705,15 +5737,12 @@ msgid "Use SSL" msgstr "Använd SSL" #: libraries/config/messages.inc.php:431 -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" -#| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" msgstr "" -"Lämna tomt för avstängt stöd för PDF-schema, förslag: " -"[kbd]pma_table_coords[/kbd]" +"Lämna tomt för avstängt stöd för PDF-schema, förslag: [kbd]pma_table_coords[/" +"kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5806,8 +5835,8 @@ msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking" "[/kbd]" msgstr "" -"Lämna tomt för avstängt stöd för SQL-förfrågnings spårning, förslag: " -"[kbd]pma_history[/kbd]" +"Lämna tomt för avstängt stöd för SQL-förfrågnings spårning, förslag: [kbd]" +"pma_history[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5826,9 +5855,6 @@ msgid "Automatically create versions" msgstr "Automatiskt skapa versioner" #: libraries/config/messages.inc.php:449 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_userconfig[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma__userconfig[/kbd]" @@ -6044,8 +6070,8 @@ msgstr "" "Om du har ett eget användarnamn, ange det här (default är [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Användarnamn" @@ -6689,10 +6715,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB-status" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Buffertanvändning" @@ -7383,19 +7405,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 -#| msgid "Filter databases by name" +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "filtrera databaser efter namn" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 -#| msgid "Clear series" +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Rensa snabbfilter" -#: libraries/navigation/NavigationTree.class.php:1051 -#| msgid "Filter tables by name" +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "filtrera tabeller efter namn" @@ -7416,13 +7435,11 @@ msgid "Columns" msgstr "Kolumn" #: libraries/navigation/Nodes/Node_Column_Container.class.php:38 -#| msgid "New" msgctxt "Create new column" msgid "New" msgstr "Ny" #: libraries/navigation/Nodes/Node_Event_Container.class.php:36 -#| msgid "New" msgctxt "Create new event" msgid "New" msgstr "Ny" @@ -7434,13 +7451,11 @@ msgid "Functions" msgstr "Funktioner" #: libraries/navigation/Nodes/Node_Function_Container.class.php:36 -#| msgid "New" msgctxt "Create new function" msgid "New" msgstr "Ny" #: libraries/navigation/Nodes/Node_Index_Container.class.php:38 -#| msgid "New" msgctxt "Create new index" msgid "New" msgstr "Ny" @@ -7453,19 +7468,16 @@ msgstr "Procedurer" #: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36 #: libraries/rte/rte_footer.lib.php:29 -#| msgid "New" msgctxt "Create new procedure" msgid "New" msgstr "Ny" #: libraries/navigation/Nodes/Node_Table_Container.class.php:40 -#| msgid "New" msgctxt "Create new table" msgid "New" msgstr "Ny" #: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36 -#| msgid "New" msgctxt "Create new trigger" msgid "New" msgstr "Ny" @@ -7476,7 +7488,6 @@ msgid "Views" msgstr "Vy" #: libraries/navigation/Nodes/Node_View_Container.class.php:36 -#| msgid "New" msgctxt "Create new view" msgid "New" msgstr "Ny" @@ -7499,17 +7510,17 @@ msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Enbart struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Struktur och data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Enbart data" @@ -7904,8 +7915,7 @@ msgstr "Visa MIME-typer" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Värd" @@ -8498,7 +8508,7 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Variabel" @@ -9013,7 +9023,7 @@ msgstr "Attribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Extra" @@ -9417,7 +9427,6 @@ msgid "User has been added." msgstr "En användare har skapats." #: libraries/server_privileges.lib.php:1625 -#| msgid "New" msgctxt "Create new user" msgid "New" msgstr "Ny" @@ -9712,7 +9721,7 @@ msgstr "Lägg till prefix till tabellen" msgid "Check tables having overhead" msgstr "Kontrollera tabeller med overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Inget" @@ -10057,7 +10066,7 @@ msgstr "Växla liten/stor" msgid "Toggle relation lines" msgstr "Växla mellan relaterade linjer" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" @@ -10123,31 +10132,31 @@ msgstr "Sidan har skapats" msgid "Page creation failed" msgstr "Sidan gick inte att skapa" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Sida" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Importera från vald sida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Exportera till vald sida" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Skapa en sida och exportera till den" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Nytt sidnamn: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Exportera/Importera till skala" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "rekommenderad" @@ -10266,15 +10275,11 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Filer" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -10358,7 +10363,7 @@ msgstr "Modul" msgid "Library" msgstr "Bibliotek" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Version" @@ -10417,10 +10422,6 @@ msgstr "Huvudservern har ändrats till %s" msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Visa master-status" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Visa anslutna slavar" @@ -10560,131 +10561,99 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status.php:657 -msgid "Handler" -msgstr "Hanterare" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Frågecache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Denna MySQL-servern har varit igång i %1$s. Den startade den %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "Trådar" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Denna MySQL-server fungerar sommaster ochslave i " +"replicerings process." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Temporära data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Denna MySQL server arbetar som master in replication process." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Fördröjda infogningar" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Denna MySQL server arbetar som slave in replication process." -#: server_status.php:663 -msgid "Key cache" -msgstr "Nyckelcache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:664 -msgid "Joins" -msgstr "Kopplingar" +#: server_status.php:122 +msgid "Replication status" +msgstr "Replikeringsstatus" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortering" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"På en upptagen server kan byte-räknare spåra ur, så statistiken som " +"rapporteras av MySQL-servern kan vara fel." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Transaktionssamordnare" +#: server_status.php:149 +msgid "Received" +msgstr "Mottagna" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Flush (stäng) alla tabeller" +#: server_status.php:168 +msgid "Sent" +msgstr "Skickade" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Visa öppna tabeller" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "Max. samtidiga förbindelser" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Visa slav-värdar" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Misslyckade försök" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Visa slav-status" +#: server_status.php:253 +msgid "Aborted" +msgstr "Avbrutna" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Rensa frågecache" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Körningsinformation" +#: server_status.php:329 +msgid "Command" +msgstr "Kommando" -#: server_status.php:830 -msgid "All status variables" -msgstr "Alla statusvariabler" - -#: server_status.php:832 -msgid "Monitor" -msgstr "Övervaka" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Handledare" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Antalet datapunkter: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Uppdateringsfrekvens: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Filter" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "Innehåller ordet:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Visa endast varnings värden" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Filtrera efter kategori ..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Visa oformaterade värden" - -#: server_status.php:930 -msgid "Related links:" -msgstr "Liknande länkar:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Kör analysator" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Instruktioner" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10692,7 +10661,7 @@ msgstr "" "Advisor systemet kan ge rekommendationer på server variabler genom att " "analysera server status variablerna." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10701,7 +10670,7 @@ msgstr "" "Observera att detta system ger rekommendationer baserat på enkla beräkningar " "och genom tumregler som inte nödvändigtvis gäller för ditt system." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10711,7 +10680,7 @@ msgstr "" "ändra (genom att läsa dokumentation) och hur du kan ångra ändringen. Fel " "inställning kan ha en mycket negativ inverkan på prestandan." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10721,812 +10690,39 @@ msgstr "" "taget, iaktta eller benchmarka databasen, och ångra den förändring omdet " "inte fanns någon tydligt mätbar förbättring." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Frågor sedan start: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Uppgifterna" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Nätverkstrafik sedan start:%s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Denna MySQL-servern har varit igång i %1$s. Den startade den %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Denna MySQL-server fungerar sommaster ochslave i " -"replicerings process." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Denna MySQL server arbetar som master in replication process." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Denna MySQL server arbetar som slave in replication process." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Replikeringsstatus" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"På en upptagen server kan byte-räknare spåra ur, så statistiken som " -"rapporteras av MySQL-servern kan vara fel." - -#: server_status.php:1191 -msgid "Received" -msgstr "Mottagna" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Skickade" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "Max. samtidiga förbindelser" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Misslyckade försök" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Avbrutna" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Kommando" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " -"anslutningen ordentligt." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." - -#: server_status.php:1529 -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 "" -"Antalet transaktioner som använde den temporära binära loggcachen, men som " -"överskred värdet binlog_cache_size och använde en temporär fil för att lagra " -"satser från transaktionen." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Antalet transaktioner som använde den temporära binära loggcachen." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." - -#: server_status.php:1532 -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 "" -"Antalet temporära tabeller på disk skapade automatiskt av servern under " -"utförande av satser. Om värdet Created_tmp_disk_tables är stort vill du " -"kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " -"lagras i minne istället för på disk." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Antalet temporära filer som mysqld har skapat." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"Antalet temporära tabeller i minne skapade automatiskt av servern under " -"utförande av satser." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " -"(förmodligen dubblerad nyckel)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " -"använder INSERT DELAYED får sin egen tråd." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "Antalet skrivna rader med INSERT DELAYED." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Antalet utförda FLUSH-satser." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Antalet interna COMMIT-satser." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Antalet gånger en rad togs bort från en tabell." - -#: server_status.php:1541 -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 "" -"MySQL-servern kan fråga lagringsmotorn NDB Cluster om den känner till en " -"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " -"antalet gånger tabeller har upptäckts." - -#: server_status.php:1542 -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 "" -"Antalet gånger första posten lästes från ett index. Om detta värde är högt " -"tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " -"FROM foo, under förutsättning att col1 är indexerad." - -#: server_status.php:1543 -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 "" -"Antalet efterfrågningar att läsa en rad baserat på en nyckel. Om detta värde " -"är högt är det en bra indikation på att dina frågor och tabeller är riktigt " -"indexerade." - -#: server_status.php:1544 -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 "" -"Antalet efterfrågningar att läsa den följande raden i nyckelordning. Detta " -"värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " -"gör en indexavsökning." - -#: server_status.php:1545 -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 "" -"Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " -"läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." - -#: server_status.php:1546 -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 "" -"Antalet efterfrågningar att läsa en rad baserat på en fix position. Detta " -"värde är högt om du ställer många frågor som kräver sortering av resultatet. " -"Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " -"eller du har föreningar som inte använder nycklar på rätt sätt." - -#: server_status.php:1547 -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 "" -"Antalet efterfrågningar att läsa den följande raden i datafilen. Detta värde " -"är högt om du gör många tabellavsökningar. I allmänhet antyder detta att " -"dina tabeller inte är riktigt indexerade eller att dina frågor inte är " -"skrivna för att dra nytta av de index du har." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Antalet interna ROLLBACK-satser." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Antalet sidor innehållande data (orena eller rena)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Antalet sidor för närvarande orena." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Antalet tomma sidor." - -#: server_status.php:1555 -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 "" -"Antalet låsta sidor i InnoDB-buffert. Dessa är sidor som för närvarande " -"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " -"anledning." - -#: server_status.php:1556 -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 "" -"Antalet upptagna sidor pga att de har blivit allokerade som administrativt " -"extrautrymme för bl.a. radlås eller adaptivt hashindex. Detta värde kan " -"också beräknas som Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Total storlek på buffert, i antal sidor." - -#: server_status.php:1558 -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 "" -"Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " -"när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " -"InnoDB gör en sekventiell avsökning av en hel tabell." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " -"fick göra en enkelsidig läsning." - -#: server_status.php:1562 -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 "" -"Normalt sker skrivningar till InnoDB-bufferten i bakgrunden. Dock om det " -"behövs läsas eller skapas en sida och inga rena sidor finns tillgängliga, så " -"är det nödvändigt att vänta på att sidor rensas först. Denna räknare räknar " -"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " -"värde vara litet." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Antalet fsync()-operationer hittills." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Nuvarande antal väntande fsync()-operationer." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Nuvarande antal väntande läsningar." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Nuvarande antal väntande skrivningar." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Mängden data läst hittills, i bytes." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Totalt antal läsningar av data." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Totalt antal skrivningar av data." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Mängden data skriven hittills, i bytes." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "Antalet doublewrite transaktioner som har utförts.." - -#: server_status.php:1574 -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 "" -"Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " -"att den skulle rensas innan kunde fortsätta." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Antalet skriv-begäran att skriva till logg." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Antalet fysiska skrivningar till loggfilen." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Antalet väntande fsync() av loggfil." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Väntande skrivningar till loggfil." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Antalet bytes skrivna till loggfilen." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Antalet skapade sidor." - -#: server_status.php:1582 -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 "" -"Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " -"sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Antalet lästa sidor." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Antalet skrivna sidor." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Antalet radlås som för närvarande väntas på." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Antalet gånger ett radlås behövde väntas på." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "Antalet rader borttagna från InnoDB-tabeller." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "Antalet rader tillagda i InnoDB-tabeller." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "Antalet rader lästa från InnoDB-tabeller." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "Antalet rader uppdaterade i InnoDB-tabeller." - -#: server_status.php:1594 -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 "" -"Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " -"till disk. Det brukade vara känt som Not_flushed_key_blocks." - -#: server_status.php:1595 -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 "" -"Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " -"avgöra hur stor del av nyckelcachen som används." - -#: server_status.php:1596 -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 "" -"Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " -"indikerar maximala antalet block som någonsin använts vid ett tillfälle." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Andel av använd nyckelcache (beräknat värde)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." - -#: server_status.php:1599 -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 "" -"Antalet fysiska läsningar av ett nyckelblock från disk. Om värdet Key_reads " -"är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " -"missfrekvens kan beräknas som Key_reads/Key_read_requests." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " -"läsbegaäran (beräknat värde)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" - -#: server_status.php:1604 -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 "" -"Den totala kostnaden för den senaste kompilerade frågan enligt beräkning av " -"frågeoptimeraren. Användbart vid jämförelse av kostnad för olika frågesätt " -"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " -"ännu." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Det maximala antalet anslutningar som har använts samtidigt sedan servern " -"startade." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " -"förmodligen ditt tabellcache-värde för litet." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Antalet filer som är öppna." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Antalet tabeller som är öppna." - -#: server_status.php:1611 -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 "" -"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " -"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Mängden fritt minne för frågecache." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Antalet cache-träffar." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Antalet förfrågningar tillagda i cachen." - -#: server_status.php:1615 -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 "" -"Antalet frågor som har tagits bort från cachen för att frigöra minne för " -"cachning av nya frågor. Denna information kan hjälpa dig att ställa in " -"storleken på frågecachen. Frågecachen använder strategin minst nyligen " -"använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " -"inställningen query_cache_type)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Antalet frågor registrerade i cachen." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Totala antalet block i frågecachen." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Status för felsäker replikering (ännu inte implementerat)." - -#: server_status.php:1620 -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 "" -"Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " -"noggrant kontrollera index för dina tabeller." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." - -#: server_status.php:1622 -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 "" -"Antalet kopplingar utan nycklar som kontrollerar nyckelanvändning efter " -"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " -"dina tabeller.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " -"inte kritiskt även om detta är stort.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" -"Antalet kopplingar som gjorde en fullständig genomsökning av den första " -"tabellen." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " -"omprövat transaktioner." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" -"Denna är ON ifall denna server är en slav som är förbunden till en " -"huvudserver." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." - -#: server_status.php:1630 -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 "" -"Antalet sammanslagningar som sorteringsalgoritmen har behövt utföra. Om " -"detta värde är stort bör du överväga att öka värdet i systemvariabeln " -"sort_buffer_size." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Antalet sorteringar som gjordes med intervall." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Antalet sorterade rader." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." - -#: server_status.php:1635 -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 "" -"Antalet gånger som ett tabellås inte kunde förvärvas omedelbart och en " -"väntan var nödvändig. Om detta värde är högt och du har prestandaproblem bör " -"du först optimera dina frågor och antingen dela upp din tabell eller " -"tabeller eller använda replikering." - -#: server_status.php:1636 -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 "" -"Antalet trådar i trådcachen. Cachens träffrekvens kan beräknas som " -"Threads_created/Connections. Om detta värde är rött bör du öka värdet " -"thread_cache_size." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Antalet öppna förbindelser." - -#: server_status.php:1638 -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 "" -"Antalet trådar skapade för att hantera förbindelser. Om värdet " -"Threads_created är stort, vill du kanske öka värdet thread_cache_size. " -"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " -"trådimplementering.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "Trådad cache träffrekvens (beräknat värde)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Antalet trådar som inte är vilande." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "Starta Monitor" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Instruktioner/Setup" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Klar ändra/editera diagram" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Lägg till diagram" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Ordna/editera diagram" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Visa kolumner" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Diagram arrangemang" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11534,15 +10730,15 @@ msgstr "" "Arrangemanget av diagrammen lagras lokalt i webbläsarens. Du kanske vill " "exportera den om du har en komplicerad inställning." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Återställ till standardinställningen" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "Övervaka instruktioner" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11556,7 +10752,7 @@ msgstr "" "Observera att general_log producerar mycket data och ökar lasten på servern " "med upp till 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11568,11 +10764,11 @@ msgstr "" "stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda " "serverfunktionernas diagramfunktioner." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "Använda monitorn:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11583,7 +10779,7 @@ msgstr "" "\"Inställningar\", eller ta bort diagram med cog-ikonen vid respektive " "diagram." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11595,11 +10791,11 @@ msgstr "" "bekräftat kommer detta ladda en tabell över grupperade frågor, Där kan du " "klicka på de förekommande SELECT-satser för att ytterligare analysera dessa." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Vänligen notera:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11612,92 +10808,813 @@ msgstr "" "samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " "inte behövs längre." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Förinställt diagram" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Statusvariabler" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Välj serie:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Vanligtvis övervakade" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "eller skriv variabelnamn:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Visa som skillnadsvärde" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Tillämpa en dividend" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Lägg till enhet till datavärdena" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Lägg till denna serie" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Rensa serie" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Serie i diagram:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Logga statistik" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Välj tidsintervall:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Ta bort variabeldata i INSERT kommandon för bättre gruppering" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "Välj från vilken logg du vill att statistiken ska genereras från." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Resultaten grupperas efter frågetext." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Frågeanalyserare" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuter" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Frågor sedan start: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Uppgifterna" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Filter" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "Innehåller ordet:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Visa endast varnings värden" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Filtrera efter kategori ..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Visa oformaterade värden" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "Liknande länkar:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " +"anslutningen ordentligt." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." + +#: server_status_variables.php:334 +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 "" +"Antalet transaktioner som använde den temporära binära loggcachen, men som " +"överskred värdet binlog_cache_size och använde en temporär fil för att lagra " +"satser från transaktionen." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Antalet transaktioner som använde den temporära binära loggcachen." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." + +#: server_status_variables.php:346 +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 "" +"Antalet temporära tabeller på disk skapade automatiskt av servern under " +"utförande av satser. Om värdet Created_tmp_disk_tables är stort vill du " +"kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " +"lagras i minne istället för på disk." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Antalet temporära filer som mysqld har skapat." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"Antalet temporära tabeller i minne skapade automatiskt av servern under " +"utförande av satser." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " +"(förmodligen dubblerad nyckel)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " +"använder INSERT DELAYED får sin egen tråd." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "Antalet skrivna rader med INSERT DELAYED." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Antalet utförda FLUSH-satser." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Antalet interna COMMIT-satser." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Antalet gånger en rad togs bort från en tabell." + +#: server_status_variables.php:381 +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 "" +"MySQL-servern kan fråga lagringsmotorn NDB Cluster om den känner till en " +"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " +"antalet gånger tabeller har upptäckts." + +#: server_status_variables.php:387 +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 "" +"Antalet gånger första posten lästes från ett index. Om detta värde är högt " +"tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " +"FROM foo, under förutsättning att col1 är indexerad." + +#: server_status_variables.php:393 +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 "" +"Antalet efterfrågningar att läsa en rad baserat på en nyckel. Om detta värde " +"är högt är det en bra indikation på att dina frågor och tabeller är riktigt " +"indexerade." + +#: server_status_variables.php:398 +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 "" +"Antalet efterfrågningar att läsa den följande raden i nyckelordning. Detta " +"värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " +"gör en indexavsökning." + +#: server_status_variables.php:403 +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 "" +"Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " +"läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." + +#: server_status_variables.php:407 +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 "" +"Antalet efterfrågningar att läsa en rad baserat på en fix position. Detta " +"värde är högt om du ställer många frågor som kräver sortering av resultatet. " +"Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " +"eller du har föreningar som inte använder nycklar på rätt sätt." + +#: server_status_variables.php:414 +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 "" +"Antalet efterfrågningar att läsa den följande raden i datafilen. Detta värde " +"är högt om du gör många tabellavsökningar. I allmänhet antyder detta att " +"dina tabeller inte är riktigt indexerade eller att dina frågor inte är " +"skrivna för att dra nytta av de index du har." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Antalet interna ROLLBACK-satser." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Antalet sidor innehållande data (orena eller rena)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Antalet sidor för närvarande orena." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Antalet tomma sidor." + +#: server_status_variables.php:443 +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 "" +"Antalet låsta sidor i InnoDB-buffert. Dessa är sidor som för närvarande " +"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " +"anledning." + +#: server_status_variables.php:448 +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 "" +"Antalet upptagna sidor pga att de har blivit allokerade som administrativt " +"extrautrymme för bl.a. radlås eller adaptivt hashindex. Detta värde kan " +"också beräknas som Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Total storlek på buffert, i antal sidor." + +#: server_status_variables.php:458 +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 "" +"Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " +"när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " +"InnoDB gör en sekventiell avsökning av en hel tabell." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " +"fick göra en enkelsidig läsning." + +#: server_status_variables.php:474 +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 "" +"Normalt sker skrivningar till InnoDB-bufferten i bakgrunden. Dock om det " +"behövs läsas eller skapas en sida och inga rena sidor finns tillgängliga, så " +"är det nödvändigt att vänta på att sidor rensas först. Denna räknare räknar " +"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " +"värde vara litet." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Antalet fsync()-operationer hittills." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Nuvarande antal väntande fsync()-operationer." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Nuvarande antal väntande läsningar." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Nuvarande antal väntande skrivningar." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Mängden data läst hittills, i bytes." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Totalt antal läsningar av data." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Totalt antal skrivningar av data." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Mängden data skriven hittills, i bytes." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "Antalet doublewrite transaktioner som har utförts.." + +#: server_status_variables.php:516 +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 "" +"Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " +"att den skulle rensas innan kunde fortsätta." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Antalet skriv-begäran att skriva till logg." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Antalet fysiska skrivningar till loggfilen." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Antalet väntande fsync() av loggfil." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Väntande skrivningar till loggfil." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Antalet bytes skrivna till loggfilen." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Antalet skapade sidor." + +#: server_status_variables.php:541 +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 "" +"Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " +"sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Antalet lästa sidor." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Antalet skrivna sidor." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Antalet radlås som för närvarande väntas på." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Antalet gånger ett radlås behövde väntas på." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "Antalet rader borttagna från InnoDB-tabeller." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "Antalet rader tillagda i InnoDB-tabeller." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "Antalet rader lästa från InnoDB-tabeller." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "Antalet rader uppdaterade i InnoDB-tabeller." + +#: server_status_variables.php:579 +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 "" +"Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " +"till disk. Det brukade vara känt som Not_flushed_key_blocks." + +#: server_status_variables.php:584 +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 "" +"Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " +"avgöra hur stor del av nyckelcachen som används." + +#: server_status_variables.php:588 +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 "" +"Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " +"indikerar maximala antalet block som någonsin använts vid ett tillfälle." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Andel av använd nyckelcache (beräknat värde)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." + +#: server_status_variables.php:599 +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 "" +"Antalet fysiska läsningar av ett nyckelblock från disk. Om värdet Key_reads " +"är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " +"missfrekvens kan beräknas som Key_reads/Key_read_requests." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " +"läsbegaäran (beräknat värde)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" + +#: server_status_variables.php:619 +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 "" +"Den totala kostnaden för den senaste kompilerade frågan enligt beräkning av " +"frågeoptimeraren. Användbart vid jämförelse av kostnad för olika frågesätt " +"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " +"ännu." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Det maximala antalet anslutningar som har använts samtidigt sedan servern " +"startade." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " +"förmodligen ditt tabellcache-värde för litet." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Antalet filer som är öppna." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Antalet tabeller som är öppna." + +#: server_status_variables.php:645 +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 "" +"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " +"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Mängden fritt minne för frågecache." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Antalet cache-träffar." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Antalet förfrågningar tillagda i cachen." + +#: server_status_variables.php:659 +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 "" +"Antalet frågor som har tagits bort från cachen för att frigöra minne för " +"cachning av nya frågor. Denna information kan hjälpa dig att ställa in " +"storleken på frågecachen. Frågecachen använder strategin minst nyligen " +"använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " +"inställningen query_cache_type)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Antalet frågor registrerade i cachen." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Totala antalet block i frågecachen." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Status för felsäker replikering (ännu inte implementerat)." + +#: server_status_variables.php:679 +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 "" +"Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " +"noggrant kontrollera index för dina tabeller." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." + +#: server_status_variables.php:686 +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 "" +"Antalet kopplingar utan nycklar som kontrollerar nyckelanvändning efter " +"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " +"dina tabeller.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " +"inte kritiskt även om detta är stort.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" +"Antalet kopplingar som gjorde en fullständig genomsökning av den första " +"tabellen." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " +"omprövat transaktioner." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" +"Denna är ON ifall denna server är en slav som är förbunden till en " +"huvudserver." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." + +#: server_status_variables.php:717 +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 "" +"Antalet sammanslagningar som sorteringsalgoritmen har behövt utföra. Om " +"detta värde är stort bör du överväga att öka värdet i systemvariabeln " +"sort_buffer_size." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Antalet sorteringar som gjordes med intervall." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Antalet sorterade rader." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." + +#: server_status_variables.php:734 +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 "" +"Antalet gånger som ett tabellås inte kunde förvärvas omedelbart och en " +"väntan var nödvändig. Om detta värde är högt och du har prestandaproblem bör " +"du först optimera dina frågor och antingen dela upp din tabell eller " +"tabeller eller använda replikering." + +#: server_status_variables.php:740 +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 "" +"Antalet trådar i trådcachen. Cachens träffrekvens kan beräknas som " +"Threads_created/Connections. Om detta värde är rött bör du öka värdet " +"thread_cache_size." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Antalet öppna förbindelser." + +#: server_status_variables.php:748 +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 "" +"Antalet trådar skapade för att hantera förbindelser. Om värdet " +"Threads_created är stort, vill du kanske öka värdet thread_cache_size. " +"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " +"trådimplementering.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "Trådad cache träffrekvens (beräknat värde)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Antalet trådar som inte är vilande." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Inställning av variabeln misslyckades" @@ -12091,7 +12008,6 @@ msgid "The columns have been moved successfully." msgstr "Kolumnerna har flyttats framgångsrikt." #: tbl_chart.php:41 -#| msgid "No data found" msgid "No data to display" msgstr "Ingen data att visa" @@ -12290,26 +12206,26 @@ msgstr "Begränsning av främmande nyckel" msgid "Tracking report for table `%s`" msgstr "Spårning av rapport för tabell `%s`" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Spårning av %1$s deaktiverades vid version %2$s." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Spårning av %1$s aktiverades vid version %2$s." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL-satser exekverade." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12317,117 +12233,117 @@ msgstr "" "Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att " "du har behörighet att göra det." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Kommentera bort dessa två rader om du inte behöver dem." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-satser exporteras. Kopiera dump eller verkställ." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s ögonblicksbild (SQL-kod)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "Spårningsdata har tagits bort" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Sökningsfel" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "Spårningsdata manipulation har tagits bort" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Spårning av uppgifter" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Visa %1$s med datum från %2$s till %3$s av användare %4$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Ta bort spårning för denna rapport" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Inget data" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Data definition redogörelse" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Data manipulation redogörelse" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL dump (filnedladdning)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Denna alternativ kommer att ersätta din tabell och ingående data." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL exekvering" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "Exportera som %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Visa versioner" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "Avaktivera spårning för %s" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Deaktivera nu" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "Aktivera spårning för %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Aktivera nu" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "Skapa version %1$s av %2$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Spåra dessa datadefinitioners kommandon:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Spåra dessa datahanterings kommandon:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Skapa version" @@ -12577,11 +12493,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time är för närvarande satt till %ds." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Långsam frågeloggning" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Den långsamma sökfrågeloggen är inaktiverad." @@ -12597,15 +12513,33 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries är satt till 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"Aktivera långsam frågeloggning genom att sätta {log_slow_queries} till \"ON" +"\". Detta kommer att förbättra vid felsökning av dålig prestanda frågor." + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries är satt till 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Releasa serien" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL server version är mindre än 5.1." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12613,21 +12547,21 @@ msgstr "" "Du bör uppgradera, eftersom MySQL 5.1 har bättre prestanda, och MySQL 5.5 " "ännu bättre." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Nuvarande version: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "Minor version" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Version lägre än 5.1.30 (den första GA utgåvan av 5.1)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12635,24 +12569,24 @@ msgstr "" "Du bör uppgradera, eftersom de senare versionerna av MySQL 5.1 har " "förbättrad prestanda och MySQL 5.5 ännu mer." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Version lägre än 5.5.8 (den första GA utgåvan av 5.5)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Du bör uppgradera till en stabil version av MySQL 5.5" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Distribution" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Version är kompilerad från källan, inte från en officiell MySQL binär." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12663,40 +12597,40 @@ msgstr "" "officiella MySQL-binärer, inte någon paket distribution (t.ex. RedHat, " "Debian/Ubuntu etc)." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "\"källa\" hittades i version_comment" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL handboken är endast korrekt för officiella MySQL-binärer." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona dokumentation finns vid http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "\"percona\" hittades i version_comment" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle dokumentation finns vid http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Versionssträngen (%s) matchar versionshanterings schemat i Drizzle" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL Arkitektur" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL är inte kompilerad som ett 64-bitars paket." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12706,20 +12640,20 @@ msgstr "" "så MySQL kanske inte kan att få tillgång till allt minne. Du kan vilja " "överväga att installera 64-bitars versionen av MySQL." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Tillgängligt minne på denna värd: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Frågecache inaktiverad" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Frågaecache är inte aktiverat." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12731,20 +12665,20 @@ msgstr "" "siffrigt Mb värde och sätt{query_cache_type} till \"ON\". Notera: Om " "du använder memcached, ignorera denna rekommendation." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" "query_cache_size är satt till 0 eller query_cache_type är inställd på 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Frågecache metod" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Suboptimal caching metod." -#: libraries/advisory_rules.txt:157 +#: 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 istället för MySQL " "Querycachen, speciellt om du har flera slavar." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12765,34 +12699,34 @@ msgstr "" "Frågecachen är aktiverad och servern tar emot %d förfrågningar per sekund. " "Denna regel aktiveras när det är mer än 100 förfrågningar per sekund." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Cache frågeeffektivitet (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Frågecachen fungerar inte effektivt, den har en låg träffsäkerhet." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "Överväg att öka {query_cache_limit}." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Den aktuella frågecachens träffsäkerhet på %s%% är under 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Frågecache användning" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Mindre än 80%% av frågecachen utnyttjas." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12800,7 +12734,7 @@ msgstr "" "Detta kan orsakas av {query_cache_limit} är satt för lågt. Tömma frågecachen " "kan också hjälpa." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12809,15 +12743,15 @@ msgstr "" "Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge " "cache-storlek är %s%%. Det bör vara över 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Frågecache fragmentering" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Frågecachen är avsevärt fragmenterad." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12837,7 +12771,7 @@ msgstr "" "följande formel: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12848,18 +12782,18 @@ msgstr "" "vilket innebär att frågaecachen har ett växlande mönster av lediga och " "använda block. Detta värde bör vara under 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Fråge cachen lite minne prunes" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." msgstr "" "Cachade frågor tas bort på grund av lågt frågecache minne från frågecache." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12869,7 +12803,7 @@ msgstr "" "att upprätthålla cachen kommer sannolikt att öka med sin storlek, så gör " "detta i små steg och övervaka resultatet." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12878,11 +12812,11 @@ msgstr "" "Förhållandet mellan borttagna frågor och inlaggda frågor är %s%%. Ju lägre " "värdet är, desto bättre (Denna regel aktiveras vid: 0,1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Maximal storlek för frågecache" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12890,7 +12824,7 @@ msgstr "" "Frågecache storleken är större än 128 Mb. Stor frågecache kan orsaka " "betydande overhead, vilket krävs för att behålla cache." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." @@ -12898,22 +12832,22 @@ msgstr "" "Beroende på den aktuella miljön kan prestandan öka genom att minska detta " "värde." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Nuvarande storlek på frågecache: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Frågecachen minimum resultat storlek" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Den maximala storleken på resultatet i fråg cachen är standardvärdet på 1 Mb." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12934,19 +12868,19 @@ msgstr "" "tabelluppdateringar) kan en ökning av {query_cache_limit} försämra " "effektiviteten." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit är satt till 1 Mb" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Andelen av typer som medför temporära tabeller" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Alltför många typer orsakar temporära tabeller." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12954,7 +12888,7 @@ msgstr "" "Överväg att öka sort_buffer_size och/eller read_rnd_buffer_size, beroende på " "ditt systems minnesbegränsning" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12963,11 +12897,11 @@ msgstr "" "%s%% av alla sorter orsakar tillfälliga tabeller, detta värde bör vara lägre " "än 10%%." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Andelen sorter som orsakar temporära tabeller" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." @@ -12975,15 +12909,15 @@ msgstr "" "Genomsnittligt antal temporära tabeller: %s. detta värde bör vara mindre än " "1 per timme." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Sortera rader" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Det är många rader som blir sorterade." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12994,20 +12928,20 @@ msgstr "" "att frågor som kräver mycket sortering använder de indexerade fälten i " "ORDER BY-satsen, då detta kommer resultera i mycket snabbare sortering" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Genomsnittligt antal sorterade rader: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "Andelen JOIN som saknar index" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "Det finns för många JOINS som saknar index." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13016,21 +12950,21 @@ msgstr "" "index för de fält som använder join villkoren kommer avsevärt snabba upp " "tabellkopplingen" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tabellkoppling i genomsnitt: %s detta värde bör vara mindre än 1 per timme" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Andel läsning av första indexpost" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Frekvensen av att läsa första indexpost är hög." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13046,21 +12980,21 @@ msgstr "" "snabba upp fullständiga indexsökningar. Fullständiga indexskanningar kan " "bara minskas genom att skriva om frågorna." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "Index sökningar i genomsnitt: %s detta värde bör vara mindre än 1 per timme" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Andelen läsning av fast position" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Frekvensen att läsa data från en fast position är hög." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13070,7 +13004,7 @@ msgstr "" "fullständig tabellsökning, innehållande join-frågor som inte använder index. " "Lägg till index i förekommande fall." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13079,15 +13013,15 @@ msgstr "" "Andelen läsning av fast position i genomsnitt: %s detta värde bör vara " "mindre än 1 per timme" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Andelen av läsning av nästa tabellrad" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Frekvensen av läsning av nästa tabellrad är hög." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13095,7 +13029,7 @@ msgstr "" "Detta tyder på att många frågor utför en fullständig tabellsökning, Lägg " "till index i förekommande fall." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13103,15 +13037,15 @@ msgstr "" "Andelen av läsning av nästa tabellrad: %s, detta värde bör vara mindre än 1 " "per timme" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size jämfört med max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size och max_heap_table_size inte är samma." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13122,23 +13056,23 @@ msgstr "" "för att bestämma den maximala storleken på in-memory tabeller. Så om du vill " "öka iminnets tabellgräns kommer du behöva öka andra värdet också." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Nuvarande värden är tmp_table_size: %s, max_heap_table_size:%s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Andel temporära tabeller på disken" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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 "" "Många temporära tabeller skrivs till disken istället för att lagras i minnet." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13156,7 +13090,7 @@ msgstr "" "början av en artikel av Pythian group: " -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13165,11 +13099,11 @@ msgstr "" "%s%% av alla temporära tabeller skrivna till disk, detta värde bör vara " "mindre än 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Temporär disk användning" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13187,7 +13121,7 @@ msgstr "" "nämns i MySQL dokumentationen; MySQL Documentation" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13196,16 +13130,16 @@ msgstr "" "Andelen temporära tabeller som skrivs till disk: %s, detta värde bör vara " "mindre än 1 per timme" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM nyckel buffertstorlek" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" "Nyckel buffert är inte initialiserad. Inget MyISAM index kommer cachas." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13213,21 +13147,21 @@ msgstr "" "Definiera {key_buffer_size} beroende på storleken på ditt MyISAM index. 64Mb " "är en bra början." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size är 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Max %% MyISAM key buffer har någonsin använts" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM key buffer (index cache) %% använt, är lågt." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13237,7 +13171,7 @@ msgstr "" "för att se om index har tagits bort eller kontrollera frågor och " "förväntningar på vilka index som används." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13245,43 +13179,43 @@ msgstr "" "max %% av MyISAM key buffer någonsin använts %s%%, detta värde ska vara " "högre än 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Andelen använd MyISAM key buffer" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "%% MyISAM key buffer användt: %s%%, detta värde bör vara större än 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Andelen index som läses från minnet" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "Andelen %% av index som använder MyISAM key buffer är låg." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "Du kan behöva öka {key_buffer_size}." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Index som läses från minnet: %s%%, detta värde bör vara över 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Andelen öppna tabeller" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Andelen öppna tabeller är hög." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13289,16 +13223,16 @@ msgstr "" "Öppna tabeller kräver disk I/O som är dyrt. Att öka {table_open_cache} kan " "lösa detta." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Andel öppna tabeller: %s, detta värde bör vara mindre än 10 per timme" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Procentandel av gränsen för använda öppna filer" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13306,7 +13240,7 @@ msgstr "" "Antalet öppna filer närmar sig maximalt antal öppna filer. Du kan få en " "\"För många öppna filer\" fel." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13314,58 +13248,58 @@ msgstr "" "Överväg att öka {open_files_limit} och kontrollera felloggen vid omstart " "efter att ha ändrat open_files_limit." -#: libraries/advisory_rules.txt:332 +#: 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 "Antalet öppnade filer är %s%% av gränsvärdet. Det bör vara under 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Andel öppna filer" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Andelen öppnande av filer är hög." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Andelen öppnade filer: %s detta värde bör vara mindre än 5 per timme" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Omedelbar tabellåsning %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Alltför många tabell låsningar beviljades inte omedelbart." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "Optimera frågor och/eller använd InnoDB för att minska låsningsväntan." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Omedelbara tabellåsningar %s%%, detta värde bör vara över 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Tabell låsning. Andelen vänta" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" "Tabellåsning,.andel väntan: %s, detta värde bör vara mindre än 1 per timme" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "trådad cache" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13373,41 +13307,41 @@ msgstr "" "Trådad cache är inaktiverad, vilket resulterar i mer overhead från nya " "anslutningar till MySQL." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "Aktivera trådad cache genom att sätta {thread_cache_size} > 0." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "Trådad cache är satt till 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "Andel trådad cache %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "Trådad cache är inte effektiv." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "Öka {thread_cache_size}." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Andel trådad cache: %s%%, detta värde bör vara över 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "Trådar som är långsamma att starta" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Det är för många trådar som tar lång tid att starta." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13415,20 +13349,20 @@ msgstr "" "Detta händer i allmänhet vid generell överbelastning av systemet då det är " "ganska enkla operationer. Du bör kanske övervaka din system last noggrant." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s tråd(ar) tog längre tid än %s sekunder att starta, bör det vara 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Långsam uppstartstid" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads är över 2s" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13436,16 +13370,16 @@ msgstr "" "Sätt slow_launch_time till 1s eller 2s för att korrekt räkna de trådar som " "tar lång tid att starta" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time är satt till %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Andel använda anslutningar" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13453,7 +13387,7 @@ msgstr "" "Det maximala antalet av använda anslutningar börjar närma sig antalet " "max_connections." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13463,22 +13397,22 @@ msgstr "" "stänger databashanterare blir dödade tidigare. Se till att koden stänger " "databashanteraren ordentligt." -#: libraries/advisory_rules.txt:390 +#: 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 är %s%% av max_connections. Det bör vara mindre än 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Andelen avbrutna anslutningar" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "För många anslutningar avbryts." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Denna artikel kan hjälpa dig att spåra " "källan." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% av alla anslutningar avbryts. Detta värde bör vara under 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Andelen avbrutna anslutningar" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" "Andelen avbrutna anslutningar är %s, det bör vara mindre än 1 per timme" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Andelen avslutade klienter" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Alltför många klienter avbryts." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13524,42 +13458,42 @@ msgstr "" "ordentligt. Detta kan bero på nätverksproblem eller att koden inte stänger " "databashanteraren korrekt. Kontrollera ditt nätverk och kod." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% av alla klienter har avslutats. Detta v'rde bör vara under 2¤¤" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Andelen avslutade klienter" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Andelen avbrytna klienter är %s detta värde bör vara mindre än 1 per timme" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "Är InnoDB inaktiverad?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Du har inte aktiverat InnoDB." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB är vanligtvis ett bättre val för tabell motorer." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb är satt till \"value\"" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB loggstorlek" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13567,7 +13501,7 @@ msgstr "" "Storleken på InnoDBs loggfil har inte lämplig storlek i förhållande till " "InnoDB buffer pool." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13590,7 +13524,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">detta blogg-inlägg" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13599,15 +13533,15 @@ msgstr "" "Din InnoDB loggstorlek är %s%%, i förhållande till InnoDB buffer pool " "storlek, bör det inte vara under 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Maximal 'innoDB koggstorlek" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Storleken på InnoDB databas är inte tillräckligt stor." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13630,20 +13564,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">denna blogpost" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Din absoluta InnoDB loggstorlek är %s Mb" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB bufferpoolstorlek" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Din InnoDB buffer pool är relativt liten." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13668,7 +13602,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">denna artikel" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13681,15 +13615,15 @@ msgstr "" "tillräckligt för ditt system om du inte har så många InnoDB tabeller eller " "andra tjänster som körs på samma maskin." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM parallella infogningar" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Aktivera concurrent_insert genom att sätta det till 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL Dokumentation" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Kb skickade sedan senaste uppdatering" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Kb mottagna sedan senaste uppdatering" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Server trafik (i Kb)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Anslutningar sedan senaste uppdatering" + +#~ msgid "Questions since last refresh" +#~ msgstr "Frågor sedan senaste uppdatering" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Frågor (utförda kommandon från servern)" + +#~ msgid "Runtime Information" +#~ msgstr "Körningsinformation" + +#~ msgid "Number of data points: " +#~ msgstr "Antalet datapunkter: " + +#~ msgid "Refresh rate: " +#~ msgstr "Uppdateringsfrekvens: " + +#~ msgid "Run analyzer" +#~ msgstr "Kör analysator" + #~ msgid "Show more actions" #~ msgstr "Visa fler åtgärder" diff --git a/po/ta.po b/po/ta.po index 328998486d..819e35fb9a 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-21 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil \n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -49,7 +49,7 @@ msgstr "" msgid "Search" msgstr "தேடு" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -79,21 +79,21 @@ msgstr "தேடு" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "செல்" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "முக்கியபெயர்" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "விளக்கம்" @@ -114,17 +114,17 @@ msgstr "%s கோப்பு இந்த அமைப்பில் இல் msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "நிரல்" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "நிரல்" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "வகை" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "வகை" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "வெற்று" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "வெற்று" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "முன்னிருப்பு" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "முன்னிருப்பு" msgid "Links to" msgstr "இணைப்பு" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "இணைப்பு" msgid "Comments" msgstr "கருத்துரைகள்" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "கருத்துரைகள்" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "இல்லை" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "இல்லை" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "ஆம்" @@ -320,7 +320,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "அட்டவணை" @@ -340,7 +340,7 @@ msgstr "அளவு" msgid "in use" msgstr "பயன்பாட்டில்" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -348,7 +348,7 @@ msgstr "பயன்பாட்டில்" msgid "Creation" msgstr "உருவாக்கம்" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -356,7 +356,7 @@ msgstr "உருவாக்கம்" msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -408,7 +408,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "தரவுத்தளம்" @@ -416,17 +416,17 @@ msgstr "தரவுத்தளம்" msgid "Last version" msgstr "இறுதி பதிப்பு" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "தகுநிலை" @@ -441,7 +441,7 @@ msgstr "செயல்" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "காண்பி" @@ -457,11 +457,11 @@ msgstr "" msgid "Drop" msgstr "அழி" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "செயற்படு" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "செயற்பாடற்ற" @@ -469,11 +469,11 @@ msgstr "செயற்பாடற்ற" msgid "Versions" msgstr "பதிப்புக்கள்" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -543,46 +543,46 @@ msgstr "" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, fuzzy, php-format #| msgid "Point" msgid "Point %d" msgstr "புள்ளி" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "ஒரு புள்ளியை சேர்" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "உள்ப்புற வளையம்" @@ -592,15 +592,15 @@ msgstr "உள்ப்புற வளையம்" msgid "Add a linestring" msgstr "கட்டுப்பாடுகளை சேர்க்க" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "உள்ப்புற வளையத்தை சேர்" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "பல்கோணி" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "ஒரு பல்கோணியை சேர்" @@ -727,8 +727,9 @@ msgstr "" msgid "Database server" msgstr "தரவுத்தளங்கள்" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "சேவையன்" @@ -749,7 +750,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -974,12 +975,12 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "மூடு" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -989,15 +990,15 @@ msgstr "மூடு" msgid "Edit" msgstr "தொகு" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "நேரடி போக்குவரத்து வரைபடம்" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "நேரடி இணை./செயலாக்க வரைபடம்" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "நேரடி வினவல் வரைபடம்" @@ -1008,13 +1009,14 @@ msgstr "நிலையான தரவு" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "மொத்தம்" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "ஏனையது" @@ -1029,48 +1031,14 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "செயலாக்கங்கள்" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "இணைப்புக்கள்/ செயலாக்கங்கள்" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "வினவல் புள்ளிவிவரவியல்" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1078,120 +1046,124 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "வினவல் இடைமாற்றல் பாவனையளவு" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டது" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "மையச்செயலக பாவனையளவு" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "முறைமை நினைவகம்" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "சராசரி ஏற்றல்" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "மொத்த நினைவகம்" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "இடைமாற்று நினைவகம்" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "விடுபட்ட நினைவகம்" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "பாவிக்கப்பட்ட நினைவகம்" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "துண்டுகள் அனுப்ப" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "துண்டுகள் ஏற்றுக்கொள்ளப்பட்டது" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "இணைப்புகள்" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "செயலாக்கங்கள்" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1199,77 +1171,78 @@ msgid "%d table(s)" msgstr "%s அட்டவணை" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "வினாக்கள்" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "அமைப்புகள்" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "வரைபடத்தை நீக்கு" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "தலைப்பு மற்றும் சிட்டையையும் தொகு" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "வரைபடத்தை கட்டத்தில் சேர்" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "எதுவுமில்லை" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1277,482 +1250,484 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "இயலச்செய் %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "முடக்கு %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "அமைப்புக்களை மாற்று" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "வேற்றுமை" -#: js/messages.php:167 +#: js/messages.php:154 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "வகுக்கப்பட்ட %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "மெதுவான பதிகைஇலிருந்து" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "பொதுவான பதிகைஇலிருந்து" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "பதிகைகள் ஏற்றப்படுகின்றது" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "விலக்கு" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No data" msgid "No data found" msgstr "தரவு இல்லை" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "ஆரய்தல்" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total:" msgid "Total time:" msgstr "மொத்த:" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Hide search results" msgid "Profiling results" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "அட்டவணை" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Chart Title" msgid "Chart" msgstr "வரைபடத் தலைப்பு" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "%s களத்தை சேர்க்க" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Series:" msgid "Series" msgstr "தொடர்கள்" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "அட்டவணை தெரிவுகள்" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "வடிகட்டி" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "மொத்த:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "பதிகைகள் ஏற்றப்படுகின்றது" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "பக்கத்தை திரும்ப ஏற்று" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "பாவனையான வரிசைகள்" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "பாகுபடுத்தல் வினவல்" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "முறைமை ஆலோசகர்" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "பிரச்சினை" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "பரிந்துரை" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "ஆளுகை விபரங்கள்" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Action" msgid "Justification" msgstr "செயல்" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "சோதனை" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "ஏற்றப்படுகிறது" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "வேண்டுகோள் செயற்படுத்தபடுகின்றது" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "நெடுக்கை அழிக்கபடுகின்றது" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "முதன்மை சாவி இணைக்கப்படுகின்றது" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "சரி" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "தரவுத்தளங்கங்களின் பெயர் மாற்றப்படுகின்றது" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "தரவுத்தளத்தை மீள்ஏற்று" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "தரவுத்தளம் நகல் எடுக்கபடுகின்றது" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "எழுத்துத்தொகுதி மாற்றப்படுகின்றது" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have added a new user." msgid "Table must have at least one column" msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "அட்டவணையை செருகு" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "சுட்டுகளை மறை" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "சுட்டுகளை காட்டு" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enable %s" msgid "(Enabled)" msgstr "இயலச்செய் %s" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disable %s" msgid "(Disabled)" msgstr "முடக்கு %s" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "தேடுதல்" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "தேடல் முடிவுகளை காட்டு" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "உலாவுதல்" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "அழித்தல்" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Values for column %s" msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "புதிய பயனாளரை சேர்க்க" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "வினவல் பெட்டியை மறை" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "மாற்று" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "வினவல் நிறைவேற்றுகை நேரம்" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1761,197 +1736,202 @@ msgstr "" msgid "Save" msgstr "சேமி" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "தேடுதல் கட்டளை விதியை மறை" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "தேடுதல் கட்டளை விதியை காண்பி" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "பொரித்தாக்கி தேடு" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Hide search results" msgid "Query results" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "நகல்" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "நெடுக்கைகளை சேர்" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "இணைப்புக்கு செல்" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "இயற்று" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "கடவுச்சொல்லை மாற்று" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "மேலும்" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "அனைத்தையும் காட்டு" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "சுட்டுகளை மறை" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1959,110 +1939,110 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "முடிந்த" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "பின்" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "அடுத்த" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "இன்று" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "ஜனவரி" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "பெப்ரவரி" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "மார்ச்" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "ஏப்ரல்" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "மே" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "ஜூன்" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "ஜூலை" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "ஆகஸ்ட்" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "செப்டம்பர்" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "அக்டோபர்" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "நவம்பர்" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2070,78 +2050,78 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "புதன்" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "வியாழன்" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "சனி" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2149,97 +2129,97 @@ msgid "Sun" msgstr "ஞாயி" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "ஞாயி" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "திங்" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "செவ்" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "புத" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "வியா" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "வெள்" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "கிழமை" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "எதுவுமில்லை" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "மணித்தியாலம்" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "நிமிடம்" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "வினாடிகள்" @@ -2289,16 +2269,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "ஒரு வினாடிக்கு" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "ஒரு நிமிடத்திற்கு" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "ஒரு மணி நேரத்திற்கு" @@ -2324,7 +2304,7 @@ msgstr "எழுத்துரு அளவு" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ஏறுவரிசை" @@ -2333,7 +2313,7 @@ msgstr "ஏறுவரிசை" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "இறங்குவரிசை" @@ -2449,7 +2429,7 @@ msgstr "%s அட்டவணையில் பொருத்தப்பா #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "அழி" @@ -2623,7 +2603,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2678,12 +2658,13 @@ msgstr "அனைத்தையும் தெரி" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" @@ -2691,7 +2672,7 @@ msgstr "ஏற்றுமதி" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2774,16 +2755,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2795,21 +2776,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2819,13 +2800,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "அடுக்கு" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "கருத்துரை" @@ -2868,7 +2849,7 @@ msgstr "நோக்கு" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "கட்டமைப்பு" @@ -2941,36 +2922,37 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "Usage" msgid "Users" msgstr "பாவனையளவு" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "படியெடுத்தல்" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3018,6 +3000,104 @@ msgstr "சமீபத்திய அட்டவணைகள்" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL வினவல்" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "அட்டவணைகள்" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3110,7 +3190,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3503,11 +3583,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL வினவல்" - #: libraries/Util.class.php:710 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:292 @@ -3542,7 +3617,7 @@ msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "புதுப்பி" @@ -3638,13 +3713,6 @@ msgstr "அச்சிடு" msgid "shared" msgstr "பகிரப்பட்டது" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "அட்டவணைகள்" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3685,59 +3753,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5791,8 +5859,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6405,10 +6473,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7059,16 +7123,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7164,17 +7228,17 @@ msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "தரவுகளை மட்டும்" @@ -7568,8 +7632,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -8088,7 +8151,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8612,7 +8675,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9279,7 +9342,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" @@ -9620,7 +9683,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9688,31 +9751,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9828,15 +9891,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9922,7 +9981,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "பதிப்பு" @@ -9981,10 +10040,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10110,858 +10165,167 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" +msgstr "நிறுத்தப்பட்டுள்ளது" + +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "வடிகட்டிகள்" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "நிறுத்தப்பட்டுள்ளது" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s களத்தை சேர்க்க" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10970,7 +10334,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10978,18 +10342,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10997,11 +10361,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11009,94 +10373,701 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "வடிகட்டிகள்" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "மாறி அமைப்பு தோல்வியடைந்தது" @@ -11655,144 +11626,144 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "வினவல் வழு" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "தரவு இல்லை" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "திகதி" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "பதிப்புகளை காட்டு" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "பதிப்பை உருவாக்கு" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "பதிப்பை உருவாக்கு" @@ -11935,13 +11906,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "வினவல் பெட்டியை காண்பி" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11955,124 +11926,134 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Series:" msgid "Release Series" msgstr "தொடர்கள்" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "நடப்பு பதிப்பு: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "சிறுய பதிப்பு" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "பரம்பல்" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache used" msgid "Query cache disabled" msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டது" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Query cache used" msgid "The query cache is not enabled." msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டது" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12080,23 +12061,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache used" msgid "Query caching method" msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டது" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache used" msgid "Suboptimal caching method." msgstr "வினவல் இடைமாற்று பயன்படுத்தப்பட்டது" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12473,280 +12454,280 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +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:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Display table filter" msgid "Rate of table open" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Current connection" msgid "Percentage of used open files limit" msgstr "நடப்பாணை இணைப்பு" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Display table filter" msgid "Rate of open files" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Display table filter" msgid "The rate of opening files is high." msgstr "கருதிட்குள் சேர்க்க" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Current connection" msgid "Percentage of used connections" msgstr "நடப்பாணை இணைப்பு" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Current connection" msgid "Percentage of aborted connections" msgstr "நடப்பாணை இணைப்பு" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12873,20 +12854,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12901,7 +12882,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12910,22 +12891,22 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/te.po b/po/te.po index fc2255030f..bd6660018f 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-06 12:16+0200\n" "Last-Translator: వీవెన్ \n" "Language-Team: Telugu Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "మెబై" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "కిబై" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "మొత్తం" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "మొత్తం" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "అనుసంధానాలు" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "బై" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "కిబై" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "మెబై" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "గిబై" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "టెబై" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "పిబై" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ఎబై" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1222,82 +1192,83 @@ msgid "%d table(s)" msgstr "%s పట్టిక" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "అమరికలు" # మొదటి అనువాదము -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "డేటాబేస్ తొలగించండి" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "ఏమీలేదు" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1305,173 +1276,173 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Tables" msgid "Enable %s" msgstr "పట్టికలు" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable Statistics" msgid "Disable %s" msgstr "గణాంకాలని అచేతనంచేయి" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "Basic settings" msgid "Change settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "More settings" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Default title" msgid "Chart Title" msgstr "అప్రమేయ శీర్షిక" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "తేడా" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" # మొదటి అనువాదము -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Analyze" msgid "Analysing logs" msgstr "విశదీకరించు" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" # మొదటి అనువాదము -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Write requests" msgid "Cancel request" msgstr "విన్నపములను వ్రాయుము" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "data" msgid "No data found" msgstr "భోగట్టా" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" # మొదటి అనువాదము -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "విశదీకరించు" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "సమయం" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "మొత్తం" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Show statistics" msgid "Profiling results" msgstr "గణాంకాలను చూపించు" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" @@ -1479,62 +1450,62 @@ msgid "Table" msgstr "పట్టిక" # మొదటి అనువాదము -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "అక్షరమాల" # మొదటి అనువాదము -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add into comments" msgid "Edit chart" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "పట్టిక ఎంపికలు" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "మొత్తం" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1542,291 +1513,293 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: js/messages.php:206 +#: js/messages.php:193 #, fuzzy #| msgid "Database" msgid "Reload page" msgstr "డేటాబేస్" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "దిగుమతి" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Server configuration" msgid "Import monitor configuration" msgstr "సేవకి స్వరూపణం" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "క్వెరీ ని మార్చు" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "పత్రావళి" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "వివరాలు..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "అధీకరణ" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "సరే" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" # మొదటి అనువాదము -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Database" msgid "Renaming Databases" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Database" msgid "Reload Database" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Database" msgid "Copying Database" msgstr "డేటాబేస్" # మొదటి అనువాదము -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "అక్షరమాల" # మొదటి అనువాదము -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "You have added a new user." msgid "Table must have at least one column" msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "పట్టికల్ని వాడు" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Tables" msgid "(Enabled)" msgstr "పట్టికలు" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disable Statistics" msgid "(Disabled)" msgstr "గణాంకాలని అచేతనంచేయి" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "శోధించు" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "తొలగించు" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s నిలువు వరుసకు విలువలు" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" # మొదటి అనువాదము -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "క్రొత్త వినియోగదారుని చేర్చు" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "మార్చుము" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1835,210 +1808,215 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "శోధించు" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Show statistics" msgid "Query results" msgstr "గణాంకాలను చూపించు" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" # మొదటి అనువాదము -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add into comments" msgid "Add columns" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Comments" msgid "Copy column name" msgstr "వ్యాఖ్యలు" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Start" msgid "Show data row(s)" msgstr "మొదలుపెట్టు" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "సంకేతపదాన్ని మార్చు" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "అన్నీ చూపించు" # మొదటి అనువాదము -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide/Show all" msgid "Hide Panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2046,21 +2024,21 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" # మొదటి అనువాదము -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2068,7 +2046,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2076,149 +2054,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "జనవరి" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "మార్చి" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "మే" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "జూన్" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "జూలై" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "నవంబర్" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2226,98 +2204,98 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "వారం" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ఏమీలేదు" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "క్షణం" @@ -2367,16 +2345,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "క్షణానికి" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "నిమిషానికి" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "గంటకి" @@ -2402,7 +2380,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ఆరోహణ" @@ -2411,7 +2389,7 @@ msgstr "ఆరోహణ" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "అవరోహణ" @@ -2527,7 +2505,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "తొలగించు" @@ -2719,7 +2697,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2774,12 +2752,13 @@ msgstr "" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" @@ -2787,7 +2766,7 @@ msgstr "ఎగుమతి" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2873,16 +2852,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2894,21 +2873,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2918,13 +2897,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "వ్యాఖ్య" @@ -2968,7 +2947,7 @@ msgstr "చూపుము" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "నిర్మాణాకృతి" @@ -3041,36 +3020,37 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "వాడుకరి" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3124,6 +3104,106 @@ msgstr "పట్టికను సృష్టించు" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "పట్టికలు" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "దస్త్రాలు" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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 +#, fuzzy +#| msgid "Show statistics" +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." @@ -3217,7 +3297,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "విలువ" @@ -3613,11 +3693,6 @@ msgstr "" msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3652,7 +3727,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3749,13 +3824,6 @@ msgstr "ముద్రించు" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "పట్టికలు" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3796,61 +3864,61 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Server configuration" msgid "Failed to read configuration file" msgstr "సేవకి స్వరూపణం" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5923,8 +5991,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "వాడుకరిపేరు" @@ -6545,10 +6613,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7220,18 +7284,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Table name" msgid "filter databases by name" msgstr "పట్టిక పేరు" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Table name" msgid "filter items by name" @@ -7335,17 +7399,17 @@ msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "డేటా మాత్రమే" @@ -7738,8 +7802,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -8261,7 +8324,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8823,7 +8886,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9495,7 +9558,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" @@ -9855,7 +9918,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9930,34 +9993,34 @@ msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" # మొదటి అనువాదము -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "పుట" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "పుటని సృష్టించు" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "కొత్త పుట పేరు: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10078,15 +10141,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "దస్త్రాలు" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10170,7 +10229,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10229,10 +10288,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10358,875 +10413,176 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "సంబంధాలు" - # మొదటి అనువాదము -#: server_status.php:964 -#, fuzzy -#| msgid "Analyze" -msgid "Run analyzer" -msgstr "విశదీకరించు" +#: server_status.php:168 +msgid "Sent" +msgstr "పంపించు" -#: server_status.php:966 +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:253 +msgid "Aborted" +msgstr "" + +#: server_status.php:313 +msgid "ID" +msgstr "" + +# మొదటి అనువాదము +#: server_status.php:329 +msgid "Command" +msgstr "ఆజ్ఞ" + +#: server_status_advisor.php:29 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "పరిపాలన" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -# మొదటి అనువాదము -#: server_status.php:1208 -msgid "Sent" -msgstr "పంపించు" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -# మొదటి అనువాదము -#: server_status.php:1338 -msgid "Command" -msgstr "ఆజ్ఞ" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -# మొదటి అనువాదము -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "సృష్టించబడిన పుటల సంఖ్య" - -#: server_status.php:1582 -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 "" - -# మొదటి అనువాదము -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "చదివిన పుటల సంఖ్య" - -# మొదటి అనువాదము -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "వ్రాసిన పుటల సంఖ్య" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "మొదలుపెట్టు" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" # మొదటి అనువాదము -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "స్పందనలకు చేర్చు" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11235,7 +10591,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11243,18 +10599,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11262,11 +10618,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11275,85 +10631,85 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "డేటాబేస్ తొలగించండి" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "గణాంకాలను చూపించు" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11362,7 +10718,7 @@ msgstr[0] "క్షణం" msgstr[1] "క్షణం" # మొదటి అనువాదము -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11370,6 +10726,618 @@ msgid_plural "%d minutes" msgstr[0] "నిమిషం" msgstr[1] "నిమిషం" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "సంబంధాలు" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +# మొదటి అనువాదము +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "సృష్టించబడిన పుటల సంఖ్య" + +#: server_status_variables.php:541 +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 "" + +# మొదటి అనువాదము +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "చదివిన పుటల సంఖ్య" + +# మొదటి అనువాదము +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "వ్రాసిన పుటల సంఖ్య" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11939,145 +11907,145 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "data" msgid "No data" msgstr "భోగట్టా" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "తేదీ" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "More settings" msgid "Create version %1$s of %2$s" msgstr "మరిన్ని అమరికలు" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -12217,11 +12185,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -12235,125 +12203,135 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "More settings" msgid "Current version: %s" msgstr "మరిన్ని అమరికలు" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Last version" msgid "Minor Version" msgstr "చివరి కూర్పు" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "వివరణ" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Show statistics" msgid "Query cache disabled" msgstr "గణాంకాలను చూపించు" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12361,21 +12339,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Show statistics" msgid "Query caching method" msgstr "గణాంకాలను చూపించు" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s పట్టిక" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12764,288 +12742,288 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Table of contents" msgid "Percentage of MyISAM key buffer used" msgstr "విషయ సూచిక" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Connections" msgid "Percentage of index reads from memory" msgstr "అనుసంధానాలు" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" # మొదటి అనువాదము -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgctxt "short form" #| msgid "Create table" msgid "Rate of table open" msgstr "పట్టికను సృష్టించు" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Table of contents" msgid "The rate of opening tables is high." msgstr "విషయ సూచిక" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Connections" msgid "Percentage of used open files limit" msgstr "అనుసంధానాలు" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Table of contents" msgid "Rate of open files" msgstr "విషయ సూచిక" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Table of contents" msgid "The rate of opening files is high." msgstr "విషయ సూచిక" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "అనుసంధానాలు" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "అనుసంధానాలు" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13174,20 +13152,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13202,7 +13180,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13211,25 +13189,31 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +# మొదటి అనువాదము +#, fuzzy +#~| msgid "Analyze" +#~ msgid "Run analyzer" +#~ msgstr "విశదీకరించు" + #~ msgid "Show more actions" #~ msgstr "మరిన్ని చర్యలను చూపించు" diff --git a/po/th.po b/po/th.po index 0528432c69..6caa85aea1 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-12 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai \n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -45,7 +45,7 @@ msgstr "" msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -75,21 +75,21 @@ msgstr "ค้นหา" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "ลงมือ" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "คำอธิบาย" @@ -110,17 +110,17 @@ msgstr "ไม่สามารถเปิดไฟล์ %s ได้ เพ msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -134,12 +134,12 @@ msgstr "หมายเหตุของตาราง" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "สดมภ์" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -157,11 +157,11 @@ msgstr "สดมภ์" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "ชนิด" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -173,11 +173,11 @@ msgstr "ชนิด" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -188,11 +188,11 @@ msgstr "ว่างเปล่า (null)" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "ค่าปริยาย" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -201,7 +201,7 @@ msgstr "ค่าปริยาย" msgid "Links to" msgstr "เชื่อมไปยัง" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -214,7 +214,7 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -232,12 +232,12 @@ msgstr "หมายเหตุ" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "ไม่" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -260,8 +260,8 @@ msgstr "ไม่" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "ใช่" @@ -312,7 +312,7 @@ msgstr "การจัดเก็บการตั้งค่าของ ph #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "ตาราง" @@ -332,7 +332,7 @@ msgstr "ขนาด" msgid "in use" msgstr "ใช้อยู่" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -340,7 +340,7 @@ msgstr "ใช้อยู่" msgid "Creation" msgstr "สร้างเมื่อ" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -348,7 +348,7 @@ msgstr "สร้างเมื่อ" msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -399,7 +399,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "ฐานข้อมูล" @@ -407,17 +407,17 @@ msgstr "ฐานข้อมูล" msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "ถูกสร้าง" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "สถานะ" @@ -432,7 +432,7 @@ msgstr "กระทำการ" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "แสดง" @@ -448,11 +448,11 @@ msgstr "ลบการติดตามตารางนี้" msgid "Drop" msgstr "โยนทิ้ง" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "ใช้งานได้" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "ใช้งานไม่ได้" @@ -460,11 +460,11 @@ msgstr "ใช้งานไม่ได้" msgid "Versions" msgstr "รุ่น" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" @@ -530,45 +530,45 @@ msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "เรขาคณิต" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "จุด %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "เพิ่มจุด" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "แถวข้อความ" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "ด้านนอก" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "ด้านใน" @@ -576,15 +576,15 @@ msgstr "ด้านใน" msgid "Add a linestring" msgstr "เพิ่มข้อความ" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "เพิ่มด้านใน" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "เพิ่มรูปหลายเหลี่ยม" @@ -713,8 +713,9 @@ msgstr "ตั้งค่าเพิ่มเติม" msgid "Database server" msgstr "เซิร์ฟเวอร์ฐานข้อมูล" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -735,7 +736,7 @@ msgstr "รุ่นของโพรโทคอล" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "ผู้ใช้" @@ -968,12 +969,12 @@ msgstr "รีเฟรชสิทธิใหม่" msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "ปิด" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -983,15 +984,15 @@ msgstr "ปิด" msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "สถานะการใช้ปัจจุบัน" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "โปรเซสที่ทำงานอยู่" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "คำสั่ง SQL ปัจจุบัน" @@ -1002,13 +1003,14 @@ msgstr "ข้อมูลคงที่" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "อื่นๆ" @@ -1023,48 +1025,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB ได้ถูกส่งจากครั้งล่าสุด" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB ได้รับจากครั้งล่าสุด" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "การจราจรของเครื่องแม่ข่าย (KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "การเชื่อมต่อ จากครั้งล่าสุด" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "โพรเซส" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "การเชื่อมต่อ" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "คำถามจากครั้งล่าสุด" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "คำสั่ง (คำสั่งที่รันโดยเครื่องแม่ข่าย)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "สถิติของคำสั่ง" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "การตั้งค่าติดตามภายในเครื่องไม่เข้ากัน" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1074,196 +1042,201 @@ msgstr "" "การตั้งค่าการแสดงผลของเบราเซอร์ของคุณไม่รองรับกับหน้าจอติดตามรุ่นใหม่ " "กรุณารีเซ็ตให้กลับเป็นค่าเริ่มต้นผ่านทาง เมนู Settings" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "ประสิทธิภาพคำสั่ง" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "คำสั่งที่ถูกรันบนหน่วยความจำ" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "คำสั่งที่ถูกรันไปในหน่วยความจำแล้ว" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "การใช้งาน CPU ของระบบ" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "หน่วยความจำของระบบ" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "หน่วยความจำ swap ของระบบ" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "เมกกะไบต์" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "กิโลไบต์" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "เฉลี่ยการทำงาน" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "จำนวนหน่วยความจำรวม" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "จำนวนหน่วยความจำที่ถูกใช้" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "จำนวนหน่วยความจำที่จอง" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "หน่วยความจำว่าง" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "หน่วยความจำที่ใช้ไป" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "จำนวน Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "จำนวน Swap ที่ถูกใช้" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "จำนวน Swap ที่ใช้ไป" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "จำนวน Swap ที่ว่าง" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Byte ที่ส่ง" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Byte ที่รับ" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "การเชื่อมต่อ" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "โพรเซส" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "ไบต์" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "กิโลไบต์" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "เมกกะไบต์" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "เอกซะไบต์" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d ตาราง" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "คำถาม" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "การจราจร" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "การตั้งค่า" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "เอาการแสดงผลออก" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "แก้ไขหัวข้อและคำกำกับ" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "เพิ่มแสดงผลไปในตารางข้อมูล" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "ไม่มี" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "เรียกคืนการแสดงผล" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "หยุดการแสดงผล" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log และ slow_query_log ถูกเปิดไว้" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log ถูกเปิดไว้" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log ถูกเปิดไว้" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "general_log และ slow_query_log ถูกปิดไว้" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output ไม่ได้ถูกตั้งกับตาราง" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output ถูกตั้งกับตาราง" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1273,94 +1246,94 @@ msgstr "" "slow_query_log ถูกเปิดไว้ แต่ประวัติคำสั่งของเครื่องแม่ข่ายใช้เวลานานกว่า %d วินาที " "ขอแนะนำให้ตั้งค่า long_query_time ไว้ที่ 0-2 วินาที โดยขึ้นอยู่กับระบบของท่าน" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "การตั้งค่านี้ถูกนำไปใช้ทั้งหมด และจะคืนค่ากลับเมื่อเริ่มเครื่องใหม่อีกครั้ง" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "ตั้ง log_output เป็น %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "เปิดใช้ %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "ปิดการใช้ %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "ตั้ง long_query_time เป็น %ds" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "คุณไม่สามารถเปลี่ยนแปลงค่านี้ได้ กรุณาเข้าใช้งานเป็น root หรือติดต่อผู้ดูแลระบบ" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "ชื่อการแสดงผล" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "ค่าที่ต่าง" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "ถูกหารด้วย %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "หน่วย" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "จาก slow log" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "จากประวัติทั่วไป" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "กำลังวิเคราะห์ประวัติ" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "กำลังวิเคราะห์และตรวจประวัติ อาจจะใช้เวลาพอสมควร" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "ยกเลิกคำร้อง" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1369,7 +1342,7 @@ msgstr "" "สดมส์นี้แสดงจำนวนคำสั่งที่ถูกจัดกลุ่มเดียวกัน อย่างไรก็ดีการจัดกลุ่มจัดเพียงคำสั่ง แต่เวลาเริ่ม " "หรือข้อมูลบางอย่าง อาจแตกต่างกัน" -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1378,98 +1351,98 @@ msgstr "" "จากที่กลุ่มคำสั่ง เพิ่มข้อมูล ถูกเลือกหลายอันพร้อมๆกัน คำลังที่เพิ่มข้อมูลไปในตารางเดียวกัน " "จะถูกจับกลุ่มรวมกันโดยไม่สนเรื่องข้อมูลที่จะถูกเพิ่มเข้าไป" -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "ประวัติของข้อมูลถูกเรียกขึ้นมา คำสั่งได้ประมวลภายใน:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "ข้ามไปยังตารางเก็บประวัติ" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "ไม่มีข้อมูล" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "ประวัติถูกวิเคราะห์แล้ว แต่ไม่มีข้อมูลในช่วงนั้น" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "กำลังวิเคราะห์…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "อธิบายผลคำสั่ง" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "เวลา" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "เวลารวม:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "ผลลัพธ์" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "ตาราง" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "ชุดแสดงผล" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "แก้ไขแผนภูมิ" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "ชุด" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "ตัวเลือกรองประวัติตาราง" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "ตัวกรอง" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "ตัวกรอง โดย คำหรืออักขระ" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "กลุ่มคำสั่ง ไม่สนใจตัวแปรใน WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "ผลรวมระเบียนต่อหน้า:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "รวม:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "กำลังเรียกดูประวัติ" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "ไม่สามารถรีเฟรซหน้าจอได้" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1478,251 +1451,253 @@ msgstr "" "ในระหว่างที่กำลังแสดงผลข้อมูลนั้นเครื่องแม่ข่ายตอบสนองผิดพลาด " "น่าจะเกิดจากที่หมดเวลาเซสชั่นของท่าน กรุณายืนยันตัวตนใหม่อีกครั้ง" -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "รีเฟรซหน้า" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "ระเบียนที่มีผล:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "การ parsing ไฟล์ตั้งค่าล้มเหลว สาเหตุมาจาก JSON" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "การสร้างตารางแสดงผลล้มเหลว เป็นเพราะการตั้งค่า โปรดล้างค่ากลับไปเป็นการตั้งค่าแบบเริ่มแรก…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "ตั้งค่าการตรวจสอบการนำเข้า" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "กรุณาเลือกไฟล์ที่คุณต้องการนำเข้า" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "วิเคราะห์คำสั่ง" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "แนะนำระบบ" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "ปัญหาเรื่องสมรรถนะ" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "ปัญหา" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "เอกสารอ้างอิง" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "กฎเกณฑ์ต่างๆ" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "เอกสารอ้างอิง" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "ตัวแปรหรือสูตรที่ถูกใช้" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "ทดสอบ" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "ยกเลิก" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "กำลังเรียกดูข้อมูล" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "กำลังประมวลผล" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "การประมวลผลผิดพลาด" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "ยังไม่ได้เลือกฐานข้อมูล." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "ทิ้งสดมส์" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "ตกลง" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "กดเพื่อยกเลิกการเตือนนี้" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "กำลังเปลี่ยนชื่อฐานข้อมูล" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "รีเฟรซฐานข้อมูล" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "กำลังคัดลอกฐานข้อมูล" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "กำลังเปลี่ยนชุดตัวอักษร" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "ตารางต้องอย่างน้อยหนึ่งคอลัมน์" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "เพิ่มตาราง" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "ซ่อนดัชนี" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "แสดงดัชนี" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(เปิดใช้งาน)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(ปิดใช้งาน)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "กำลังค้นหา" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "แสดงผลคำค้น SQL" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "กำลังเปิด" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "กำลังลบ %s" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ฟังก์ชั่นภายในจะต้องมีค่า RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ตัวแก้ไข ENUM/SET" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "ค่าสำหรับคอลัมน์ใหม่" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "ป้อนค่าในช่องต่างๆ" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "เพิ่มค่า %d" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "เตือน: ถ้าไฟล์มีหลายตาราง จะถูกรวมเป็นหนึ่ง" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "ซ่อนช่องใส่คำค้น SQL" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "แสดงช่องคำค้น SQL" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "เปลี่ยน" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "เวลาที่ทำคำสั่ง" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1731,138 +1706,143 @@ msgstr "%d ไม่ใช่หมายเลขแถวที่ถูก msgid "Save" msgstr "บันทึก" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "ซ่อนหลักในการค้นหา" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "ค้นหาแบบ Zoom" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "แต่ละจุดแสดงข้อมูลระเบียน" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "นำตัวชี้วางเพื่อแสดงคำกำกับ" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "เมื่อต้องการย่อ/ขยาย ให้เลือกส่วนของจุดโดยใช้เมาส์" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "คลิก ล้างค่า เพื่อกลับไปขนาดเริ่มต้น" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "คลิก จุดข้อมูล เพื่อดูหรือแก้ไขแถวข้อมูล" -#: js/messages.php:312 +#: js/messages.php:299 #, fuzzy msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "จุดสามารถปรับขนาดได้ โดยการลากไปมุมขวาด้านล่าง" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "เพิ่มสองสดมภ์" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "เลือกสองสดมภ์ใดๆ" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "ผลลัพธ์ SQL" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "คัดลอก" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "เลือกคีย์อ้างอิง" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "เลือกคีย์นอก" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "กรุณาเลือกคีย์หลักหรือคียเดี่ยว" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "เพิ่มตัวเลือกสำหรับสดมภ์ " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "กด escape เพื่อยกเลิกการแก้ไข" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "ลากเพื่อเปลี่ยนลำดับ" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "กดเพื่อเรียงลำดับ" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "กดเพื่อเลือก
เพื่อดูสดมภ์" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1871,66 +1851,66 @@ msgid "" "content." msgstr "คุณสามารถแก้ไขสดมภ์
โดยเลือกไปที่ข้อมูลนั้นๆ" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "คุณสามารถแก้ไขสดมภ์
โดยเลือกไปที่ข้อมูลนั้นๆ" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "ไปที่หน้า" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "ชื่อคอลัมน์" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "อัพเดทแถว" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "สร้างรหัสอัตโนมัติ" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "สร้างอัตโนมัติ" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "เพิ่มเติม" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "แสดงทั้งหมด" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "ซ่อนดัชนี" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1938,173 +1918,173 @@ msgid "" msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", รุ่นเสถียรล่าสุด:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "ปัจจุบัน" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "จบ" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "วันนี้" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "มกราคม" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "กุมภาพันธ์" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "มีนาคม" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "เมษายน" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "พฤษภาคม" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "มิถุนายน" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "กรกฎาคม" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "สิงหาคม" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "กันยายน" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "ตุลาคม" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "พฤศจิกายน" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "อาทิตย์" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "วันจันทร์" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "วันอังคาร" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "วันพุธ" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "วันศุกร์" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "วันเสาร์" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2112,95 +2092,95 @@ msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "สัปดาห์" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "ปฎิทินแบบ เดือน/ปี" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "ไม่มี" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "ชั่วโมง" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "นาที" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "วินาที" @@ -2252,16 +2232,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "ต่อวินาที" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "ต่อนาที" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -2287,7 +2267,7 @@ msgstr "ขนาดตัวอักษร" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "น้อยไปมาก" @@ -2296,7 +2276,7 @@ msgstr "น้อยไปมาก" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "มากไปน้อย" @@ -2410,7 +2390,7 @@ msgstr "ลบตรงกับที่ตาราง %s หรือไม #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "ลบ" @@ -2605,7 +2585,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -2660,12 +2640,13 @@ msgstr "เลือกทั้งหมด" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" @@ -2673,7 +2654,7 @@ msgstr "ส่งออก" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2757,16 +2738,16 @@ msgstr "ไม่สามารถอ่านไฟล์อัพโหลด msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2780,21 +2761,21 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "เอกเทศ" @@ -2804,13 +2785,13 @@ msgstr "เอกเทศ" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "การเรียงลำดับ" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "หมายเหตุ" @@ -2853,7 +2834,7 @@ msgstr "ตารางจำลอง (View)" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "โครงสร้าง" @@ -2926,37 +2907,38 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "ผู้ใช้" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "ชุดตัวอักษร" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3001,6 +2983,108 @@ msgstr "ตารางล่าสุด" msgid "There are no recent tables" msgstr "ไม่มีตารางล่าสุด" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "คำค้น SQL" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +#, fuzzy +msgid "Query cache" +msgstr "ชนิดคำค้น" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +#, fuzzy +msgid "Delayed inserts" +msgstr "แทรกหลายระเบียนในคราวเดียว" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "ตาราง" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "จำนวนฟิลด์" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +#, fuzzy +msgid "Show open tables" +msgstr "แสดงตาราง" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "สถานะของ InnoDB" + +#: 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." @@ -3098,7 +3182,7 @@ msgstr "กระบวนการ" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "ค่า" @@ -3507,11 +3591,6 @@ msgstr "" msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "คำค้น SQL" - #: libraries/Util.class.php:710 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:292 @@ -3546,7 +3625,7 @@ msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "เรียกใหม่" @@ -3645,13 +3724,6 @@ msgstr "พิมพ์" msgid "shared" msgstr "ใช้ร่วมกัน" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "ตาราง" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3692,22 +3764,22 @@ msgstr "ตรวจสอบสิทธิสำหรับฐานข้อ msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3718,38 +3790,38 @@ msgid "" msgstr "" "ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "ใช้ประโยชน์ได้" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" @@ -5909,8 +5981,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" @@ -6569,10 +6641,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "สถานะของ InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7233,18 +7301,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "เรียงค่าในตารางตาม" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7346,17 +7414,17 @@ msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "เฉพาะข้อมูล" @@ -7781,8 +7849,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "โฮสต์" @@ -8318,7 +8385,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "ตัวแปร" @@ -8874,7 +8941,7 @@ msgstr "แอตทริบิวต์" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "เพิ่มเติม" @@ -9577,7 +9644,7 @@ msgstr "เพิ่มคำนำไปยังตาราง" msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -9948,7 +10015,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "จีน (ไต้หวัน)" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10030,41 +10097,41 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "ใช้งาน" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "นำเข้าไฟล์" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "สร้างดัชนีใหม่" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ชื่อผู้ใช้" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10186,16 +10253,11 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "จำนวนฟิลด์" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -10280,7 +10342,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "รุ่นของ PHP" @@ -10341,10 +10403,6 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10476,881 +10534,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -#, fuzzy -msgid "Query cache" -msgstr "ชนิดคำค้น" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -#, fuzzy -msgid "Delayed inserts" -msgstr "แทรกหลายระเบียนในคราวเดียว" - -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" +#: server_status.php:139 +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:680 -msgid "Flush (close) all tables" +#: server_status.php:149 +msgid "Received" +msgstr "ได้รับ" + +#: server_status.php:168 +msgid "Sent" +msgstr "ถูกส่ง" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:682 -#, fuzzy -msgid "Show open tables" -msgstr "แสดงตาราง" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "ความพยายามล้มเหลว" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "ยกเลิก" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "คำสั่ง" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "ข้อมูลรันไทม์" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of data points: " -msgstr "ระเบียนต่อหน้า" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "เรียกใหม่" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" - -#: server_status.php:910 -#, fuzzy -msgid "Show only alert values" -msgstr "แสดงตาราง" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -msgid "Show unformatted values" -msgstr "แสดงตาราง" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "รีเลชัน" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "ชนิดคำค้น" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "ฟังก์ชั่น" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "คำสั่ง" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "ได้รับ" - -#: server_status.php:1208 -msgid "Sent" -msgstr "ถูกส่ง" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "ความพยายามล้มเหลว" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "ยกเลิก" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "คำสั่ง" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "หยุดการติดตามแล้ว" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ส." -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "เพิ่มฟิลด์ใหม่" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11359,7 +10708,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11367,18 +10716,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11386,11 +10735,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11398,90 +10747,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "เอาฐานข้อมูลออก" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "เลือกตาราง" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "คำค้น SQL" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "สถิติของแถว" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "เลือกทั้งหมด" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11489,7 +10838,7 @@ msgid_plural "%d seconds" msgstr[0] "ต่อวินาที" msgstr[1] "ต่อวินาที" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11497,6 +10846,622 @@ msgid_plural "%d minutes" msgstr[0] "ใช้อยู่" msgstr[1] "ใช้อยู่" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "คำสั่ง" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" + +#: server_status_variables.php:89 +#, fuzzy +msgid "Show only alert values" +msgstr "แสดงตาราง" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +msgid "Show unformatted values" +msgstr "แสดงตาราง" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "รีเลชัน" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "หยุดการติดตามแล้ว" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12069,149 +12034,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "ชนิดคำค้น" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "ไม่มีข้อมูล" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "วันที่" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "รุ่นของเซิร์ฟเวอร์" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "รุ่นของเซิร์ฟเวอร์" @@ -12356,13 +12321,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "แสดงช่องคำค้น SQL" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12380,122 +12345,134 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "เลือกตาราง" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "รุ่น MySQL ต่ำกว่า 5.1" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "รุ่นที่ใช้: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "รุ่นย่อย" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "การกระจาย" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "เอกสาร Percona ที่ http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 #, fuzzy #| msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "เอกสาร Percona ที่ http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "สถาปัตยกรรม ของ MySQL" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "หน่วยความจำของชุดคำสั่ง ถูกปิดอยู่" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "หน่วยความจำของชุดคำสั่ง ไม่ได้ถูกเปิดไว้" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12503,21 +12480,21 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "รูปแบบ หน่วยความจำของชุดคำสั่ง" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query caching method" msgid "Suboptimal caching method." msgstr "รูปแบบ หน่วยความจำของชุดคำสั่ง" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s ตาราง" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12905,250 +12882,250 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy msgid "MyISAM key buffer size" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy msgid "Percentage of MyISAM key buffer used" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Table of contents" msgid "Rate of table open" msgstr "สารบัญ" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Connections" msgid "Percentage of used open files limit" msgstr "การเชื่อมต่อ" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "% open files" msgid "Rate of open files" msgstr "แสดงตาราง" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "% open files" msgid "The rate of opening files is high." msgstr "แสดงตาราง" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy msgid "Thread cache" msgstr "ชนิดคำค้น" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "หยุดการติดตามแล้ว" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "หยุดการติดตามแล้ว" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "หยุดการติดตามแล้ว" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "Tracked tables" msgid "Threads that are slow to launch" msgstr "ตารางที่ถูกติดตาม" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "Tracked tables" msgid "There are too many threads that are slow to launch." msgstr "ตารางที่ถูกติดตาม" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "Tracked tables" msgid "" @@ -13156,50 +13133,50 @@ msgid "" "launch" msgstr "ตารางที่ถูกติดตาม" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time ถูกตั้งไว้ที่ %d วินาที" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "การเชื่อมต่อ" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "การเชื่อมต่อ" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Too many clients are aborted." msgid "Too many connections are aborted." msgstr "การเข้าถึงด้วยไคลเอนต์มากเกินไปจะถูกยกเลิก" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. รายการบล็อก นี้ได้" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13318,15 +13295,15 @@ msgstr "" "ขนาดบันทึกของ InnoDB เป็น %s%% ในความสัมพันธ์กับขนาดของบัฟเฟอร์ของ InnoDB " "ซึ่งไม่ควรจะต่ำกว่า 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "ขนาดข้อมูลบันทึกสูงสุดของ InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, fuzzy, php-format #| msgid "" #| "Especially on a system with a lot of writes to InnoDB tables you should " @@ -13360,23 +13337,23 @@ msgstr "" "blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html" "\">รายการบล็อก นี้ได้" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "ขนาดบัฟเฟอร์ของ InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "ขนาดบัฟเฟอร์ InnoDB ของคุณมีขนาดเล็ก" # buffer pool แปลเป็น บัฟเฟอร์ # non-InnoDB-Tables ใช้คำทับศัพท์ # -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13400,7 +13377,7 @@ msgstr "" "mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/" "\">บทความนี้" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13412,16 +13389,16 @@ msgstr "" "% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " "มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM พร้อมแทรก" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy msgid "Enable concurrent_insert by setting it to 1" msgstr "เปิดใช้งานการ concurrent_insert โดยการตั้งค่าเป็น 1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 #, fuzzy msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " @@ -13432,10 +13409,46 @@ msgstr "" "เพื่อลดการใช้งานระหว่างผู้อ่านและผู้เขียนสำหรับตารางที่กำหนด ดูเพิ่มเติมเอกสาร MySQL" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ตั้งค่าไว้ที่ 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB ได้ถูกส่งจากครั้งล่าสุด" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB ได้รับจากครั้งล่าสุด" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "การจราจรของเครื่องแม่ข่าย (KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "การเชื่อมต่อ จากครั้งล่าสุด" + +#~ msgid "Questions since last refresh" +#~ msgstr "คำถามจากครั้งล่าสุด" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "คำสั่ง (คำสั่งที่รันโดยเครื่องแม่ข่าย)" + +#~ msgid "Runtime Information" +#~ msgstr "ข้อมูลรันไทม์" + +#, fuzzy +#~| msgid "Number of rows per page" +#~ msgid "Number of data points: " +#~ msgstr "ระเบียนต่อหน้า" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "เรียกใหม่" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "ชนิดคำค้น" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/tk.po b/po/tk.po index 52d18a40a8..ddf083b48d 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -50,7 +50,7 @@ msgstr "" msgid "Search" msgstr "Gözle" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -80,21 +80,21 @@ msgstr "Gözle" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Git" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Açarsözi" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Düşündiriş" @@ -117,17 +117,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -141,12 +141,12 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -164,11 +164,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -180,11 +180,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -195,11 +195,11 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -208,7 +208,7 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -221,7 +221,7 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -239,12 +239,12 @@ msgstr "" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -267,8 +267,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "in use" msgstr "" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "" msgid "Creation" msgstr "" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "" msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -409,7 +409,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "" @@ -417,17 +417,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "" @@ -442,7 +442,7 @@ msgstr "" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "" @@ -458,11 +458,11 @@ msgstr "" msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -470,11 +470,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "" @@ -540,45 +540,45 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -586,15 +586,15 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "" @@ -715,8 +715,9 @@ msgstr "" msgid "Database server" msgstr "" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "" @@ -735,7 +736,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -951,12 +952,12 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -966,15 +967,15 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "" @@ -985,13 +986,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1006,48 +1008,14 @@ msgid "." msgstr "" #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1055,196 +1023,201 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1252,449 +1225,451 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 msgid "Reload page" msgstr "" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1703,191 +1678,196 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Hemmesini görkez" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1895,266 +1875,266 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr "" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "" @@ -2204,16 +2184,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2239,7 +2219,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "" @@ -2248,7 +2228,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "" @@ -2362,7 +2342,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "" @@ -2532,7 +2512,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2587,12 +2567,13 @@ msgstr "" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "" @@ -2600,7 +2581,7 @@ msgstr "" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2681,16 +2662,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -2702,21 +2683,21 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "" @@ -2726,13 +2707,13 @@ msgstr "" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "" @@ -2775,7 +2756,7 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "" @@ -2848,34 +2829,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -2923,6 +2905,104 @@ msgstr "" msgid "There are no recent tables" msgstr "" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3015,7 +3095,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3398,11 +3478,6 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "" - #: libraries/Util.class.php:710 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:292 @@ -3437,7 +3512,7 @@ msgid "Create PHP Code" msgstr "" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "" @@ -3533,13 +3608,6 @@ msgstr "" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3580,59 +3648,59 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5666,8 +5734,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6276,10 +6344,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -6925,16 +6989,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "" @@ -7030,17 +7094,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "" @@ -7427,8 +7491,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -7937,7 +8000,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8441,7 +8504,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9104,7 +9167,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9435,7 +9498,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9501,31 +9564,31 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -9641,15 +9704,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -9731,7 +9790,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -9788,10 +9847,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -9917,854 +9972,163 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" +#: server_status.php:329 +msgid "Command" msgstr "" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "" - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -msgid "Related links:" -msgstr "" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -10773,7 +10137,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10781,18 +10145,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -10800,11 +10164,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -10812,92 +10176,699 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -11432,142 +11403,142 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -11701,11 +11672,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "" @@ -11719,120 +11690,130 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 -msgid "Release Series" +#: 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:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: 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:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Düşündiriş" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -11840,19 +11821,19 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12205,268 +12186,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 -msgid "Percentage of MyISAM key buffer used" -msgstr "" - -#: libraries/advisory_rules.txt:309 -#, php-format -msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "" - #: libraries/advisory_rules.txt:311 -msgid "Percentage of index reads from memory" -msgstr "" - -#: libraries/advisory_rules.txt:314 -#, php-format -msgid "The %% of indexes that use the MyISAM key buffer is low." -msgstr "" - -#: libraries/advisory_rules.txt:315 -msgid "You may need to increase {key_buffer_size}." +msgid "Percentage of MyISAM key buffer used" msgstr "" #: libraries/advisory_rules.txt:316 #, php-format -msgid "Index reads from memory: %s%%, this value should be above 95%%" +msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 -msgid "Rate of table open" +#: 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:324 +#: 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:325 +#: 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:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "" -#: libraries/advisory_rules.txt:339 -#, php-format -msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:341 -#, php-format -msgid "Immediate table locks %%" -msgstr "" - -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 -msgid "Too many table locks were not granted immediately." -msgstr "" - -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 -msgid "Optimize queries and/or use InnoDB to reduce lock wait." -msgstr "" - #: libraries/advisory_rules.txt:346 #, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" +msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" #: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" +#, 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 "Table lock wait rate: %s, this value should be less than 1 per hour" +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:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -12587,20 +12568,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -12615,7 +12596,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -12624,22 +12605,22 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" diff --git a/po/tr.po b/po/tr.po index 1d29091778..51132d84d6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" -"PO-Revision-Date: 2012-12-09 15:35+0200\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" +"PO-Revision-Date: 2012-12-15 16:30+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish " "\n" @@ -15,7 +15,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Ara" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Ara" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Git" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Anahtar adı" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Açıklama" @@ -114,17 +114,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Veritabanı yorumu: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -138,12 +138,12 @@ msgstr "Tablo yorumları" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Sütun" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Sütun" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Türü" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Türü" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Boş" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Boş" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Varsayılan" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Varsayılan" msgid "Links to" msgstr "Bağlantı verilen:" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Bağlantı verilen:" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Yorumlar" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Hayır" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Hayır" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Evet" @@ -318,7 +318,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tablo" @@ -338,7 +338,7 @@ msgstr "Boyut" msgid "in use" msgstr "kullanımda" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -346,7 +346,7 @@ msgstr "kullanımda" msgid "Creation" msgstr "Oluşturma" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -354,7 +354,7 @@ msgstr "Oluşturma" msgid "Last update" msgstr "Son güncellenme" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -405,7 +405,7 @@ msgstr "İzlenen tablolar" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Veritabanı" @@ -413,17 +413,17 @@ msgstr "Veritabanı" msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Durum" @@ -438,7 +438,7 @@ msgstr "Eylem" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Göster" @@ -454,11 +454,11 @@ msgstr "Bu tablo için izleme verisini sil" msgid "Drop" msgstr "Kaldır" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "aktif değil" @@ -466,11 +466,11 @@ msgstr "aktif değil" msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" @@ -538,45 +538,45 @@ msgstr "Taban Katman olarak OpenStreetMaps kullan" msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 msgid "Point" msgstr "Nokta" #: gis_data_editor.php:207 gis_data_editor.php:234 gis_data_editor.php:289 -#: gis_data_editor.php:362 js/messages.php:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Nokta %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Nokta ekle" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Satır dizgisi" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Dış Halka" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "İç Halka" @@ -584,15 +584,15 @@ msgstr "İç Halka" msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "İç halka ekle" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Poligon ekle" @@ -729,8 +729,9 @@ msgstr "Daha fazla ayarlar" msgid "Database server" msgstr "Veritabanı sunucusu" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Sunucu" @@ -749,7 +750,7 @@ msgstr "Protokol sürümü" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Kullanıcı" @@ -995,12 +996,12 @@ msgstr "Yetkiler Yeniden Yükleniyor" msgid "Removing Selected Users" msgstr "Seçili Kullanıcılar Kaldırılıyor" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Kapat" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1010,15 +1011,15 @@ msgstr "Kapat" msgid "Edit" msgstr "Düzenle" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Canlı trafik çizelgesi" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Canlı bağ./işlem çizelgesi" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Canlı sorgu çizelgesi" @@ -1029,13 +1030,14 @@ msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Diğer" @@ -1050,48 +1052,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "Son yenilemeden bu yana gönderilmiş KiB" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "Son yenilemeden bu yana alınmış KiB" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Sunucu trafiği (KiB olarak)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "Son yenilemeden bu yana bağlantılar" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "İşlemler" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "Bağlantılar / İşlemler" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Son yenilemeden bu yana sorular" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Sorgu istatistikleri" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Yerel izleme yapılandırması uyumsuz" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1103,196 +1071,201 @@ msgstr "" "büyük olasılıkla bundan sonra çalışmayacak. Lütfen Ayarlar menüsünden " "yapılandırmanızı varsayılana sıfırlayın." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Sorgu önbelleği verimi" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Sorgu önbelleği kullanımı" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Kullanılan sorgu önbelleği" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Sistem İşlemcisi Kullanımı" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Sistem belleği" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "Sistem takası" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MiB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Ortalama yükleme" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Toplam bellek" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Önbelleklenen bellek" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Arabelleklenen bellek" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Boş bellek" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Kullanılan bellek" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Toplam Takas" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Önbelleklenen Takas" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Kullanılan Takas" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Serbest Takas" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Gönderilmiş bayt" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Bağlantılar" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "İşlemler" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MiB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EiB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d tablo" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Sorular" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Ayarlar" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Çizelgeyi kaldır" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Etiketleri ve başlığı düzenle" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Çizelgeyi ızgaraya ekle" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Lütfen diziye en az bir değişken ekleyin" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Yok" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "İzlemeye devam et" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "İzlemeyi duraklat" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log ve slow_query_log etkin." -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log etkinleştirildi." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log etkinleştirildi." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ve general_log etkisiz." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output, TABLE olarak ayarlı değil." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output, TABLE olarak ayarlı." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1303,12 +1276,12 @@ msgstr "" "süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-" "2 saniyeye ayarlanması tavsiye edilir." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d saniyeye ayarlı." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1317,30 +1290,30 @@ msgstr "" "varsayılana sıfırlanacak:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "log_output'u %s'a ayarla" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "%s etkin" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "%s etkisiz" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "long_query_time'ı %ds ayarla" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1348,53 +1321,53 @@ msgstr "" "Bu değişkenleri değiştiremezsiniz. Lütfen root olarak oturum açın veya " "veritabanı yöneticinizle temasa geçin." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Ayarları değiştir" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Çizelge Başlığı" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Ayırdedici" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "%s tarafından bölen" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Birim" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "Yavaş günlükten" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Genel günlükten" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "Günlükler çözümleniyor" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Günlükler çözümleniyor ve yükleniyor. Bu biraz zaman alabilir." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "İsteği iptal et" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1404,7 +1377,7 @@ msgstr "" "sadece SQL Metnin kendisi gruplama kriteri olarak kullanılır, böylece " "başlama zamanı gibi, sorguların diğer öznitelikleri farklı olabilir." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1414,98 +1387,98 @@ msgstr "" "INSERT sorguları, eklenen verinin hiçe sayılması, aynı zamanda birlikte " "gruplanır." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Günlük verisi yüklendi. Sorgular bu zaman aralığında çalıştırıldı:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Günlük tablosuna atla" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "Bulunan veri yok" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Günlük çözümlendi, ama bu zaman aralığı içinde bulunan veri yok." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Çözümleniyor…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Çıktıyı açıkla" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Süre" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Toplam süre:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Sonuçların profili çıkarılıyor" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "Tablo" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "Çizelge" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "Çizelgeyi düzenle" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "Dizi" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "Günlük tablosu süzgeci seçenekleri" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Süzgeç" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Kelime/düzenli ifadeye göre sorguları süz:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grup sorguları, WHERE cümleciklerindeki değişken veri yoksayılıyor" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Gruplanmış satırların toplamı:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Toplam:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Günlükler yükleniyor" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "İzleyici yenileme başarısız oldu" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1515,256 +1488,258 @@ msgstr "" "ihtimalle oturumunuzun süresi dolduğundandır. Sayfanın yeniden yüklenmesi ve " "kimlik bilgilerinizin yeniden girilmesi yardımcı olmalıdır." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Sayfayı yeniden yükle" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "Etkilenen satırlar:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Yapılandırma dosyasının ayrıştırılması başarısız. Bu geçerli JSON kodu " "görünmüyor." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "İçe aktarılan yapılandırma ile çizelge ızgarasının yapılması başarısız oldu. " "Varsayılan yapılandırmaya sıfırlanıyor…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "İzleme yapılandırmasını içe aktar" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "Lütfen içe aktarmak istediğiniz dosyayı seçin" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Sorguyu Çözümle" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Danışman sistemi" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Olası performans sorunları" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Sorun" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Tavsiye" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Kural ayrıntıları" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Gerekçe" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Kullanılan değişken / formül" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Deneme" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "İptal" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Yükleniyor" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "İstek İşleniyor" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "İstek İşlemede Hata" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "Hata kodu: %s" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "Hata metni: %s" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Veritabanı seçilmedi." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Sütun Kaldırılıyor" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Birincil Anahtar Ekleniyor" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "TAMAM" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Bu bildiriyi reddetmek için tıklayın" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Veritabanı Yeniden Adlandırılıyor" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Veritabanını Yeniden Yükle" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Veritabanı Kopyalanıyor" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Karakter Grubu Değiştiriliyor" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Tablonun en az bir sütunu olmalı" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Tablo Ekle" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "İndeksleri gizle" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "İndeksleri göster" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "Dış anahtar kontrolü:" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "(Etkinleştirildi)" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 msgid "(Disabled)" msgstr "(Etkisizleştirildi)" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Aranıyor" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Arama sonuçlarını gizle" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Arama sonuçlarını göster" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Gözatılıyor" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Siliniyor" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "%s sütunu için değerler" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Yeni bir sütun için değerler" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Her bir değeri ayrı alana girin" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "%d değer ekle" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Not: Eğer dosya çoklu tablolar içeriyorsa, bunlar bir tane içinde " "birleştirilecektir" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Sorgu kutusunu gizle" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Satır seçilmedi" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Değiştir" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Sorgu yürütme süresi" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1773,93 +1748,93 @@ msgstr "%d geçerli bir satır sayısı değil." msgid "Save" msgstr "Kaydet" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Arama kriterini gizle" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Odaklı Arama" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Her nokta bir veri satırını temsil eder." -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "Noktanın üzerinde durmak etiketini gösterecektir." -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Yakınlaştırmak için fare ile çizimin bir bölümünü seçin." -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" "Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla düğmesine " "tıklayın." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Veri satırını mümkün olduğunca düzenlemek ve görmek için veri noktasına " "tıklayın." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "İki farklı sütun seçin" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Sorgu sonuçları" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Kopyala" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Sütunları ekle" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1867,15 +1842,20 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Sütun için bir seçenek ekle " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "%d nesne oluşturuldu" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1883,28 +1863,28 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükle" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Sıralamak için tıklayın" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "İşaretlemek/işareti kaldırmak için tıklayın" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "Sütun adını kopyalamak için çift tıklayın" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Sütunların görünürlüğünü değiştirmek
için aşağı açılır okuna tıklayın" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1913,7 +1893,7 @@ msgstr "" "özellikler, Düzenle, Kopyala ve Sil bağlantıları kaydedildikten sonra " "çalışmayabilir." -#: js/messages.php:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." @@ -1921,58 +1901,58 @@ msgstr "" "Aynı zamanda çoğu sütunu içeriğine doğrudan
çift tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Aynı zamanda çoğu sütunu içeriğine
doğrudan tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Bağlantıya git" -#: js/messages.php:371 +#: js/messages.php:359 msgid "Copy column name" msgstr "Sütun adını kopyala" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "Sütun adını panonuza kopyalamak için sağ tuşa tıklayın." -#: js/messages.php:373 +#: js/messages.php:361 msgid "Show data row(s)" msgstr "Veri satır(larını)nı göster" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Üret" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Daha Fazla" -#: js/messages.php:384 +#: js/messages.php:372 msgid "Show Panel" msgstr "Paneli Göster" -#: js/messages.php:385 +#: js/messages.php:373 msgid "Hide Panel" msgstr "Paneli Gizle" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "İstenen sayfa geçmişte bulunamadı, süresi dolmuş olabilir." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1982,266 +1962,266 @@ msgstr "" "s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "güncel" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Bitti" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Bugün" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Ocak" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Şubat" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Mart" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Nisan" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Mayıs" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Haziran" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Temmuz" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Ağustos" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Eylül" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Ekim" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Kasım" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Ara" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "Cuma" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Hs" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "yok" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Saat" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Dakika" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Saniye" @@ -2293,16 +2273,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\"" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "saniye başına" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "dakika başına" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "saat başına" @@ -2329,7 +2309,7 @@ msgstr "Yazı Tipi boyutu" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Küçükten Büyüğe" @@ -2338,7 +2318,7 @@ msgstr "Küçükten Büyüğe" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Büyükten Küçüğe" @@ -2450,7 +2430,7 @@ msgstr "%s tablosu için benzeşenler silinsin mi?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Sil" @@ -2620,7 +2600,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Sonlandır" @@ -2676,12 +2656,13 @@ msgstr "Tümünü Seç" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" @@ -2689,7 +2670,7 @@ msgstr "Dışa Aktar" msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2773,18 +2754,18 @@ msgstr "Gönderilen dosya okunamıyor (taşınamadı)." msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "Sayfanın en üstüne kaydırmak için çubuğa tklayın" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" "Bu kısmı geçmek için tanımlama bilgileri (cookies) etkinleştirilmiş " "olmalıdır." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "Bu kısmı geçmek için Javascript etkinleştirilmiş olmalıdır" @@ -2796,21 +2777,21 @@ msgstr "Tanımlı indeks yok!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Önemlilik" @@ -2820,13 +2801,13 @@ msgstr "Önemlilik" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Karşılaştırma" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Yorum" @@ -2871,7 +2852,7 @@ msgstr "Görünüm" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Yapı" @@ -2944,34 +2925,35 @@ msgstr "Olaylar" msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Kullanıcılar" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binari günlüğü" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Kopya Etme" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Eklentiler" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Motorlar" @@ -3016,6 +2998,104 @@ msgstr "Son tablolar" msgid "There are no recent tables" msgstr "Son tablolar yok" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL sorgusu" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Denetimci" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Sorgu önbelleği" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "İşlemler" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Geçici veri" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Gecikmiş eklemeler" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Anahtar önbelleği" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Birleştirmeler" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sıralama" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tablolar" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "İşlem koordinatörü" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Dosyalar" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Tüm tabloları temizle (kapat)" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Açık tabloları göster" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Slave anamakineleri göster" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Master durumunu göster" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Slave durumunu göster" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Sorgu önbelleğini temizle" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Durumu" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "Sorgu istatistikleri" + +#: libraries/ServerStatusData.class.php:349 +msgid "All status variables" +msgstr "Tüm durum değişkenleri" + +#: libraries/ServerStatusData.class.php:353 +msgid "Monitor" +msgstr "İzleme" + +#: libraries/ServerStatusData.class.php:357 +msgid "Advisor" +msgstr "Danışman" + #: libraries/StorageEngine.class.php:216 msgid "" "There is no detailed status information available for this storage engine." @@ -3112,7 +3192,7 @@ msgstr "İşletici" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Değer" @@ -3561,11 +3641,6 @@ msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir" msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL sorgusu" - #: libraries/Util.class.php:710 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:292 @@ -3600,7 +3675,7 @@ msgid "Create PHP Code" msgstr "PHP Kodu oluştur" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Yenile" @@ -3696,13 +3771,6 @@ msgstr "Yazdır" msgid "shared" msgstr "paylaşılmış" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tablolar" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3743,11 +3811,11 @@ msgstr ""%s" veritabanı için yetkileri kontrol et." msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Yapılandırma dosyasını okuma başarısız" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3755,12 +3823,12 @@ msgstr "" "Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda " "gösterilen her hatayı kontrol edin." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3768,40 +3836,40 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] talimatı yapılandırma dosyanız içinde " "AYARLANMAK zorundadır!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "Hata: Belirti uyuşmazlığı" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "GLOBALS üzerine yazma girişimi" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "olası kötüye kullanma" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "sayısal tuş algılandı" @@ -6026,8 +6094,8 @@ msgstr "" "Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]" "isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Kullanıcı Adı" @@ -6678,10 +6746,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Arabellek Havuzu" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Durumu" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Arabellek Havuzu Kullanımı" @@ -7375,16 +7439,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "%s diğer sonuç bulundu" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 msgid "filter databases by name" msgstr "veritabanlarını adına göre süz" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "Hızlı Süzgeci Temizle" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 msgid "filter items by name" msgstr "öğeleri adına göre süz" @@ -7480,17 +7544,17 @@ msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Sadece yapı" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Yapı ve veri" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Sadece veri" @@ -7887,8 +7951,7 @@ msgstr "MIME türlerini göster" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Anamakine" @@ -8485,7 +8548,7 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Değişken" @@ -8998,7 +9061,7 @@ msgstr "Öznitelikler" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Ekstra" @@ -9696,7 +9759,7 @@ msgstr "Tabloya ön ek ekle" msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "Yok" @@ -10041,7 +10104,7 @@ msgstr "Küçüğü/büyüğü değiştir" msgid "Toggle relation lines" msgstr "İlgili satırları değiştir" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri içe/dışa aktar" @@ -10107,31 +10170,31 @@ msgstr "Sayfa oluşturuldu" msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Sayfa" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Seçili sayfadan içe aktar" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Seçili sayfaya aktar" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Yeni bir sayfa oluştur ve ona aktar" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Yeni sayfa adı: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Ölçeklemek için içe/dışa aktar" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "önerilir" @@ -10251,15 +10314,11 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Dosyalar" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -10342,7 +10401,7 @@ msgstr "Modül" msgid "Library" msgstr "Kütüphane" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Sürüm" @@ -10400,10 +10459,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Master durumunu göster" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" @@ -10546,130 +10601,100 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status.php:657 -msgid "Handler" -msgstr "Denetimci" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "Sorgu önbelleği" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Bu MySQL sunucusunun çalışma süresi: %1$s. Başlatıldığı zaman: %2$s." -#: server_status.php:659 -msgid "Threads" -msgstr "İşlemler" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" +"Bu MySQL sunucusu kopya etme işlemi sırasında master ve " +"slave olarak çalışır." -#: server_status.php:661 -msgid "Temporary data" -msgstr "Geçici veri" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "" +"Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " +"çalışır." -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Gecikmiş eklemeler" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "" +"Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " +"çalışır." -#: server_status.php:663 -msgid "Key cache" -msgstr "Anahtar önbelleği" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: server_status.php:664 -msgid "Joins" -msgstr "Birleştirmeler" +#: server_status.php:122 +msgid "Replication status" +msgstr "Kopya etme durumu" -#: server_status.php:666 -msgid "Sorting" -msgstr "Sıralama" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " +"sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "İşlem koordinatörü" +#: server_status.php:149 +msgid "Received" +msgstr "Alınan" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Tüm tabloları temizle (kapat)" +#: server_status.php:168 +msgid "Sent" +msgstr "Gönderilen" -#: server_status.php:682 -msgid "Show open tables" -msgstr "Açık tabloları göster" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Slave anamakineleri göster" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Başarısız deneme" -#: server_status.php:693 -msgid "Show slave status" -msgstr "Slave durumunu göster" +#: server_status.php:253 +msgid "Aborted" +msgstr "İptal edilen" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Sorgu önbelleğini temizle" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Çalışma Süresi Bilgisi" +#: server_status.php:329 +msgid "Command" +msgstr "Komut" -#: server_status.php:830 -msgid "All status variables" -msgstr "Tüm durum değişkenleri" - -#: server_status.php:832 -msgid "Monitor" -msgstr "İzleme" - -#: server_status.php:834 -msgid "Advisor" -msgstr "Danışman" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "Veri noktası sayısı: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "Yenileme oranı: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "Süzgeçler" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "İçerdiği kelime:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "Sadece uyarı değerlerini göster" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "Kategoriye göre süz..." - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "Biçimlendirilmemiş değerleri göster" - -#: server_status.php:930 -msgid "Related links:" -msgstr "İlgili bağlantılar:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "Çözümleyiciyi çalıştır" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "Talimatlar" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10677,7 +10702,7 @@ msgstr "" "Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu " "değişkenlerinde öneriler sağlayabilir." -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10686,7 +10711,7 @@ msgstr "" "Yine de not edin bu sistem basit hesaplamalar üzerine kurulu ve sisteminize " "zorunlu olarak uygulanamayabilir başlıca kurallara göre öneriler sağlar." -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10697,7 +10722,7 @@ msgstr "" "alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki " "edebilir." -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10707,820 +10732,39 @@ msgstr "" "gözlemlemek, veritabanınızı kıyaslamak ve eğer açıkça ölçülebilir bir " "iyileştirilme olmadıysa, değişikliği geri almak olacaktır." -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "Başlangıçtan bu yana sorular: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "İfadeler" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "#" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "Başlangıçtan bu yana ağ trafiği: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Bu MySQL sunucusunun çalışma süresi: %1$s. Başlatıldığı zaman: %2$s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" -"Bu MySQL sunucusu kopya etme işlemi sırasında master ve " -"slave olarak çalışır." - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" -"Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " -"çalışır." - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" -"Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " -"çalışır." - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." - -#: server_status.php:1171 -msgid "Replication status" -msgstr "Kopya etme durumu" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " -"sunucusu tarafından raporlanan istatistikler doğru olmayabilir." - -#: server_status.php:1191 -msgid "Received" -msgstr "Alınan" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Gönderilen" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "En fazla eşzamanlı bağlantı" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Başarısız deneme" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "İptal edilen" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Komut" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" -"Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " -"bağlantılarının sayısıdır." - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." - -#: server_status.php:1529 -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 "" -"Geçici binari günlüğü önbelleğinde kullanılan ama binlog_cache_size değerini " -"aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin " -"sayısıdır." - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." - -#: server_status.php:1532 -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 "" -"İfadeler çalıştırılırken sunucu tarafından disk üzerindeki geçici tablo " -"sayıları otomatik olarak oluşturuldu. Eğer Created_tmp_disk_tables değeri " -"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " -"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " -"sayısı otomatik olarak oluşturuldu." - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " -"sayısı (muhtemelen kopya anahtar)." - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " -"komutunu kullanan her farklı tablodan biri kendi işlemini alır." - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "INSERT DELAYED satır yazımı sayısıdır." - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "Dahili COMMIT ifadesi sayısıdır." - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "Tablodan satırın kaç kez silindiği sayısıdır." - -#: server_status.php:1541 -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 "" -"Eğer MySQL sunucusu verilen isimdeki tabloyu biliyorsa, NDB Küme depolama " -"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " -"keşfedildiğini gösterir." - -#: server_status.php:1542 -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 "" -"İndeks'ten ilk girişin kaç kez okunduğu sayısıdır. Eğer bu değer yüksekse, " -"sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " -"SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." - -#: server_status.php:1543 -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 "" -"Anahtarda satır tabanlı okumak için istek sayısıdır. Eğer bu değer yüksekse, " -"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " -"olduğu belirtisidir." - -#: server_status.php:1544 -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 "" -"Anahtar sırasında sonraki satırı okumak için istek sayısıdır. Eğer kısıtlı " -"aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " -"yapıyorsanız, bu arttırılan miktardır." - -#: server_status.php:1545 -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 "" -"Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " -"yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." - -#: server_status.php:1546 -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 "" -"Sabitlenmiş konumda satır tabanlı okumak için istek sayısıdır. Eğer " -"sonuçları sıralamayı gerektiren çok fazla sorgu yapıyorsanız, bu değer " -"yüksek olur. Muhtemelen bütün tabloları taramak için MySQL gerektiren çok " -"fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " -"birleştirmelere sahipsiniz." - -#: server_status.php:1547 -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 "" -"Veri dosyasında sonraki satırı okumak için istek sayısıdır. Eğer çok fazla " -"tablo taraması yapıyorsanız, bu değer yüksek olur. Genellikle tablolarınız " -"düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " -"indeksleri çıkarına kullanmak için yazmadığında önerilir." - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "Dahili ROLLBACK ifadesi sayısıdır." - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "Tablo içinde satır güncellemek için istek sayısıdır." - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "Tablo içinde satır eklemek için istek sayısıdır." - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "Şu anki dolu sayfa sayısıdır." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Boş sayfa sayısıdır." - -#: server_status.php:1555 -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 "" -"InnoDB arabellek havuzunda sabitlenmiş sayfa sayısıdır. Bunlar şu anki " -"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " -"taşınamayan sayfalardır." - -#: server_status.php:1556 -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 "" -"Meşgul sayfa sayısıdır çünkü bunlar satır kilitleri veya uyarlamalı " -"adresleme indeksi gibi yönetimsel ek yük için ayrılmıştır. Bu değer aynı " -"zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." - -#: server_status.php:1558 -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 "" -"InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " -"bir kısmını taradığı zaman bu olur ama rastgele düzende." - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " -"taraması yaptığı zaman bu olur." - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " -"zorunda olduğu mantıksal okuma sayısıdır." - -#: server_status.php:1562 -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 "" -"Normal olarak arkaplanda olan InnoDB arabellek havuzuna yazılır. Ancak, eğer " -"sayfa oluşturma veya okuma gerekliyse ve temiz sayfalar yoksa önce " -"sayfaların temizlenmesi için beklenmesi gereklidir. Bu sayaç bu bekleme " -"durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " -"ayarlandıysa, bu değer küçük olmalıdır." - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "Şimdiye kadarki fsync() işlem sayısıdır." - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "Şu anki bekleyen fsync() işlem sayısıdır." - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "Şu anki bekleyen okuma sayısıdır." - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "Şu anki bekleyen yazma sayısıdır." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "Toplam veri okuma sayısıdır." - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "Toplam veri yazma sayısıdır." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " -"sayısıdır." - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " -"sayısıdır." - -#: server_status.php:1574 -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 "" -"Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " -"etmeden önce temizlenmesi için beklemek zorundayız." - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "Günlük yazma isteği sayısıdır." - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "Günlük dosyasına fiziksel yazma sayısıdır." - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "Bekleyen günlük dosyası yazma sayısıdır." - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Günlük dosyasına yazılı bayt sayısıdır." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Oluşturulmuş sayfa sayısıdır." - -#: server_status.php:1582 -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 "" -"Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " -"sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Okunan sayfa sayısıdır." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Yazılmış sayfa sayısıdır." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "Şu anki beklenen satır kilidi sayısıdır." - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" -"Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "InnoDB tablolarından silinen satır sayısıdır." - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "InnoDB tablolarına eklenen satır sayısıdır." - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "InnoDB tablolarından okunan satır sayısıdır." - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB tablolarında güncellenen satır sayısıdır." - -#: server_status.php:1594 -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 "" -"Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " -"bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." - -#: server_status.php:1595 -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 "" -"Anahtar önbelleğinde kullanılmayan blok sayısıdır. Bu değeri anahtar " -"önbelleğinin ne kadarının kullanımda olmasını belirlemek için " -"kullanabilirsiniz." - -#: server_status.php:1596 -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 "" -"Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " -"olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." - -#: server_status.php:1597 -msgid "Percentage of used key cache (calculated value)" -msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." - -#: server_status.php:1599 -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 "" -"Diskten anahtar bloğunun fiziksel okunma sayısıdır. Eğer Key_reads değeri " -"büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " -"oranı Key_reads/Key_read_requests olarak hesaplanabilir." - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " -"anahtar önbelleğidir (hesaplanmış değer)" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" -"Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" - -#: server_status.php:1604 -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 "" -"Sorgu en iyileyicisi tarafından hesaplanmış gibi son derlenen sorgunun " -"toplam maliyetidir. Aynı sorgu için farklı sorgu planlarının maliyetini " -"karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " -"olmadığı anlamına gelir." - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" -"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " -"bağlantı sayısı." - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" -"Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " -"değeriniz muhtemelen çok küçüktür." - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Açık olan dosya sayısıdır." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Açık olan tablo sayısıdır." - -#: server_status.php:1611 -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 "" -"Sorgu önbelleğinde boş bellek blokları sayısıdır. Yüksek sayılar, FLUSH " -"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " -"edebilir." - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "Sorgu önbelleği için boş bellek miktarıdır." - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Önbelleğe ulaşma sayısıdır." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "Önbelleğe eklenen sorgu sayısıdır." - -#: server_status.php:1615 -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 "" -"Yeni sorguları önbelleklemek için belleği boşaltmaya yönelik önbellekten " -"kaldırılmış sorgu sayısıdır. Bu bilgi sorgu önbellek boyutunu ayarlamınıza " -"yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " -"için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " -"ayarından dolayı önbelleklenmedi)." - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "Önbellekte kayıtlı sorgu sayısıdır." - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." - -#: server_status.php:1620 -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 "" -"İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " -"tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." - -#: server_status.php:1622 -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 "" -"Her bir satırdan sonra anahtar kullanımını kontrol eden anahtarsız " -"birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " -"dikkatli olarak kontrol etmelisiniz.)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " -"kusurlu değildir, eğer büyükse bile.)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" -"Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " -"(başlangıçtan beri) süre sayısıdır." - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " -"sayısıdır." - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." - -#: server_status.php:1630 -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 "" -"Yapılması zorunlu sıralama algoritması birleştirme geçişi sayısıdır. Eğer bu " -"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " -"düşünmelisiniz." - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "Aralıklarla yapılmış sıralama sayısıdır." - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Sıralanmış satır sayısıdır." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." - -#: server_status.php:1635 -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 "" -"Tablo kilidinin hemen tanınamadığı ve beklemenin gerektiği süre sayısıdır. " -"Eğer bu değer yüksekse ve performans sorununuz varsa, önce sorgularınızı " -"uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " -"etmeyi kullanın." - -#: server_status.php:1636 -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 "" -"İşlem önbelleği içinde işlem sayısıdır. Önbelleğe ulaşma hızı " -"Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " -"ise, thread_cache_size boyutunuzu yükseltmelisiniz." - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Şu anki açık bağlantı sayısıdır." - -#: server_status.php:1638 -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 "" -"Bağlantıları işlemek için oluşturulmuş işlem sayısıdır. Eğer Threads_created " -"değeri büyük ise, thread_cache_size değerini arttırmak isteyebilirsiniz. " -"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " -"bir performans artışı vermez.)" - -#: server_status.php:1639 -msgid "Thread cache hit rate (calculated value)" -msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "Hala faaliyette olan işlemler sayısıdır." - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "İzlemeyi başlat" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "Yönergeler/Ayarlama" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "Çizelge ekle" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "Çizelgeleri düzenle/yeniden düzelt" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "Çizelge sütunları" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: server_status.php:1851 +#: server_status_monitor.php:524 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." @@ -11528,15 +10772,15 @@ msgstr "" "Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " "ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "Varsayılana sıfırla" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "İzleme Yönergeleri" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11550,7 +10794,7 @@ msgstr "" "etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " "sunucu yükünü %15'e kadar arttırır" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11562,11 +10806,11 @@ msgstr "" "günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " "sunucu çizelgeleme özelliklerini kullanabilirsiniz." -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "İzleyici kullanımı:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11577,7 +10821,7 @@ msgstr "" "değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11590,11 +10834,11 @@ msgstr "" "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " "ifadesine tıklayabilirsiniz." -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "Lütfen unutmayın:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11607,90 +10851,817 @@ msgstr "" "etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " "izlemeyi gerektirmez." -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "Hazır çizelge" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "Durum değişkeni(leri)" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "Dizi seç:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "Genellikle izlenen" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "veya değişken adını yazın:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "Ayırtedici değer olarak görüntüle" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "Böleni uygula" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "Veri değerlerine birimi ekle" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "Bu diziyi ekle" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "Diziyi temizle" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "Çizelgedeki Dizi:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "Günlük istatistikleri" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "Seçili zaman aralığı:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "Sonuçlar sorgu metnine göre gruplandırılır." -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "Sorgu çözümleyici" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d saniye" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d dakika" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "Başlangıçtan bu yana sorular: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "İfadeler" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "#" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "Süzgeçler" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "İçerdiği kelime:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "Sadece uyarı değerlerini göster" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "Kategoriye göre süz..." + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "Biçimlendirilmemiş değerleri göster" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "İlgili bağlantılar:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" +"Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " +"bağlantılarının sayısıdır." + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." + +#: server_status_variables.php:334 +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 "" +"Geçici binari günlüğü önbelleğinde kullanılan ama binlog_cache_size değerini " +"aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin " +"sayısıdır." + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." + +#: server_status_variables.php:346 +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 "" +"İfadeler çalıştırılırken sunucu tarafından disk üzerindeki geçici tablo " +"sayıları otomatik olarak oluşturuldu. Eğer Created_tmp_disk_tables değeri " +"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " +"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" +"İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " +"sayısı otomatik olarak oluşturuldu." + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " +"sayısı (muhtemelen kopya anahtar)." + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" +"Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " +"komutunu kullanan her farklı tablodan biri kendi işlemini alır." + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "INSERT DELAYED satır yazımı sayısıdır." + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "Dahili COMMIT ifadesi sayısıdır." + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "Tablodan satırın kaç kez silindiği sayısıdır." + +#: server_status_variables.php:381 +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 "" +"Eğer MySQL sunucusu verilen isimdeki tabloyu biliyorsa, NDB Küme depolama " +"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " +"keşfedildiğini gösterir." + +#: server_status_variables.php:387 +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 "" +"İndeks'ten ilk girişin kaç kez okunduğu sayısıdır. Eğer bu değer yüksekse, " +"sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " +"SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." + +#: server_status_variables.php:393 +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 "" +"Anahtarda satır tabanlı okumak için istek sayısıdır. Eğer bu değer yüksekse, " +"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " +"olduğu belirtisidir." + +#: server_status_variables.php:398 +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 "" +"Anahtar sırasında sonraki satırı okumak için istek sayısıdır. Eğer kısıtlı " +"aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " +"yapıyorsanız, bu arttırılan miktardır." + +#: server_status_variables.php:403 +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 "" +"Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " +"yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." + +#: server_status_variables.php:407 +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 "" +"Sabitlenmiş konumda satır tabanlı okumak için istek sayısıdır. Eğer " +"sonuçları sıralamayı gerektiren çok fazla sorgu yapıyorsanız, bu değer " +"yüksek olur. Muhtemelen bütün tabloları taramak için MySQL gerektiren çok " +"fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " +"birleştirmelere sahipsiniz." + +#: server_status_variables.php:414 +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 "" +"Veri dosyasında sonraki satırı okumak için istek sayısıdır. Eğer çok fazla " +"tablo taraması yapıyorsanız, bu değer yüksek olur. Genellikle tablolarınız " +"düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " +"indeksleri çıkarına kullanmak için yazmadığında önerilir." + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "Dahili ROLLBACK ifadesi sayısıdır." + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "Tablo içinde satır güncellemek için istek sayısıdır." + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "Tablo içinde satır eklemek için istek sayısıdır." + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "Şu anki dolu sayfa sayısıdır." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Boş sayfa sayısıdır." + +#: server_status_variables.php:443 +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 "" +"InnoDB arabellek havuzunda sabitlenmiş sayfa sayısıdır. Bunlar şu anki " +"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " +"taşınamayan sayfalardır." + +#: server_status_variables.php:448 +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 "" +"Meşgul sayfa sayısıdır çünkü bunlar satır kilitleri veya uyarlamalı " +"adresleme indeksi gibi yönetimsel ek yük için ayrılmıştır. Bu değer aynı " +"zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." + +#: server_status_variables.php:458 +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 "" +"InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " +"bir kısmını taradığı zaman bu olur ama rastgele düzende." + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " +"taraması yaptığı zaman bu olur." + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " +"zorunda olduğu mantıksal okuma sayısıdır." + +#: server_status_variables.php:474 +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 "" +"Normal olarak arkaplanda olan InnoDB arabellek havuzuna yazılır. Ancak, eğer " +"sayfa oluşturma veya okuma gerekliyse ve temiz sayfalar yoksa önce " +"sayfaların temizlenmesi için beklenmesi gereklidir. Bu sayaç bu bekleme " +"durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " +"ayarlandıysa, bu değer küçük olmalıdır." + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "Şimdiye kadarki fsync() işlem sayısıdır." + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "Şu anki bekleyen fsync() işlem sayısıdır." + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "Şu anki bekleyen okuma sayısıdır." + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "Şu anki bekleyen yazma sayısıdır." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "Toplam veri okuma sayısıdır." + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "Toplam veri yazma sayısıdır." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" +"Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " +"sayısıdır." + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" +"Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " +"sayısıdır." + +#: server_status_variables.php:516 +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 "" +"Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " +"etmeden önce temizlenmesi için beklemek zorundayız." + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "Günlük yazma isteği sayısıdır." + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "Günlük dosyasına fiziksel yazma sayısıdır." + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "Bekleyen günlük dosyası yazma sayısıdır." + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Günlük dosyasına yazılı bayt sayısıdır." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Oluşturulmuş sayfa sayısıdır." + +#: server_status_variables.php:541 +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 "" +"Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " +"sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Okunan sayfa sayısıdır." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Yazılmış sayfa sayısıdır." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "Şu anki beklenen satır kilidi sayısıdır." + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" +"Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "InnoDB tablolarından silinen satır sayısıdır." + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "InnoDB tablolarına eklenen satır sayısıdır." + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "InnoDB tablolarından okunan satır sayısıdır." + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB tablolarında güncellenen satır sayısıdır." + +#: server_status_variables.php:579 +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 "" +"Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " +"bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." + +#: server_status_variables.php:584 +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 "" +"Anahtar önbelleğinde kullanılmayan blok sayısıdır. Bu değeri anahtar " +"önbelleğinin ne kadarının kullanımda olmasını belirlemek için " +"kullanabilirsiniz." + +#: server_status_variables.php:588 +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 "" +"Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " +"olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." + +#: server_status_variables.php:593 +msgid "Percentage of used key cache (calculated value)" +msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." + +#: server_status_variables.php:599 +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 "" +"Diskten anahtar bloğunun fiziksel okunma sayısıdır. Eğer Key_reads değeri " +"büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " +"oranı Key_reads/Key_read_requests olarak hesaplanabilir." + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" +"Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " +"anahtar önbelleğidir (hesaplanmış değer)" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" +"Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" + +#: server_status_variables.php:619 +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 "" +"Sorgu en iyileyicisi tarafından hesaplanmış gibi son derlenen sorgunun " +"toplam maliyetidir. Aynı sorgu için farklı sorgu planlarının maliyetini " +"karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " +"olmadığı anlamına gelir." + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" +"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " +"bağlantı sayısı." + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" +"Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " +"değeriniz muhtemelen çok küçüktür." + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Açık olan dosya sayısıdır." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Açık olan tablo sayısıdır." + +#: server_status_variables.php:645 +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 "" +"Sorgu önbelleğinde boş bellek blokları sayısıdır. Yüksek sayılar, FLUSH " +"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " +"edebilir." + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "Sorgu önbelleği için boş bellek miktarıdır." + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Önbelleğe ulaşma sayısıdır." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "Önbelleğe eklenen sorgu sayısıdır." + +#: server_status_variables.php:659 +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 "" +"Yeni sorguları önbelleklemek için belleği boşaltmaya yönelik önbellekten " +"kaldırılmış sorgu sayısıdır. Bu bilgi sorgu önbellek boyutunu ayarlamınıza " +"yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " +"için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " +"ayarından dolayı önbelleklenmedi)." + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "Önbellekte kayıtlı sorgu sayısıdır." + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." + +#: server_status_variables.php:679 +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 "" +"İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " +"tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." + +#: server_status_variables.php:686 +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 "" +"Her bir satırdan sonra anahtar kullanımını kontrol eden anahtarsız " +"birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " +"dikkatli olarak kontrol etmelisiniz.)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " +"kusurlu değildir, eğer büyükse bile.)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" +"Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " +"(başlangıçtan beri) süre sayısıdır." + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" +"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " +"sayısıdır." + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." + +#: server_status_variables.php:717 +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 "" +"Yapılması zorunlu sıralama algoritması birleştirme geçişi sayısıdır. Eğer bu " +"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " +"düşünmelisiniz." + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "Aralıklarla yapılmış sıralama sayısıdır." + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Sıralanmış satır sayısıdır." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." + +#: server_status_variables.php:734 +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 "" +"Tablo kilidinin hemen tanınamadığı ve beklemenin gerektiği süre sayısıdır. " +"Eğer bu değer yüksekse ve performans sorununuz varsa, önce sorgularınızı " +"uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " +"etmeyi kullanın." + +#: server_status_variables.php:740 +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 "" +"İşlem önbelleği içinde işlem sayısıdır. Önbelleğe ulaşma hızı " +"Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " +"ise, thread_cache_size boyutunuzu yükseltmelisiniz." + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Şu anki açık bağlantı sayısıdır." + +#: server_status_variables.php:748 +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 "" +"Bağlantıları işlemek için oluşturulmuş işlem sayısıdır. Eğer Threads_created " +"değeri büyük ise, thread_cache_size değerini arttırmak isteyebilirsiniz. " +"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " +"bir performans artışı vermez.)" + +#: server_status_variables.php:755 +msgid "Thread cache hit rate (calculated value)" +msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "Hala faaliyette olan işlemler sayısıdır." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "Ayar değişkeni başarısız oldu" @@ -12285,26 +12256,26 @@ msgstr "Dış anahtar kısıtlaması" msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme aktif." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde devre dışı bırakıldı." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde aktif edildi." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12313,119 +12284,119 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin " "olun." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "Sorgu hatası" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "İzlenen veri işlemesi başarılı olarak silindi" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%4$s %5$s kullanıcısına göre %2$s ile %3$s arası tarihler ile %1$s göster" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "Veri yok" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Tarih" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL dökümü (dosya indirme)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL dökümü" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL yürütme" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "%s olarak dışa aktar" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Sürümleri göster" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "%s için izlemeyi devre dışı bırak" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "%s için izlemeyi aktif et" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Hemen aktif et" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, php-format msgid "Create version %1$s of %2$s" msgstr "%1$s / %2$s sürümünü oluştur" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Sürüm oluştur" @@ -12574,11 +12545,11 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time şimdilik %ds'ye ayarlı." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "Yavaş sorgu günlükleme" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "Yavaş sorgu günlüğü etkisizleştirildi." @@ -12595,15 +12566,32 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries 'OFF'a ayarlı" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"{slow_query_log} ayarını 'ON' yaparak yavaş sorgu günlüklemeyi " +"etkinleştirin. Bu, kötü bir şekilde yürütülen sorguların sorunlarını " +"gidermede yardımcı olacaktır." + +#: libraries/advisory_rules.txt:96 +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "slow_query_log 'OFF'a ayarlı" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "Diziyi Yayımla" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL sunucusu sürümü 5.1'den az." -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." @@ -12611,21 +12599,21 @@ msgstr "" "Gelişmiş performansa sahip MySQL 5.1'e ve daha çok MySQL 5.5'e " "yükseltmelisiniz." -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "Şu anki sürüm: %s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "İkincil Sürüm" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "Sürüm, 5.1.30'dan az (5.1'in ilk GA yayımı)." -#: libraries/advisory_rules.txt:104 +#: 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." @@ -12633,24 +12621,24 @@ msgstr "" "Gelişmiş performansa sahip MySQL 5.1'in en son sürümüne ve daha çok MySQL " "5.5'e yükseltmelisiniz." -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Sürüm, 5.5.8'den az (5.5'in ilk GA yayımı)." -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "MySQL 5.5'in sağlam sürümüne yükseltmelisiniz" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "Dağıtım" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "Sürüm, kaynaktan derlenmiş, MySQL resmi binariden değil." -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12661,40 +12649,40 @@ msgstr "" "doğrudur, herhangi bir paket dağıtımları (RedHat, Debian/Ubuntu v.s. gibi) " "için değil." -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "'source', version_comment içinde bulundu" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL kılavuzu sadece resmi MySQL binarileri için doğrudur." -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona belgesi http://www.percona.com/docs/wiki/ adresinde" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "'percona', version_comment içinde bulundu" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle belgesi http://docs.drizzle.org/ adresinde" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "Sürüm dizgisi (%s) Drizzle çeşitleme şemasıyla eşleşiyor" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL Yapısı" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL, 64-bit paketi olarak derlenmez." -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12704,20 +12692,20 @@ msgstr "" "varsayılıyor), bu yüzden MySQL, belleğinizin tümüne erişemeyebilir. MySQL'in " "64-bit sürümünü kurmayı düşünebilirsiniz." -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "Bu anamakinedeki kullanılabilir bellek: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "Sorgu önbelleği etkisizleştirildi" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "Sorgu önbelleği etkinleştirilmedi." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12729,19 +12717,19 @@ msgstr "" "değeri olarak ve {query_cache_type} ayarı 'ON' ayarlayarak etkinleştirin. " "Not: Eğer memcached kullanıyorsanız, bu tavsiyeyi göz ardı edin." -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size 0'a ayarlı veya query_cache_type 'OFF'a ayarlı" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "Sorgu önbellekleme yöntemi" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "Yetersiz önbellekleme yöntemi." -#: libraries/advisory_rules.txt:157 +#: 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 kullanmayı düşünmek " "değebilir, özellikle de çoklu slave'lere sahipseniz." -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12762,34 +12750,34 @@ msgstr "" "Sorgu önbelleği etkin ve sunucu her saniyede %d sorgu alıyor. Eğer her " "saniyede 100'den fazla sorgu varsa bu kural işe yaramaz." -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "Sorgu önbelleği verimi (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "Sorgu önbelleği verimli çalışmıyor, düşük tavan oranına sahip." -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "{query_cache_limit} artışını dikkate alın." -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "Şu anki %%%s sorgu önbelleği tavan oranı %%20'nin altında" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "Sorgu Önbelleği kullanımı" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "Sorgu önbelleğinin %%80'den azı değerlendirilmekte." -#: libraries/advisory_rules.txt:171 +#: 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." @@ -12797,7 +12785,7 @@ msgstr "" "Buna {query_cache_limit} çok düşük olması sebep oluyor olabilir. Sorgu " "önbelleğinin temizlenmesi de yardımcı olabilir." -#: libraries/advisory_rules.txt:172 +#: libraries/advisory_rules.txt:179 #, php-format msgid "" "The current ratio of free query cache memory to total query cache size is %s%" @@ -12806,15 +12794,15 @@ msgstr "" "Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " "%%%s. Bu %%80'in üzerinde olmalıdır" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "Sorgu önbelleği parçalama" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "Sorgu önbelleği oldukça parçalanmış." -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12835,7 +12823,7 @@ msgstr "" "ayarlayabilirsiniz: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12846,11 +12834,11 @@ msgstr "" "boş ve kullanılan bloklarının alternatif bir kalıp olduğu anlamına gelir. Bu " "değer %%20'nin altında olmalıdır." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "Düşük sorgu önbellek belleği azalması" -#: libraries/advisory_rules.txt:184 +#: libraries/advisory_rules.txt:191 msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -12858,7 +12846,7 @@ msgstr "" "Önbelleklenen sorgular, sorgu önbellek belleğinin sorgu önbelleğinden düşük " "olmasından dolayı kaldırıldı." -#: libraries/advisory_rules.txt:185 +#: 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 " @@ -12868,7 +12856,7 @@ msgstr "" "çıkarmayın, önbellek koruması ek yükü muhtemelen boyutunu arttırır bu yüzden " "bunu küçük artışlarla yapın ve sonuçlarını izleyin." -#: libraries/advisory_rules.txt:186 +#: libraries/advisory_rules.txt:193 #, php-format msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " @@ -12877,11 +12865,11 @@ msgstr "" "Kaldırılan sorguların eklenen sorgulara oranı %%%s. En düşük bu değer en " "iyisidir (Bu kuralları atan sınır: %%0.1)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "Sorgu önbelleği en fazla boyutu" -#: libraries/advisory_rules.txt:191 +#: 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." @@ -12889,28 +12877,28 @@ msgstr "" "Sorgu önbelleği boyutu 128 MiB'ın üzerinde. Büyük sorgu önbellekleri, " "önbelleği korumak için gereken önemli ölçüde ek yüke sebep olabilir." -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "Ortamınıza bağlıdır, bu değeri düşürmek performansı arttırabilir." -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "Şu anki sorgu önbelleği boyutu: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "Sorgu önbelleği en az sonuç boyutu" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" "Sorgu önbelleğinde sonuç grubunun en fazla boyutu varsayılanı 1 MiB'tır." -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12929,19 +12917,19 @@ msgstr "" "(tablo güncellemelerinden dolayı sıkça geçersiz kılınan) 1 MiB'ın üzerinde " "olması durumunda {query_cache_limit} arttırmak verimi azaltacaktır." -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit 1 MiB'a ayarlı" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "Geçici tablolara sebep olan sıralamaların yüzdesi" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "Çok fazla sıralama geçici tablolara sebep olur." -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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" @@ -12949,7 +12937,7 @@ msgstr "" "sort_buffer_size ve/veya read_rnd_buffer_size artışını dikkate alın, sistem " "bellek sınırlarınıza bağlıdır" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" @@ -12958,26 +12946,26 @@ msgstr "" "Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan " "düşük olmalıdır." -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "Geçici tablolara sebep olan sıralamaların oranı" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" "Geçici tabloların ortalaması: %s, bu değer saat başına 1'den az olmalıdır." -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "Satırları sırala" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "Birçok sıralanmış satır var." -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12988,20 +12976,20 @@ msgstr "" "indekslenmiş sütunları kullanan çok fazla sıralama gerektiren sorgulardan " "emin olmak isteyebilirsiniz, ki bu çok daha hızlı sıralamayla sonuçlanacaktır" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "Sıralanmış satır ortalaması: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "İndeksler olmaksızın birleştirme oranı" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "İndeksler olmaksızın çok fazla birleştirme var." -#: libraries/advisory_rules.txt:230 +#: 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" @@ -13010,21 +12998,21 @@ msgstr "" "şartlarında kullanılan sütunlar için indekslerin eklenmesi tablo " "birleştirmelerini fazlasıyla hızlandıracaktır" -#: libraries/advisory_rules.txt:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" "Tablo birleştirmeleri ortalaması: %s, bu değer saat başına 1'den az olmalıdır" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "Okunan ilk indeks girişi oranı" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "Okunan ilk indeks girişi oranı yüksek." -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -13041,21 +13029,21 @@ msgstr "" "tam indeks taramaları sadece yeniden yazılan sorgular tarafından " "azaltılabilir." -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "" "İndeks taramaları ortalaması: %s, bu değer saat başına 1'den az olmalıdır" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "Okunan sabit konum oranı" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "Sabit konumdan okunan veri oranı yüksek." -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -13065,7 +13053,7 @@ msgstr "" "gerektiğini gösterir, indeksleri kullanmayan birleştirme sorgular da dahil. " "Uygulanabilir yerlere indeksleri ekler." -#: libraries/advisory_rules.txt:245 +#: libraries/advisory_rules.txt:252 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " @@ -13074,15 +13062,15 @@ msgstr "" "Okunan sabit konum oranı ortalaması: %s, bu değer saat başına 1'den az " "olmalıdır" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "Sonraki tablo satırını okuma oranı" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "Sonraki tablo satırını okuma oranı yüksek." -#: libraries/advisory_rules.txt:251 +#: libraries/advisory_rules.txt:258 msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." @@ -13090,7 +13078,7 @@ msgstr "" "Bu çoğu sorgunun tam tablo taraması yaptığını gösterir. Uygulanabilir " "yerlere indeksleri ekler." -#: libraries/advisory_rules.txt:252 +#: libraries/advisory_rules.txt:259 #, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" @@ -13098,15 +13086,15 @@ msgstr "" "Okunan sonraki tablo satırı oranı: %s, bu değer saat başına 1'den az " "olmalıdır" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size 'a karşı max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size ve max_heap_table_size aynı değiller." -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -13118,22 +13106,22 @@ msgstr "" "Bu yüzden eğer bellek içi tablo sınırını arttırmak isterseniz, diğer değeri " "de arttırmak zorunda kalacaksınız." -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Şu anki değerler tmp_table_size: %s, max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "Diskteki geçici tabloların yüzdesi" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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 "Birçok geçici tablo bellekte tutulmak yerine diske yazılıyor." -#: libraries/advisory_rules.txt:266 +#: 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 " @@ -13152,7 +13140,7 @@ msgstr "" "kaçınmak için bunları elemek bakımından sorgularınızı yeniden yazmak zorunda " "kalacaksınız" -#: libraries/advisory_rules.txt:267 +#: libraries/advisory_rules.txt:274 #, php-format msgid "" "%s%% of all temporary tables are being written to disk, this value should be " @@ -13161,11 +13149,11 @@ msgstr "" "Tüm geçici tabloların %%%s diske yazılıyor, bu değer %%25'in altında " "olmalıdır" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "Geçici disk oranı" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13183,7 +13171,7 @@ msgstr "" "da 512 bayttan büyük sütunun varlığı) kaçınmak için bunları elemek " "bakımından sorgularınızı yeniden yazmak zorunda kalacaksınız" -#: libraries/advisory_rules.txt:274 +#: libraries/advisory_rules.txt:281 #, php-format msgid "" "Rate of temporary tables being written to disk: %s, this value should be " @@ -13192,15 +13180,15 @@ msgstr "" "Diske yazılan geçici tabloların oranı: %s, bu değer saat başına 1'den az " "olmalıdır" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM anahtar arabellek boyutu" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "Anahtar arabellek başlatılmadı. Önbelleklenecek MyISAM indeksleri yok." -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." @@ -13208,21 +13196,21 @@ msgstr "" "{key_buffer_size} ayarı MyISAM indekslerinizin boyutuna bağlıdır. 64M " "başlangıç için iyidir." -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size 0'dır" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "Şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Kullanılan MyISAM anahtar arabelleği (indeks önbelleği) %% düşük." -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -13232,7 +13220,7 @@ msgstr "" "kaldırılmışsa, görmek için tablolarınızı yeniden gözden geçirin ya da " "kullanılan indekslerle ilgili beklentileri ve sorguları gözden geçirin." -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" @@ -13240,44 +13228,44 @@ msgstr "" "şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği: %%%s, bu " "değer %%95'in üzerinde olmalıdır" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "Kullanılan MyISAM anahtar arabellek yüzdesi" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" "kullanılan %% MyISAM anahtar arabelleği: %%%s, bu değer %%95'in üzerinde " "olmalıdır" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "Bellekten indeks okumaları yüzdesi" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "MyISAM anahtar arabelleği kullanan indekslerin %% düşük." -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "{key_buffer_size} değerini arttırmanız gerekebilir." -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Bellekten indeks okumaları: %%%s, bu değer %%95'in üzerinde olmalıdır" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "Açık tablo oranı" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "Açılan tabloların oranı yüksek." -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." @@ -13285,16 +13273,16 @@ msgstr "" "Açılan tablolar pahalı disk G/Ç gerektirir. {table_open_cache} değerini " "arttırmak bunu önleyebilir." -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Açık tablo oranı: %s, bu değer saat başına 10'dan az olmalıdır" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "Kullanılan açık dosya sınırları yüzdesi" -#: libraries/advisory_rules.txt:330 +#: 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." @@ -13302,7 +13290,7 @@ msgstr "" "Açık dosyaların sayısı en fazla açık dosyaların sayısına yaklaşıyor. \"Çok " "fazla dosya açık\" hatası alabilirsiniz." -#: libraries/advisory_rules.txt:331 libraries/advisory_rules.txt:338 +#: 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." @@ -13310,58 +13298,58 @@ msgstr "" "{open_files_limit} artışını dikkate alın ve open_files_limit değerini " "değiştirdikten sonra yeniden başlatıldığında hata günlüğünü kontrol edin." -#: libraries/advisory_rules.txt:332 +#: 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 "Açık dosya sayısı sınıra %%%s kaldı. Değer %%85'in altında olmalıdır" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "Açık dosyaların oranı" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "Açılan dosyaların oranı yüksek." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Açık dosya oranı: %s, bu değer saat başına 5'ten az olmalıdır" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "Acil tablo kilitleri %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "Çok fazla tablo kilidi hemen onaylanmadı." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" "Sorguları uyarlayın ve/veya kilit beklemesini azaltmak için InnoDB kullanın." -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Ani tablo kilitleri: %%%s, bu değer %%95'in üzerinde olmalıdır" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "Tablo kilit bekleme oranı" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "Tablo kilit bekleme oranı: %s, bu değer saat başına 1'den az olmalıdır" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "İşlem önbelleği" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." @@ -13369,41 +13357,41 @@ msgstr "" "İşlem önbelleği etkisizleştirildi, yeni bağlantılardan MySQL'e daha fazla ek " "yük olarak sonuçlanır." -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "{thread_cache_size} > 0 ayarlayarak işlem önbelleğini etkinleştirin." -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "İşlem önbelleği 0'a ayarlı" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "İşlem önbelleği tavan oranı %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "İşlem önbelleği verimli değil." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "{thread_cache_size} değerini arttır." -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "İşlem önbelleği tavan oranı: %%%s, bu değer %%80'in üzerinde olmalıdır" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "İşlemler çalıştırmak için yavaş" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "Çalıştırmak için yavaş olan çok fazla işlem var." -#: libraries/advisory_rules.txt:373 +#: 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." @@ -13411,21 +13399,21 @@ msgstr "" "Bu, genel sistem aşırı yükü durumunda oldukça basit işlemlerde olsa genel " "olarak olur. Sistem yükünüzü dikkatlice izlemek isteyebilirsiniz." -#: libraries/advisory_rules.txt:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" "%s işlem başlamak için %s saniyeden daha uzun zaman aldı, bu 0 olmalıdır" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "Yavaş çalıştırma zamanı" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads 2s üzerinde" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" @@ -13433,16 +13421,16 @@ msgstr "" "Çalıştırması yavaş olan işlemleri doğru olarak saymak için slow_launch_time " "değerini 1s veya 2s olarak ayarlayın" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time %s'e ayarlı" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "Kullanılan bağlantıların yüzdesi" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." @@ -13450,7 +13438,7 @@ msgstr "" "Kullanılan bağlantıların en fazla miktarı max_connections değerine " "yaklaşıyor." -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13461,7 +13449,7 @@ msgstr "" "kapatmaz. Kodun veritabanı işleyicilerini düzgün bir şekilde kapattığından " "emin olun." -#: libraries/advisory_rules.txt:390 +#: libraries/advisory_rules.txt:397 #, php-format msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" @@ -13469,15 +13457,15 @@ msgstr "" "Max_used_connections, max_connections'ın %%%s değerinde, değer %%80'in " "altında olmalıdır" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "Durdurulan bağlantıların yüzdesi" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Çok fazla bağlantı durduruldu." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. Bu makale kaynağın izini aramakta yardımcı " "olabilir." -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "Tüm bağlantıların %%%s'i durduruldu. Bu değer %%1'in altında olmalıdır" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "Durdurulan bağlantıların oranı" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" "Durdurulan bağlantıların oranı %s, bu değer saat başına 1'den az olmalıdır" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "Durdurulan istemcilerin yüzdesi" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "Çok fazla istemci durduruldu." -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13524,42 +13512,42 @@ msgstr "" "işleyicisine düzgün bir şekilde yaklaşmadığından dolayı olabilir. Ağınızı ve " "kodunuzu kontrol edin." -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "Tüm istemcilerin %%%s'i durduruldu. Bu değer %%2'nin altında olmalıdır" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "Durdurulan istemcilerin oranı" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "" "Durdurulan istemcilerin oranı %s, bu değer saat başına 1'den az olmalıdır" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB etkisizleştirildi mi?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "Etkinleştirilmiş InnoDB'ye sahip değilsiniz." -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "InnoDB genellikle tablo motorları için en iyi seçimdir." -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb 'value'ya ayarlı" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB günlük boyutu" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." @@ -13567,7 +13555,7 @@ msgstr "" "InnoDB arabellek havuzu ile ilgili olarak InnoDB günlük dosyası boyutu uygun " "bir boyut değil." -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13592,7 +13580,7 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">bu blog girişine bakın" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " @@ -13601,15 +13589,15 @@ msgstr "" "InnoDB arabellek havuzu boyutuyla ilgili olan InnoDB günlük boyutunuz %%%s, " "bu %%20'nin altında olmamalıdır" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "En fazla InnoDB günlük boyutu" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB günlük dosyası boyutu yetersiz şekilde büyük." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13633,20 +13621,20 @@ msgstr "" "mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-" "proper-way.html\">bu blog girişine bakın" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Kesin InnoDB günlük boyutunuz %s MiB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB arabellek havuzu boyutu" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "InnoD arabellek havuzunuz oldukça küçük." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13671,7 +13659,7 @@ msgstr "" "Aynı zamanda bu makaleye bakın" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13684,15 +13672,15 @@ msgstr "" "tablolara sahip değilseniz ya da aynı makinede diğer hizmetler çalışıyorsa " "bu sisteminiz için tamamen yeterli olabilir." -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM eşzamanlı eklemeler" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "concurrent_insert'ü 1'e ayarlayarak bunu etkinleştirin" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL Belgesine " "bakın" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "KiB sent since last refresh" +#~ msgstr "Son yenilemeden bu yana gönderilmiş KiB" + +#~ msgid "KiB received since last refresh" +#~ msgstr "Son yenilemeden bu yana alınmış KiB" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Sunucu trafiği (KiB olarak)" + +#~ msgid "Connections since last refresh" +#~ msgstr "Son yenilemeden bu yana bağlantılar" + +#~ msgid "Questions since last refresh" +#~ msgstr "Son yenilemeden bu yana sorular" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)" + +#~ msgid "Runtime Information" +#~ msgstr "Çalışma Süresi Bilgisi" + +#~ msgid "Number of data points: " +#~ msgstr "Veri noktası sayısı: " + +#~ msgid "Refresh rate: " +#~ msgstr "Yenileme oranı: " + +#~ msgid "Run analyzer" +#~ msgstr "Çözümleyiciyi çalıştır" + #~ msgid "Show more actions" #~ msgstr "Daha fazla eylem göster" diff --git a/po/tt.po b/po/tt.po index 9e4a956204..d460d9dbc1 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-09-05 10:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.2\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -46,7 +46,7 @@ msgstr "" msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -76,21 +76,21 @@ msgstr "Ezläw" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Äydä" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Açıqlama" @@ -111,17 +111,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Biremlek açıqlaması: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -135,14 +135,14 @@ msgstr "Tüşämä açıqlaması" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -160,11 +160,11 @@ msgstr "Alan iseme" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Töre" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -176,11 +176,11 @@ msgstr "Töre" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Buş" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -191,11 +191,11 @@ msgstr "Buş" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Töpcay" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -204,7 +204,7 @@ msgstr "Töpcay" msgid "Links to" msgstr "Bonı belän bäyläneş:" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -217,7 +217,7 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -235,12 +235,12 @@ msgstr "Açıqlama" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Yuq" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -263,8 +263,8 @@ msgstr "Yuq" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Äye" @@ -322,7 +322,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Tüşämä" @@ -342,7 +342,7 @@ msgstr "Küläme" msgid "in use" msgstr "totıla" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -350,7 +350,7 @@ msgstr "totıla" msgid "Creation" msgstr "Yasalışı" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -358,7 +358,7 @@ msgstr "Yasalışı" msgid "Last update" msgstr "Soñğı yañartılu" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -414,7 +414,7 @@ msgstr "Tüşämä tikşerü" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Biremlek" @@ -423,18 +423,18 @@ msgstr "Biremlek" msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Torış" @@ -449,7 +449,7 @@ msgstr "Eş" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Kürsät" @@ -465,11 +465,11 @@ msgstr "" msgid "Drop" msgstr "Beter" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" @@ -559,49 +559,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "%s alan östäw" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -611,17 +611,17 @@ msgstr "" msgid "Add a linestring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" @@ -753,8 +753,9 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Database server" msgstr "Qullanuçı biremlege" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -775,7 +776,7 @@ msgstr "Protokol söreme" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Qullanuçı" @@ -1031,12 +1032,12 @@ msgstr "Bu xoquqlarnı yöklä" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1046,17 +1047,17 @@ msgstr "" msgid "Edit" msgstr "Tözätü" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Saylaw" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy msgid "Live query chart" msgstr "SQL-soraw" @@ -1068,13 +1069,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1089,55 +1091,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Server Saylaw" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Proseslar" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Totaşular" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -msgid "Query statistics" -msgstr "Kerem Nöfüse" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1145,218 +1110,223 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Soraw alxätere" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Soraw alxätere" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Soraw alxätere" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Tulayım" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Bufer Pulı" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Tulayım" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Buş bit sanı" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Totaşular" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Proseslar" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bayt" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tüşämä" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy msgid "Questions" msgstr "Farsíça" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Taşım" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Buş" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1364,529 +1334,531 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Biremgä saqlıysı" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Açıq" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Sünek" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Yomğaq başlığı" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy msgid "Analysing logs" msgstr "Cirle" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Uquğa soraw" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy msgid "Jump to Log table" msgstr "Biremleklär yuq" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Biremleklär yuq" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL Centekläw" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Waqıt" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Tulayım" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Soraw qaytarmasın eşkärtü" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tüşämä" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Bilgelämä" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add %s field(s)" msgid "Edit chart" msgstr "%s alan östäw" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy msgid "Series" msgstr "SQL-soraw" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy msgid "Log table filter options" msgstr "Biremlek saqlaw köyläneşe" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 #, fuzzy msgid "Filter" msgstr "Alan" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy msgid "Sum of grouped rows:" msgstr "Tezelgän yazma sanı bu." -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Tulayım" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy msgid "Loading logs" msgstr "Cirle" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Sorawnı Yañart" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Qullanma" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Qullanma" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy msgid "Loading" msgstr "Cirle" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Proseslar" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Biremlek saylanmağan." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Biremlekne bolay atap quy" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Bilgelämä" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Tüşämä qullanıp" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "Tezeşlär" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Sırlı kürsät" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Yat tezeş tikşerüen sünderep" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Açıq" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Sünek" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Ezläw" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy msgid "Hide search results" msgstr "SQL-soraw" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy msgid "Show search results" msgstr "SQL-soraw" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Küzätü" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" Beterü" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Alannar sanı" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Yaña qullanuçı östäw" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy msgid "Hide query box" msgstr "SQL-soraw" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy msgid "Show query box" msgstr "SQL-soraw" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Üzgärt" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1895,220 +1867,225 @@ msgstr "%d digäne yazma sanı öçen kileşmi." msgid "Save" msgstr "Saqla" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy msgid "Hide search criteria" msgstr "SQL-soraw" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Ezläw" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Add/Delete Field Columns" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Soraw qaytarmasın eşkärtü" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s alan östäw" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy msgid "Go to link" msgstr "Biremleklär yuq" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Alan iseme" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Yazma sanı:" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Barısın kürsät" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "Tezeşlär" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2116,30 +2093,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy msgid "Done" msgstr "Eçtälek" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2147,96 +2124,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "May" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2244,78 +2221,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dek" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2323,113 +2300,113 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Buş" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2482,16 +2459,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "sekund sayın" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minut sayın" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "säğät sayın" @@ -2517,7 +2494,7 @@ msgstr "" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Artıp" @@ -2526,7 +2503,7 @@ msgstr "Artıp" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Kimep" @@ -2645,7 +2622,7 @@ msgstr "Tüşämä eçtälegen çığaru" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Sal" @@ -2849,7 +2826,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Üter" @@ -2904,12 +2881,13 @@ msgstr "Saylap Beter" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" @@ -2917,7 +2895,7 @@ msgstr "Export" msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3002,16 +2980,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 msgid "Javascript must be enabled past this point" msgstr "" @@ -3023,21 +3001,21 @@ msgstr "Açqıç bilgelänmäde!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Qabatlanu sanı" @@ -3047,13 +3025,13 @@ msgstr "Qabatlanu sanı" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Tezü cayı" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 #, fuzzy msgid "Comment" msgstr "Açıqlama" @@ -3097,7 +3075,7 @@ msgstr "Qaraş" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Tözeleş" @@ -3171,37 +3149,38 @@ msgstr "Cibärelde" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Qullanuçı" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Binar köndälek" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Engine" @@ -3256,6 +3235,106 @@ msgstr "Berär genä dä tüşämä yuq" msgid "There are no recent tables" msgstr "Tüşämä tikşerü" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-soraw" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Eşkärtkeç" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Soraw alxätere" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Ceplär" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Çaqlı birem" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Kiçerelgän östäw" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Tezeş alxätere" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Bäylär" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Tezü" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Tüşämä" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Eş-ara idäräçese" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +#, fuzzy +msgid "Files" +msgstr "Alan" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Tüşämälärne yabıp beteräse" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Açıq tüşämä tezmäse" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Soraw alxäteren awdar" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB Torışı" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +msgid "Query statistics" +msgstr "Kerem Nöfüse" + +#: 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." @@ -3349,7 +3428,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Bäyä" @@ -3753,11 +3832,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-soraw" - #: libraries/Util.class.php:710 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:292 @@ -3792,7 +3866,7 @@ msgid "Create PHP Code" msgstr "PHP-Kod yasa" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Yañart" @@ -3891,13 +3965,6 @@ msgstr "Bastır" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Tüşämä" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3940,63 +4007,63 @@ msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6185,8 +6252,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 #, fuzzy msgid "Username" msgstr "Atama:" @@ -6859,10 +6926,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB Torışı" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Bufer Pul Totılğanlığı" @@ -7541,18 +7604,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "tüşämä adı" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7659,17 +7722,17 @@ msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Tözeleşen genä" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Eçtälegen genä" @@ -8100,8 +8163,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Host" @@ -8690,7 +8752,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Üzgärmä" @@ -9255,7 +9317,7 @@ msgstr "Üzençälek" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Östämä" @@ -9956,7 +10018,7 @@ msgstr "Biremleklär yuq" msgid "Check tables having overhead" msgstr "Check overheaded" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10331,7 +10393,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Ğädäti Çinçä" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10414,41 +10476,41 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "bit" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Biremdän alu" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yaña tezeş yaratu" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İreşü iseme" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10572,16 +10634,11 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:107 server_status.php:669 -#, fuzzy -msgid "Files" -msgstr "Alan" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -10665,7 +10722,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 #, fuzzy msgid "Version" msgstr "Farsíça" @@ -10726,10 +10783,6 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10862,897 +10915,173 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status.php:657 -msgid "Handler" -msgstr "Eşkärtkeç" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Soraw alxätere" - -#: server_status.php:659 -msgid "Threads" -msgstr "Ceplär" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Çaqlı birem" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Kiçerelgän östäw" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Tezeş alxätere" - -#: server_status.php:664 -msgid "Joins" -msgstr "Bäylär" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Tezü" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Eş-ara idäräçese" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Tüşämälärne yabıp beteräse" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Açıq tüşämä tezmäse" - -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Soraw alxäteren awdar" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Eşläw Torışı" - -#: server_status.php:830 -msgid "All status variables" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:832 -msgid "Monitor" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:834 -msgid "Advisor" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:848 server_status.php:877 +#: server_status.php:122 #, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Alannar sanı" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Yañart" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Alan" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Sersüzen üzgärtäse tügel" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Açıq tüşämä tezmäse" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Açıq tüşämä tezmäse" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" +msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Soraw töre" +#: server_status.php:139 +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:966 +#: server_status.php:149 +msgid "Received" +msgstr "Alındı" + +#: server_status.php:168 +msgid "Sent" +msgstr "Cibärelde" + +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:229 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:253 +msgid "Aborted" +msgstr "Özderelde" + +#: server_status.php:313 +msgid "ID" +msgstr "ID" + +#: server_status.php:329 +msgid "Command" +msgstr "Ämer" + +#: server_status_advisor.php:29 #, fuzzy msgid "Instructions" msgstr "Funksí" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Cömlä" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -#, fuzzy -msgid "Replication status" -msgstr "Bäyläneşlär" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Alındı" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Cibärelde" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Özderelde" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Ämer" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -#, fuzzy -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "Köndälek biremenä yazılğan bayt sanı bu." - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -#, fuzzy -msgid "The number of pages currently dirty." -msgstr "Yaratılğan bit sanı bu." - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "Buş bitlär sanı." - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -#, fuzzy -msgid "The current number of pending reads." -msgstr "Uqılğan bit sanı bu." - -#: server_status.php:1567 -#, fuzzy -msgid "The current number of pending writes." -msgstr "Yazılğan bit sanı bu." - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -#, fuzzy -msgid "The total number of data reads." -msgstr "Uqılğan bit sanı bu." - -#: server_status.php:1570 -#, fuzzy -msgid "The total number of data writes." -msgstr "Yazılğan bit sanı bu." - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -#, fuzzy -msgid "The number of log write requests." -msgstr "Tezelgän yazma sanı bu." - -#: server_status.php:1576 -#, fuzzy -msgid "The number of physical writes to the log file." -msgstr "Köndälek biremenä yazılğan bayt sanı bu." - -#: server_status.php:1577 -#, fuzzy -msgid "The number of fsync() writes done to the log file." -msgstr "Köndälek biremenä yazılğan bayt sanı bu." - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "Köndälek biremenä yazılğan bayt sanı bu." - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "Yaratılğan bit sanı bu." - -#: server_status.php:1582 -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 "" -"InnoDB yasağanda bit öçen berketelgän küläme (töcay bäyäse 16KB). Many " -"values are counted in pages; the page size allows them to be easily " -"converted to bytes." - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "Uqılğan bit sanı bu." - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "Yazılğan bit sanı bu." - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "Yöklänğan birem tözeleşe" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -#, fuzzy -msgid "The number of physical writes of a key block to disk." -msgstr "Köndälek biremenä yazılğan bayt sanı bu." - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "Açıq toruçı birem sanı." - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "Açıq toruçı tüşämä sanı." - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "Alxätergä turı kilü sanı bu." - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "Tezelgän yazma sanı bu." - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "Biredä açıq bulğan totaşu sanı." - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Key cache" -msgid "Thread cache hit rate (calculated value)" -msgstr "Tezeş alxätere" - -#: server_status.php:1640 -#, fuzzy -msgid "The number of threads that are not sleeping." -msgstr "Açıq toruçı birem sanı." - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şmb" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s alan östäw" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11761,7 +11090,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11769,18 +11098,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11788,11 +11117,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11800,105 +11129,739 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Biremlekne bolay atap quy" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tüşämä Saylaw" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Tüşämä adı yaraqsız" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy msgid "Add this series" msgstr "Yaña qullanuçı östäw" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy msgid "Series in Chart:" msgstr "SQL-soraw" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy msgid "Log statistics" msgstr "Kerem Nöfüse" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tüşämä Saylaw" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Soraw töre" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekund sayın" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "totıla" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Cömlä" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Alan" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Sersüzen üzgärtäse tügel" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Açıq tüşämä tezmäse" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Açıq tüşämä tezmäse" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Bäyläneşlär" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +#, fuzzy +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "Köndälek biremenä yazılğan bayt sanı bu." + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +#, fuzzy +msgid "The number of pages currently dirty." +msgstr "Yaratılğan bit sanı bu." + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "Buş bitlär sanı." + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +#, fuzzy +msgid "The current number of pending reads." +msgstr "Uqılğan bit sanı bu." + +#: server_status_variables.php:494 +#, fuzzy +msgid "The current number of pending writes." +msgstr "Yazılğan bit sanı bu." + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +#, fuzzy +msgid "The total number of data reads." +msgstr "Uqılğan bit sanı bu." + +#: server_status_variables.php:503 +#, fuzzy +msgid "The total number of data writes." +msgstr "Yazılğan bit sanı bu." + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +#, fuzzy +msgid "The number of log write requests." +msgstr "Tezelgän yazma sanı bu." + +#: server_status_variables.php:523 +#, fuzzy +msgid "The number of physical writes to the log file." +msgstr "Köndälek biremenä yazılğan bayt sanı bu." + +#: server_status_variables.php:526 +#, fuzzy +msgid "The number of fsync() writes done to the log file." +msgstr "Köndälek biremenä yazılğan bayt sanı bu." + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "Köndälek biremenä yazılğan bayt sanı bu." + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "Yaratılğan bit sanı bu." + +#: server_status_variables.php:541 +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 "" +"InnoDB yasağanda bit öçen berketelgän küläme (töcay bäyäse 16KB). Many " +"values are counted in pages; the page size allows them to be easily " +"converted to bytes." + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "Uqılğan bit sanı bu." + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "Yazılğan bit sanı bu." + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "Yöklänğan birem tözeleşe" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +#, fuzzy +msgid "The number of physical writes of a key block to disk." +msgstr "Köndälek biremenä yazılğan bayt sanı bu." + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "Açıq toruçı birem sanı." + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "Açıq toruçı tüşämä sanı." + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "Alxätergä turı kilü sanı bu." + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "Tezelgän yazma sanı bu." + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "Biredä açıq bulğan totaşu sanı." + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Key cache" +msgid "Thread cache hit rate (calculated value)" +msgstr "Tezeş alxätere" + +#: server_status_variables.php:758 +#, fuzzy +msgid "The number of threads that are not sleeping." +msgstr "Açıq toruçı birem sanı." + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12478,149 +12441,149 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Soraw töre" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Biremleklär yuq" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server söreme" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 #, fuzzy msgid "Create version" msgstr "Server söreme" @@ -12764,12 +12727,12 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy msgid "Slow query logging" msgstr "SQL-soraw" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12785,131 +12748,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Tüşämä Saylaw" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format msgid "Current version: %s" msgstr "Server söreme" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy msgid "Minor Version" msgstr "Farsíça" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "You should upgrade to %s %s or later." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Açıqlama" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL bilgelämäse" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Soraw alxätere" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Bu server endäşmi" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12917,23 +12890,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Soraw alxätere" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Soraw alxätere" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "%s tüşämä" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13324,309 +13297,309 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy msgid "Percentage of index reads from memory" msgstr "Tulı Sorawlar Kürsät" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy msgid "Rate of table open" msgstr "Yaña Bit yaratu" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy msgid "The rate of opening tables is high." msgstr "Yazılğan bit sanı bu." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Yöklänğan birem tözeleşe" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Yöklänğan birem tözeleşe" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy msgid "The rate of opening files is high." msgstr "Yazılğan bit sanı bu." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Tezü bufer küläme" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Tezü bufer küläme" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Tezü bufer küläme" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Tezeş alxätere" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Key cache" msgid "The thread cache is set to 0" msgstr "Tezeş alxätere" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Key cache" msgid "Thread cache hit rate %%" msgstr "Tezeş alxätere" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "The server is not responding" msgid "Thread cache is not efficient." msgstr "Bu server endäşmi" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Tezü bufer küläme" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy msgid "Threads that are slow to launch" msgstr "Açıq toruçı birem sanı." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy msgid "There are too many threads that are slow to launch." msgstr "Açıq toruçı birem sanı." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" msgstr "Açıq toruçı birem sanı." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "Totaşular" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "Totaşular" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Bufer pul olılığı" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13762,24 +13735,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Bufer pul olılığı" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Bufer pul olılığı" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13794,7 +13767,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13803,25 +13776,48 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Server Saylaw" + +#~ msgid "Runtime Information" +#~ msgstr "Eşläw Torışı" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Alannar sanı" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Yañart" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Soraw töre" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ug.po b/po/ug.po index f12bcd5e4f..2adee9e574 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Tracking is not active." msgid "Query cache efficiency" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Latched pages" msgid "Query cache usage" msgstr "قۇلۇپلانغان بەت" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Latched pages" msgid "Query cache used" msgstr "قۇلۇپلانغان بەت" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KiB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "يىغىندىسى" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "ئاق(قۇرۇق)بەت" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "بايت" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KiB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1254,83 +1224,84 @@ msgid "%d table(s)" msgstr "%s جەدۋەل" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "يوق" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1338,527 +1309,529 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ھۆججەتنى باشقا ساقلاش" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "تاقالدى" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "دوكلات تېمىسى" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "No Privileges" msgid "Analysing logs" msgstr "ھوقۇقسىز" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "ئۇقۇش تەلىپى" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Jump to Log table" msgstr "%s جەدۋەل" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL ئىزاھى" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "ۋاقىت" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "يىغىندىسى" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "ئاساسىي مەزمۇن" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "جەدۋەل" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Report title" msgid "Chart" msgstr "دوكلات تېمىسى" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Routines" msgid "Edit chart" msgstr "دائىملىق" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "Select All" msgid "Series" msgstr "ھەممىنى تاللاش" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of columns" msgid "Sum of grouped rows:" msgstr "سۆزلەم سانى" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "يىغىندىسى" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "No Privileges" msgid "Loading logs" msgstr "ھوقۇقسىز" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Remove database" msgid "Reload page" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "كىرگۈزۈش" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Import monitor configuration" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "يېڭلاش" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "قوللانما" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "تەپسىلاتلار..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "بىكار قىلىش" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Remove database" msgid "Reload Database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one column." msgid "Table must have at least one column" msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "تېزىسلار" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Indexes" msgid "Show indexes" msgstr "تېزىسلار" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 msgid "Foreign key check:" msgstr "" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 msgid "(Enabled)" msgstr "" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "تاقالدى" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ئىزدەش" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "SQL query" msgid "Show search results" msgstr "SQL سورىقى" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "كۆزەت" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "ئۆچۈرۈش" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of columns" msgid "Values for column %s" msgstr "سۆزلەم سانى" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "SQL query" msgid "Show query box" msgstr "SQL سورىقى" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "ئۆزگەرتتىش" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1867,214 +1840,219 @@ msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "SQL query" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "ئىزدەش" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "SQL query" msgid "Query results" msgstr "SQL سورىقى" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add/Delete columns" msgid "Add columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "بىر چىكىپ تاللاڭ" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Columns terminated by" msgid "Copy column name" msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Sort" msgid "Show data row(s)" msgstr "تۈرلەش" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "تېزىسلار" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2082,13 +2060,13 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -2096,18 +2074,18 @@ msgid "up to date" msgstr "%s جەدۋەل" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "تامام" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2115,149 +2093,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "ھۇت" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "نورۇز" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "باھار" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "6-ئاي" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "7-ئاي" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "8-ئاي" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "9-ئاي" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "10-ئاي" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "11-ئاي" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2265,97 +2243,97 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "ھەپتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "يوق" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "سائەت" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "سېكنۇت" @@ -2406,16 +2384,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2441,7 +2419,7 @@ msgstr "خەتنىڭ چوڭ-كىچىكلىكى" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "ئارتىش" @@ -2450,7 +2428,7 @@ msgstr "ئارتىش" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "كېمىيىش" @@ -2565,7 +2543,7 @@ msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "ئۆچۈرۈش" @@ -2755,7 +2733,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2810,12 +2788,13 @@ msgstr "ھەممىنى تاللاش" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" @@ -2823,7 +2802,7 @@ msgstr "چىقىرىش" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2910,16 +2889,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2933,21 +2912,21 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "تۈپ سان" @@ -2957,13 +2936,13 @@ msgstr "تۈپ سان" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "تاسقاش" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "ئىزاھات" @@ -3006,7 +2985,7 @@ msgstr "قاراش" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "تۈزۈلىشى" @@ -3079,34 +3058,35 @@ msgstr "ھادىسە" msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "كۆچۈرۈش" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3157,6 +3137,104 @@ msgstr "ئىزلانغان جەدۋەل" msgid "There are no recent tables" msgstr "ئىزلانغان جەدۋەل" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL سورىقى" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3250,7 +3328,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3647,11 +3725,6 @@ msgstr "" msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL سورىقى" - #: libraries/Util.class.php:710 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:292 @@ -3686,7 +3759,7 @@ msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "يېڭلاش" @@ -3787,13 +3860,6 @@ msgstr "يازدۇر" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3834,24 +3900,24 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to read configuration file" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3861,38 +3927,38 @@ msgid "" "configuration file!" msgstr "$cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -5975,8 +6041,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6648,10 +6714,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7306,18 +7368,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7417,17 +7479,17 @@ msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "تۈزىلىشىنىلا" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "ئۇچۇرنىلا" @@ -7844,8 +7906,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -8370,7 +8431,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -8934,7 +8995,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9608,7 +9669,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -9952,7 +10013,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10034,35 +10095,35 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "بەت سانى" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "Keyname" msgid "New page name: " msgstr "قىممەت ئىسمى" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10180,15 +10241,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10270,7 +10327,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10329,10 +10386,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10462,871 +10515,168 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "بۇيرۇق" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of columns" -msgid "Number of data points: " -msgstr "سۆزلەم سانى" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "يېڭلاش" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "مۇناسىۋىتى" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query" -msgid "Run analyzer" -msgstr "تەكشۈرۈش" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "بۇيرۇق" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "كىرگۈزگەن ھۆججەت شەكلى" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "ئىزلاش ئاكتىپ ئەمەس" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "دائىملىق" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11335,7 +10685,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11343,18 +10693,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11362,11 +10712,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11374,104 +10724,717 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select All" msgid "Select series:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Routines" msgid "Add this series" msgstr "دائىملىق" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "سېكنۇت" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "مىنۇت" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "مۇناسىۋىتى" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "كىرگۈزگەن ھۆججەت شەكلى" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "ئىزلاش ئاكتىپ ئەمەس" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12039,150 +12002,150 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "تەكشۈرۈش" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "نەشىرنى قۇىماق" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "نەشىرنى قۇىماق" @@ -12325,13 +12288,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "SQL query" msgid "Slow query logging" msgstr "SQL سورىقى" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -12347,131 +12310,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select All" msgid "Release Series" msgstr "ھەممىنى تاللاش" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "نەشىرنى قۇىماق" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "PHP Version" msgid "Minor Version" msgstr "PHPنۇسخىسى" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "ئىزاھات" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Latched pages" msgid "Query cache disabled" msgstr "قۇلۇپلانغان بەت" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12479,23 +12452,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Latched pages" msgid "Query caching method" msgstr "قۇلۇپلانغان بەت" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Latched pages" msgid "Suboptimal caching method." msgstr "قۇلۇپلانغان بەت" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s جەدۋەل" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12887,252 +12860,252 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of MyISAM key buffer used" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of index reads from memory" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create" msgid "Rate of table open" msgstr "قۇرۇش" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:324 +#: 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:325 -#, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used open files limit" -msgstr "كىرگۈزگەن ھۆججەت شەكلى" - -#: libraries/advisory_rules.txt:330 -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:331 libraries/advisory_rules.txt:338 -msgid "" -"Consider increasing {open_files_limit}, and check the error log when " -"restarting after changing open_files_limit." -msgstr "" - #: libraries/advisory_rules.txt:332 #, php-format -msgid "" -"The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" -msgid "Rate of open files" +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 +#, fuzzy +#| msgid "Format of imported file" +msgid "Rate of open files" +msgstr "كىرگۈزگەن ھۆججەت شەكلى" + +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "Tracked tables" msgid "Threads that are slow to launch" msgstr "ئىزلانغان جەدۋەل" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "Tracked tables" msgid "There are too many threads that are slow to launch." msgstr "ئىزلانغان جەدۋەل" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "Tracked tables" msgid "" @@ -13140,47 +13113,47 @@ msgid "" "launch" msgstr "ئىزلانغان جەدۋەل" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used connections" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of aborted connections" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13309,20 +13282,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13337,7 +13310,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13346,25 +13319,45 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "مۇلازىمىتېر تاللاش" + +#, fuzzy +#~| msgid "Number of columns" +#~ msgid "Number of data points: " +#~ msgstr "سۆزلەم سانى" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "يېڭلاش" + +#, fuzzy +#~| msgid "Query" +#~ msgid "Run analyzer" +#~ msgstr "تەكشۈرۈش" + #~ msgid "Click to select" #~ msgstr "بىر چىكىپ تاللاڭ" diff --git a/po/uk.po b/po/uk.po index c40d52b452..b1abc4b038 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,20 +3,20 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:03+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Ukrainian " -"\n" -"Language: uk\n" +"Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "Шукати" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "Вперед" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Ім'я ключа" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Опис" @@ -115,17 +115,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Коментарі таблиці" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -139,12 +139,12 @@ msgstr "Коментарі таблиці" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -162,11 +162,11 @@ msgstr "Стовпчик" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -178,11 +178,11 @@ msgstr "Тип" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -193,11 +193,11 @@ msgstr "Нуль" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "По замовчуванню" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -206,7 +206,7 @@ msgstr "По замовчуванню" msgid "Links to" msgstr "Лінки до" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -219,7 +219,7 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -237,12 +237,12 @@ msgstr "Коментарі" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Ні" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -265,8 +265,8 @@ msgstr "Ні" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Так" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Таблиця" @@ -341,7 +341,7 @@ msgstr "Розмір" msgid "in use" msgstr "використовується" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "використовується" msgid "Creation" msgstr "Створення" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "Створення" msgid "Last update" msgstr "Останнє оновлення" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -410,7 +410,7 @@ msgstr "Відслідковувані таблиці" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "БД" @@ -418,17 +418,17 @@ msgstr "БД" msgid "Last version" msgstr "Остання версія" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Створено" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Оновлено" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Статус" @@ -443,7 +443,7 @@ msgstr "Дія" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Показати" @@ -460,12 +460,12 @@ msgid "Drop" msgstr "Знищити" # активна -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "активний" # не активна -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "не активний" @@ -473,11 +473,11 @@ msgstr "не активний" msgid "Versions" msgstr "Версії" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Звіт трекінгу (відстеження)" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Знімок структури" @@ -546,45 +546,45 @@ msgstr "Використовуйте OpenStreetMaps як базовий плас msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "Геометрія" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 msgid "X" msgstr "X" #: gis_data_editor.php:210 gis_data_editor.php:238 gis_data_editor.php:293 -#: gis_data_editor.php:366 js/messages.php:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "Y" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "Точка %d" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 msgid "Add a point" msgstr "Додати точку" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "Зовнішнє кільце" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "Внутрішнє кільце" @@ -592,15 +592,15 @@ msgstr "Внутрішнє кільце" msgid "Add a linestring" msgstr "Додати linestring" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "Додати внутрішнє кільце" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "Полігон" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 msgid "Add a polygon" msgstr "Додати полігон" @@ -753,8 +753,9 @@ msgstr "Загальні можливості" msgid "Database server" msgstr "Бази Даних" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервер" @@ -775,7 +776,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Користувач" @@ -1012,12 +1013,12 @@ msgstr "Перезавантаження прав" msgid "Removing Selected Users" msgstr "Видалення відмічених користувачів" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Закрити" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1027,15 +1028,15 @@ msgstr "Закрити" msgid "Edit" msgstr "Редагувати" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 msgid "Live traffic chart" msgstr "Графік трафіку в реальному часі" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "Графік підкл./процесів в реальному часі" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 msgid "Live query chart" msgstr "Графік запиту в реальному часі" @@ -1046,13 +1047,14 @@ msgstr "Статичні дані" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "Інше" @@ -1067,48 +1069,14 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "KiB надіслано на час останнього оновлення" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "KiB отримано на час останнього оновлення" - -#: js/messages.php:78 -msgid "Server traffic (in KiB)" -msgstr "Трафік серверу (в KiB)" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "З'єднань на час останнього оновлення" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Процесів" - -#: js/messages.php:81 msgid "Connections / Processes" msgstr "З'єднань / Процесів" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "Questions на час останнього оновлення" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "Questions (виконані оператори сервером)" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "Статистика запиту" - -#: js/messages.php:90 +#: js/messages.php:79 msgid "Local monitor configuration incompatible" msgstr "Несумісна конфігурація локального монітору" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1120,196 +1088,201 @@ msgstr "" "імовірно, що ваша поточна конфігурація більше не буде працювати. Будь ласка, " "встановіть вашу конфігурацію за замовчанням в меню Установки." -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "Ефективність кешу запитів" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "Використання кешу запитів" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "Використанний кеш запитів" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "Використання CPU системою" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "Пам'ять системи" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "SWAP системи" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "Середнє навантаження" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "Загальна пам'ять" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "Пам'яті кешовано" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "Пам'яті буферезовано" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "Пам'яті вільно" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "Пам'яті використано" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "Загальний Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "Кешований Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "Використаний Swap" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "Вільний Swap" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Байтів надіслано" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "Байтів отримано" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "З'єднань" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Процесів" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Б" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d таблиця(таблиць)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "Налаштування" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "Вилучити діаграму" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "Редагувати назву та позначки" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "Додати графік до сітки" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "Будь ласка додайте щонайменше одну змінну до ряду" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Жодного" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "Відновити монітор" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "Призупинити монітор" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log та slow_query_log ввімкнені" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log ввімкнений." -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log ввімкнений." -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "general_log та slow_query_log вимкнені." -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output не встановлений для TABLE." -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output встановлений для TABLE." -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1320,12 +1293,12 @@ msgstr "" "d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time встановлено на %d секунди(секунд)." -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1334,30 +1307,30 @@ msgstr "" "будуть встановлені за замовчуванням:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "Встановити log_output в %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "Увімкнено %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "Вимкнено %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "Встановити long_query_time у %d секунд" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1365,57 +1338,57 @@ msgstr "" "Ви не можете змінити ці змінні. Будь ласка увійдіть як root або зв'яжіться з " "вашим адміністратором БД." -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "Змінити налаштування" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "Заголовок діаграми" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "Диференціальний" -#: js/messages.php:167 +#: js/messages.php:154 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Розділено по %s:" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "Модуль" -#: js/messages.php:170 +#: js/messages.php:157 #, fuzzy msgid "From slow log" msgstr "Із повільного журналу (slow log)" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "Із загального журналу" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "Журнал завантаження" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "Аналіз та завантаження журналів. Це може зайняти деякий час." -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "Скасувати запит" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1425,7 +1398,7 @@ msgstr "" "тільки сам SQL запит був використаний в якості критеріїв класифікації, так " "що інші атрибути запиту, такі як час початку, можуть відрізнятися." -#: js/messages.php:176 +#: js/messages.php:163 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1434,108 +1407,108 @@ msgstr "" "Оскільки було обрано груповання запитів INSERT, INSERT запити в тій же " "таблиці також групуються разом, незважаючи на вставлені дані." -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "Журнальні дані завантажені. Запити виконані в цей проміжок часу:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "Перейти до таблиці Log" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "БД відсутні" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "Журнал проаналізований, але даних в цей проміжок часу не знайдено." -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "Аналізується…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "Тлумачити вихідні дані" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Час" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "Загальний час:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "Результати профілювання" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Таблиця" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Набір символів" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add into comments" msgid "Edit chart" msgstr "Додати коментар" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL запити" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "опції фільтрів таблиці Log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Фільтр" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "Фільтрувати запити по слову/регулярному_виразу:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Групувати запити, ігноруючи змінні в операторі WHERE" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "Число згрупованих рядків:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "Разом:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "Журнал завантаження" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "Оновлення монітору не вдалося" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1545,265 +1518,267 @@ msgstr "" "швидше за все, тому що ваша сесія закінчилася. Перезавантаження сторінки і " "повторного введення облікових даних повинно допомогти." -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "Перезавантажити сторінку" -#: js/messages.php:208 +#: js/messages.php:195 #, fuzzy msgid "Affected rows:" msgstr "Рядки що зазнали змін:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Невдале зчитування файлу конфігурації. Схоже що це не валідний JSON код." -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Неможливо побудувати сітку даних з імпортованою конфігурацією. Відновлення " "конфігурації за замовчуванням…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імпорт" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Не вдається імпортувати конфігурацію" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "Аналізувати запит" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "Система порад" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "Можливі проблеми з продуктивністю" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "Пропозиція" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "Рекомендація" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "Деталі правила" -#: js/messages.php:225 +#: js/messages.php:212 msgid "Justification" msgstr "Правомірність" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "Використана змінна / формула" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Скасувати" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "Завантаження" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "Обробка запиту" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "Помилка при обробці запиту" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Жодної бази даних не вибрано." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "Видалення стовпчика" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "Додавання Головного Ключа" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "Клікніть для пропуску цьго повідомлення" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "Перейменування баз даних" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "Перезавантаження бази даних" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "Копіювання бази даних" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "Зміна Кодування" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "Таблиця повинна мати принаймі один стовпчик" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "Вставити таблицю" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "Сховати індекси" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "Показати індекси" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Відключити перевірки зовнішніх ключів" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "дозволено" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "заблоковано" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "Пошук" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "Сховати результати пошуку" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "Показати результати пошуку" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "Перегляд" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "Видалення" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Визначення збереженої функції має містити оператор RETURN!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "Значення для колонки %s" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "Значення для нового стовпчика" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "Введіть кожне значення в окреме поле" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "Додати %d значення(ь)" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" "Примітка: Якщо файл містить кілька таблиць, то вони будуть об'єднані в одну" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "Сховати блок запиту" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "Показати блок запиту" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Змінити" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "Час виконання запиту" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d неправильний номер рядка." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1812,95 +1787,95 @@ msgstr "%d неправильний номер рядка." msgid "Save" msgstr "Зберегти" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "Сховати критерії пошуку" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "Збільшити Пошук" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "Кожна точка являє собою рядок даних." -#: js/messages.php:304 +#: js/messages.php:291 #, fuzzy msgid "Hovering over a point will show its label." msgstr "При наведенні на точку буде показано її лейбл." -#: js/messages.php:306 +#: js/messages.php:293 #, fuzzy msgid "To zoom in, select a section of the plot with the mouse." msgstr "Для маштабування, виділіть ділянку з допомогою мишки" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "Натисніть кнопку скидання зума, щоб повернутися до вихідного стану." -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "Клікніть на дані щоб переглянути та можливо редагувати дані рядка." -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Розмір графіка може бути змінений шляхом перетягування нижнього правого кута." -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "Виділити дві колонки" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "Виділити дві різні колонки" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "Результати запиту" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Зміст" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "Копіювати" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "Додати колонки" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Обрати ключі посилання" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Обрати зовнішній ключ" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:343 +#: js/messages.php:330 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?" @@ -1908,15 +1883,20 @@ msgstr "" "Ви не зберегли зміни в макет. Вони будуть втрачені, якщо ви не збережете їх. " "Бажаєте продовжити?" -#: js/messages.php:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "Додати опцію для колонки " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "Натисніть Escape для відміни редагування" -#: js/messages.php:350 +#: js/messages.php:338 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?" @@ -1924,28 +1904,28 @@ msgstr "" "Ви змінили деякі дані, і вони не були збережені. Ви впевнені, що хочете " "залишити цю сторінку перед збереженням даних?" -#: js/messages.php:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "Перетягніть для зміни порядку" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "Клікніть щоб посортувати" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "Клікніть щоб позначити/зняти позначку" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Клікніть на стрілку випадаючого меню
для перемикання видимості стовпця" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1954,7 +1934,7 @@ msgstr "" "редагування, Прапорець, Редагувати, Копіювати і Видаляти посилання можуть не " "працювати після збереження." -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1965,68 +1945,68 @@ msgstr "" "Ви також можете редагувати більшість колонок
клікаючи безпосередньо " "на їх контент." -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Ви також можете редагувати більшість колонок
клікаючи безпосередньо " "на їх контент." -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "Перейти за посиланням" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Назви колонок" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Showing rows" msgid "Show data row(s)" msgstr "Показано записи " -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "Більше" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Показати все" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "Сховати індекси" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2036,268 +2016,268 @@ msgstr "" "Найновіша версія %s, випущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", остання стабільна версія:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "оновлено" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "Готово" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "Попередня" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "Наступна" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "Січень" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "Лютий" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "Березень" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "Квітень" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Травень" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "Червень" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "Липень" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "Серпень" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "Вересень" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "Жовтень" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "Листопад" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Гру" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "Тж" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Жодного" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "Година" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "Секунда" @@ -2352,16 +2332,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "за секунду" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "за хвилину" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "за годину" @@ -2389,7 +2369,7 @@ msgstr "Розмір шрифту" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Зростаючий" @@ -2398,7 +2378,7 @@ msgstr "Зростаючий" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Спадаючий" @@ -2516,7 +2496,7 @@ msgstr "Видалити співпадіння для таблиці %s ?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Видалити" @@ -2701,7 +2681,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Вбити" @@ -2758,12 +2738,13 @@ msgstr "Відмітити все" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" @@ -2771,7 +2752,7 @@ msgstr "Експорт" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2858,16 +2839,16 @@ msgstr "Неможливо прочитати (перемістити) зава msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2881,21 +2862,21 @@ msgstr "Індекс не визначено!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Індекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Запакований" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Кількість елементів" @@ -2905,13 +2886,13 @@ msgstr "Кількість елементів" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Порівняння" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Коментар" @@ -2956,7 +2937,7 @@ msgstr "Вигляд" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Структура" @@ -3029,34 +3010,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "Користувачі" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Бінарний журнал" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Реплікація" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "Плагіни" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3107,6 +3089,104 @@ msgstr "Нещодавні таблиці" msgid "There are no recent tables" msgstr "Нещодавніх таблиць немає" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL-запит" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Таблиць" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файли" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "Статус InnoDB" + +#: 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." @@ -3205,7 +3285,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Значення" @@ -3610,11 +3690,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL-запит" - #: libraries/Util.class.php:710 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:292 @@ -3649,7 +3724,7 @@ msgid "Create PHP Code" msgstr "Створити PHP код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Оновити" @@ -3745,13 +3820,6 @@ msgstr "Друк" msgid "shared" msgstr "загальні" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Таблиць" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3792,11 +3860,11 @@ msgstr "Перевірити права для бази даних "%s" msgid "Check Privileges" msgstr "Перевірити права" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "Неможливо прочитати конфігураційний файл." -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3804,12 +3872,12 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Неможливо завантажити стандартну функціональність із: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3821,40 +3889,40 @@ msgstr "" "Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому " "конфігураційному файлі!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "Не вірний індекс сервера: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Не вірна назва хоста для сервера %1$s. Будь ласка перевірте Вашу " "конфігурацію." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "можливе використання" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "виявлено цифровий ключ" @@ -6030,8 +6098,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6665,10 +6733,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "Статус InnoDB" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7328,18 +7392,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Змінити порядок таблиці" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7453,17 +7517,17 @@ msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Лише структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Структуру і дані" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Лише дані" @@ -7883,8 +7947,7 @@ msgstr "Доступні MIME-types" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -8451,7 +8514,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Змінна" @@ -8962,7 +9025,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Додатково" @@ -9434,8 +9497,7 @@ msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -"... знищити старого з таблиці користувачів та перевантажити права після " -"того." +"... знищити старого з таблиці користувачів та перевантажити права після того." #: libraries/server_privileges.lib.php:1948 msgid "Change Login Information / Copy User" @@ -9675,7 +9737,7 @@ msgstr "Додати префікс до таблиці" msgid "Check tables having overhead" msgstr "Перевірити чи мають таблиці накладні витрати" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10041,7 +10103,7 @@ msgstr "Переключити маленькі/великі" msgid "Toggle relation lines" msgstr "Змінити лінії зв'язків" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "Імпортувати/Експортувати координати для PDF схеми" @@ -10111,31 +10173,31 @@ msgstr "Сторінка була створена" msgid "Page creation failed" msgstr "Створення сторінки обламалось" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "Сторінка" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "Імпорт з вибраної сторінки" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "Експорт у вибрану сторінку" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "Створити нову сторінку та експортувати в неї" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "Нова назва сторінки: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Експорт/Імпорт у масштабі" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "рекомендовано" @@ -10255,15 +10317,11 @@ msgstr "Файл не існує" msgid "Select binary log to view" msgstr "Вибрати двійковий журнал для перегляду" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файли" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -10349,7 +10407,7 @@ msgstr "Модуль" msgid "Library" msgstr "Бібліотека" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Версія" @@ -10407,10 +10465,6 @@ msgstr "Права успішно перезавантажено." msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10540,881 +10594,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, fuzzy, php-format +#| msgid "This MySQL server has been running for %s. It started up on %s." +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "Цей MySQL сервер працює %s. Стартував %s." + +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:139 +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:666 -msgid "Sorting" +#: server_status.php:149 +msgid "Received" +msgstr "Отримано" + +#: server_status.php:168 +msgid "Sent" +msgstr "Відправлено" + +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "Невдалих спроб" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "" +#: server_status.php:253 +msgid "Aborted" +msgstr "Перервано" -#: server_status.php:682 -msgid "Show open tables" -msgstr "" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "Команда" -#: server_status.php:693 -msgid "Show slave status" -msgstr "" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "Інформація про роботу сервера" - -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "Число рядків:" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Оновити" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Не змінювати пароль" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show tables" -msgid "Show only alert values" -msgstr "Показати таблиці" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show tables" -msgid "Show unformatted values" -msgstr "Показати таблиці" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Зв'язки" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Тип запиту" - -#: server_status.php:966 +#: server_status_advisor.php:29 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "Адміністратор" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Параметр" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "Цей MySQL сервер працює %s. Стартував %s." - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "Отримано" - -#: server_status.php:1208 -msgid "Sent" -msgstr "Відправлено" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "Невдалих спроб" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "Перервано" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "Команда" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Character set of the file:" -msgid "Percentage of used key cache (calculated value)" -msgstr "Кодування файлу:" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "Трекінг не активний." - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "Додати коментар" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Оновити" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Column names" msgid "Chart columns" msgstr "Назви колонок" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11423,7 +10768,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11431,18 +10776,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11450,11 +10795,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11462,93 +10807,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Видалити базу даних" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Вибрати таблиці" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неправильна назва таблиці" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Додати нового користувача" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Статистика рядка" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Вибрати таблиці" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тип запиту" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11557,7 +10902,7 @@ msgstr[0] "Секунда" msgstr[1] "Секунда" msgstr[2] "Секунда" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11566,6 +10911,625 @@ msgstr[0] "Хвилина" msgstr[1] "Хвилина" msgstr[2] "Хвилина" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Параметр" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Не змінювати пароль" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show tables" +msgid "Show only alert values" +msgstr "Показати таблиці" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show tables" +msgid "Show unformatted values" +msgstr "Показати таблиці" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Зв'язки" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Character set of the file:" +msgid "Percentage of used key cache (calculated value)" +msgstr "Кодування файлу:" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "Трекінг не активний." + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12138,152 +12102,152 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Тип запиту" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Deleting tracking data" msgid "Delete tracking data row from report" msgstr "Видалення даних трекінгу" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "БД відсутні" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Видалити дані спостереження для цієї таблиці" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Загальні можливості" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -12429,13 +12393,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time встановлено на %d секунди(секунд)." -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "Показати блок запиту" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12453,133 +12417,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time встановлено на %d секунди(секунд)." -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time встановлено на %d секунди(секунд)." + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Вибрати таблиці" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "General relation features" msgid "Current version: %s" msgstr "Загальні можливості" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "PHP Version" msgid "Minor Version" msgstr "Версія PHP" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Опис" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL Charset" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache used" msgid "Query cache disabled" msgstr "Використанний кеш запитів" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "Tracking is not active." msgid "The query cache is not enabled." msgstr "Трекінг не активний." -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12587,23 +12563,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Space usage" msgid "Query caching method" msgstr "Простір, що використовується" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Space usage" msgid "Suboptimal caching method." msgstr "Простір, що використовується" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s таблиця" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12998,299 +12974,299 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Table of contents" msgid "Percentage of MyISAM key buffer used" msgstr "Зміст" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Connections" msgid "Percentage of index reads from memory" msgstr "З'єднань" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create a page" msgid "Rate of table open" msgstr "Створити нову сторінку" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Character set of the file:" msgid "The rate of opening tables is high." msgstr "Кодування файлу:" -#: libraries/advisory_rules.txt:324 +#: 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:325 -#, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Character set of the file:" -msgid "Percentage of used open files limit" -msgstr "Кодування файлу:" - -#: libraries/advisory_rules.txt:330 -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:331 libraries/advisory_rules.txt:338 -msgid "" -"Consider increasing {open_files_limit}, and check the error log when " -"restarting after changing open_files_limit." -msgstr "" - #: libraries/advisory_rules.txt:332 #, php-format -msgid "" -"The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Character set of the file:" -msgid "Rate of open files" +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 +#, fuzzy +#| msgid "Character set of the file:" +msgid "Rate of open files" +msgstr "Кодування файлу:" + +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Character set of the file:" msgid "The rate of opening files is high." msgstr "Кодування файлу:" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "Створити нову таблицю в БД %s" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "Трекінг не активний." -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Трекінг не активний." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Трекінг не активний." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Трекінг не активний." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are no routines to display." msgid "There are too many threads that are slow to launch." msgstr "Немає порядків для відображення." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time встановлено на %d секунди(секунд)." -#: libraries/advisory_rules.txt:380 +#: 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:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time встановлено на %d секунди(секунд)." -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Connections" msgid "Percentage of used connections" msgstr "З'єднань" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Connections" msgid "Percentage of aborted connections" msgstr "З'єднань" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "Забагато перерваних з’єднань." -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "" #| "The InnoDB log file size is not an appropriate size, in relation to the " @@ -13400,15 +13376,15 @@ msgstr "" "Файл журналу InnoDB не є відповідного розміру, у відношенні до пула буфера " "InnoDB." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "Максимальний розмір журналу InnoDB" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "Розмір журналу InnoDB є неадекватно великим." -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13422,20 +13398,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "Ваш абосолютний розмір журналу InnoDB є %s МБ" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "Розмір пула буфера InnoDB" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "Ваш InnoDB буферний пул доволі малий." -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13450,7 +13426,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13459,27 +13435,63 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "concurrent_insert is set to 0" msgid "MyISAM concurrent inserts" msgstr "concurrent_insert встановлений у 0" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "Включити concurrent_insert виставивши його у 1" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлений у 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "KiB надіслано на час останнього оновлення" + +#~ msgid "KiB received since last refresh" +#~ msgstr "KiB отримано на час останнього оновлення" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Трафік серверу (в KiB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "З'єднань на час останнього оновлення" + +#~ msgid "Questions since last refresh" +#~ msgstr "Questions на час останнього оновлення" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "Questions (виконані оператори сервером)" + +#~ msgid "Runtime Information" +#~ msgstr "Інформація про роботу сервера" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "Число рядків:" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Оновити" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Тип запиту" + #, fuzzy #~| msgid "Show PHP information" #~ msgid "Show more actions" diff --git a/po/ur.po b/po/ur.po index 3bdb4123a3..a84caeda03 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu \n" @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.3-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -48,7 +48,7 @@ msgstr "" msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -78,21 +78,21 @@ msgstr "تلاش" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "جائیں" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "کلید نام" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "وضاحت" @@ -116,17 +116,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "ڈیٹا بیس %1$s بنا دیا گیا" -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "کوائفیہ تبصرہ: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -140,14 +140,14 @@ msgstr "جدول تبصرے" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Command" msgid "Column" msgstr "کالم" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -165,11 +165,11 @@ msgstr "کالم" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "قِسم" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -181,11 +181,11 @@ msgstr "قِسم" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "خالی" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -196,11 +196,11 @@ msgstr "خالی" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "طے شدہ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -209,7 +209,7 @@ msgstr "طے شدہ" msgid "Links to" msgstr "ربط بطرف" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -222,7 +222,7 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -240,12 +240,12 @@ msgstr "تبصرہ" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "نہیں" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -268,8 +268,8 @@ msgstr "نہیں" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "ہاں" @@ -324,7 +324,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "جدول" @@ -345,7 +345,7 @@ msgstr "ناپ" msgid "in use" msgstr "استعمال میں ہے" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -353,7 +353,7 @@ msgstr "استعمال میں ہے" msgid "Creation" msgstr "بنائیں" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -361,7 +361,7 @@ msgstr "بنائیں" msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -414,7 +414,7 @@ msgstr "کھوج شدہ جداول" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "کوائفیہ" @@ -422,17 +422,17 @@ msgstr "کوائفیہ" msgid "Last version" msgstr "آخری نسخہ" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "بنایا" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "حالت" @@ -447,7 +447,7 @@ msgstr "عمل" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "دکھائیں" @@ -463,11 +463,11 @@ msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" msgid "Drop" msgstr "چھوڑیں" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "فعال نہیں ہے" @@ -475,11 +475,11 @@ msgstr "فعال نہیں ہے" msgid "Versions" msgstr "نسخے" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "ساخت تصویر" @@ -554,49 +554,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a point" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -606,15 +606,15 @@ msgstr "" msgid "Add a linestring" msgstr "پابندیاں لگائیں" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a polygon" @@ -761,8 +761,9 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Database server" msgstr "کوائفیے" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "سرور" @@ -783,7 +784,7 @@ msgstr "" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "" @@ -1022,12 +1023,12 @@ msgstr "استحقاق پھر لوڈ کرتے ہوئے" msgid "Removing Selected Users" msgstr "منتخب صارفین ہٹائے جارہے ہیں" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "بند کریں" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1037,17 +1038,17 @@ msgstr "بند کریں" msgid "Edit" msgstr "تدوین" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "سرور انتخاب" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "Hide query box" msgid "Live query chart" @@ -1060,13 +1061,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1081,54 +1083,18 @@ msgid "." msgstr "." #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "سرور انتخاب" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "" - -#: js/messages.php:81 #, fuzzy #| msgid "Connection type" msgid "Connections / Processes" msgstr "جڑنے کی قسم" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -msgid "Query statistics" -msgstr "طلب شماریات" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Configuration file" msgid "Local monitor configuration incompatible" msgstr "تشکیلی مسل" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1136,130 +1102,134 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "SQL query history table" msgid "Query cache efficiency" msgstr "SQL طلب لاگ جدول" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query results" msgid "Query cache usage" msgstr "طلب نتائج" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query results" msgid "Query cache used" msgstr "طلب نتائج" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "میگا بائٹ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "کلو بائٹ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "میزان" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "میزان" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "بائٹ" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "کلو بائٹ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "میگا بائٹ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "گیگا بائٹ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ٹیرا بائٹ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "پیٹا بائٹ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ایگزا بائٹ" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1267,83 +1237,84 @@ msgid "%d table(s)" msgstr "%s جدول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "نسخے" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Remove database" msgid "Remove chart" msgstr "کوائفیہ ہٹائیں" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1351,528 +1322,530 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enable Ajax" msgid "Enable %s" msgstr "AJAX فعال کریں" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "غیر فعال" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Default" msgid "Chart Title" msgstr "ڈیفالٹ" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading" msgid "Analysing logs" msgstr "لوڈ کررہا ہے" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "منسوخ کریں" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "کوائفیہ جائیں" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "data" msgid "No data found" msgstr "کوائف" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "توثیق کررہا ہے..." -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL کی تفصیل بتائیں" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "وقت" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "میزان" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "تفصیلات" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "جدول" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Default" msgid "Chart" msgstr "ڈیفالٹ" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Edit chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL طلب" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "جداول دکھانے کے اختیارات" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "داخل شدہ صفوں کی تعداد" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "میزان" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Loading" msgid "Loading logs" msgstr "لوڈ کررہا ہے" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload Database" msgid "Reload page" msgstr "کوائفیہ پھر لوڈ کریں" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Configuration file" msgid "Import monitor configuration" msgstr "تشکیلی مسل" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "طلب تازہ کریں" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "دستاویزات" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "توثیق" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "منسوخ کریں" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "لوڈ کررہا ہے" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "فرمایش عمل کرتے ہوئے" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "کالم چھوڑا جارہا ہے" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "بنیادی کلید شامل کررہا ہے" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "ٹھیک ہے" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "کوائفیہ نام بدلا جارہا ہے" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "کوائفیہ پھر لوڈ کریں" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "کوائفیہ نقل کیا جارہا ہے" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "جدول میں کم از کم ایک کالم ہو" -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "جداول استعمال کریں" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Indexes" msgid "Hide indexes" msgstr "اشاریے" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "گرِڈ دکھائیں" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enable Ajax" msgid "(Enabled)" msgstr "AJAX فعال کریں" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "غیر فعال" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "تلاش کر رہا ہے" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "Hide search criteria" msgid "Hide search results" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "Show search criteria" msgid "Show search results" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "براؤز" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "حذف" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "کالم کی قدریں\"%s\"" -#: js/messages.php:276 +#: js/messages.php:263 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "کالم کی قدریں\"%s\"" -#: js/messages.php:277 +#: js/messages.php:264 #, fuzzy #| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field" msgstr "ہر قدر جدا قطعہ میں داخل کریں۔" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "طلب خانہ چھپائیں" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "طلب خانہ دکھائیں" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "چلنے کی حد اوقات" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1881,209 +1854,214 @@ msgstr "" msgid "Save" msgstr "" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "تلاش" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "کالم اضافہ/حذف کریں" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results" msgid "Query results" msgstr "طلب نتائج" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "کالم کے لیے ایک اختیار اضافہ کریں " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "انتخاب کے لیے کلک کریں" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy #| msgid "Logo link URL" msgid "Go to link" msgstr "علامت ربط URL" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Comments" msgid "Copy column name" msgstr "آراء-رائے" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Startup" msgid "Show data row(s)" msgstr "ابتدائیہ" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "پاس ورڈ تبدیل کریں" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "مزید" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "تمام دکھائیں" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Indexes" msgid "Hide Panel" msgstr "اشاریے" -#: js/messages.php:388 +#: js/messages.php:376 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2093,29 +2071,29 @@ msgstr "" "s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "ہوچکا" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2123,149 +2101,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "آج" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "جنوری" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "فروری" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "مارچ" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "اپریل" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "مئی" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "جون" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "جولائی" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "اگست" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "ستمبر" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "اکتوبر" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "نومبر" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "پیر" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2273,97 +2251,97 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "ہفتہ وار" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "Done" msgctxt "Year suffix" msgid "none" msgstr "ہوچکا" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "منٹ" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "سیکنڈ" @@ -2414,16 +2392,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "" @@ -2449,7 +2427,7 @@ msgstr "فانٹ سائز" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "صعودی" @@ -2458,7 +2436,7 @@ msgstr "صعودی" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "نزولی" @@ -2574,7 +2552,7 @@ msgstr "اس جدول کے مشابہات حذف %s کریں؟" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "حذف" @@ -2766,7 +2744,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "" @@ -2822,12 +2800,13 @@ msgstr "تمام پڑتال کریں" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" @@ -2835,7 +2814,7 @@ msgstr "برآمد" msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2922,16 +2901,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "اس جگہ کوکی لازمی اہل ہوں۔" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2945,21 +2924,21 @@ msgstr "کوئی اشاریہ موجود نہیں!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "منفرد" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "درجہ تعلق داری" @@ -2969,13 +2948,13 @@ msgstr "درجہ تعلق داری" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "ترتیب" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "تبصرہ" @@ -3020,7 +2999,7 @@ msgstr "نقل جدول" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "ساخت" @@ -3093,34 +3072,35 @@ msgstr "" msgid "Designer" msgstr "" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "چربہ کاری" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "" @@ -3174,6 +3154,104 @@ msgstr "حداول کی گنتی کریں" msgid "There are no recent tables" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL طلب" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "جداول" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "" + +#: libraries/ServerStatusData.class.php:226 +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." @@ -3267,7 +3345,7 @@ msgstr "" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "" @@ -3672,11 +3750,6 @@ msgstr "" msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL طلب" - #: libraries/Util.class.php:710 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:292 @@ -3711,7 +3784,7 @@ msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "تازہ کریں" @@ -3809,13 +3882,6 @@ msgstr "چھاپیں" msgid "shared" msgstr "حصہ دارانہ" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "جداول" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3856,24 +3922,24 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں "%s"." msgid "Check Privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Configuration file" msgid "Failed to read configuration file" msgstr "تشکیلی مسل" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3885,38 +3951,38 @@ msgstr "" "$cfg['PmaAbsoluteUri'] ہدایات آپ کے تشکیل مسل میں لازمی موجود " "ہوں!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6153,8 +6219,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "" @@ -6794,10 +6860,6 @@ msgstr "" msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "" @@ -7459,18 +7521,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Invalid table name" msgid "filter databases by name" msgstr "غلط جدول نام" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Invalid table name" msgid "filter items by name" @@ -7572,17 +7634,17 @@ msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "صرف ساخت" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "ساخت اور کوائف" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "کوائف صرف" @@ -7984,8 +8046,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "" @@ -8510,7 +8571,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "" @@ -9076,7 +9137,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "" @@ -9750,7 +9811,7 @@ msgstr "" msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "" @@ -10097,7 +10158,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10179,35 +10240,35 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "Page number:" msgid "Page" msgstr "صفحہ نمبر" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "Page number:" msgid "New page name: " msgstr "صفحہ نمبر" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "" @@ -10323,15 +10384,11 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "" @@ -10414,7 +10471,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "" @@ -10473,10 +10530,6 @@ msgstr "" msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "" @@ -10606,880 +10659,172 @@ msgid "" "like to configure it?" msgstr "" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:657 -msgid "Handler" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:658 -msgid "Query cache" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:659 -msgid "Threads" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:661 -msgid "Temporary data" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:662 -msgid "Delayed inserts" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:663 -msgid "Key cache" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." msgstr "" -#: server_status.php:664 -msgid "Joins" +#: server_status.php:122 +msgid "Replication status" msgstr "" -#: server_status.php:666 -msgid "Sorting" +#: server_status.php:139 +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:668 -msgid "Transaction coordinator" +#: server_status.php:149 +msgid "Received" msgstr "" -#: server_status.php:680 -msgid "Flush (close) all tables" +#: server_status.php:168 +msgid "Sent" msgstr "" -#: server_status.php:682 -msgid "Show open tables" +#: server_status.php:219 +msgid "max. concurrent connections" msgstr "" -#: server_status.php:687 -msgid "Show slave hosts" +#: server_status.php:229 +msgid "Failed attempts" msgstr "" -#: server_status.php:693 -msgid "Show slave status" +#: server_status.php:253 +msgid "Aborted" msgstr "" -#: server_status.php:698 -msgid "Flush query cache" +#: server_status.php:313 +msgid "ID" msgstr "" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "" +#: server_status.php:329 +msgid "Command" +msgstr "حکم" -#: server_status.php:830 -msgid "All status variables" -msgstr "" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of inserted rows" -msgid "Number of data points: " -msgstr "داخل شدہ صفوں کی تعداد" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "تازہ کریں" - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show only alert values" -msgstr "بائیں جھروکہ میں علامت دکھائیں" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show unformatted values" -msgstr "بائیں جھروکہ میں علامت دکھائیں" - -#: server_status.php:930 -#, fuzzy -#| msgid "Replication" -msgid "Related links:" -msgstr "لپیٹنا" - -#: server_status.php:964 -#, fuzzy -#| msgid "Gather errors" -msgid "Run analyzer" -msgstr "نقائص اکھٹی کریں" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:975 +#: server_status_advisor.php:41 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.php:977 +#: server_status_advisor.php:48 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.php:979 +#: server_status_advisor.php:56 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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "ابتدائیہ صفحہ کی تخصیص کریں" - -#: server_status.php:1044 -msgid "Statements" -msgstr "" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "" - -#: server_status.php:1185 -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:1191 -msgid "Received" -msgstr "" - -#: server_status.php:1208 -msgid "Sent" -msgstr "" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "" - -#: server_status.php:1322 -msgid "ID" -msgstr "" - -#: server_status.php:1338 -msgid "Command" -msgstr "حکم" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "" - -#: server_status.php:1529 -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 "" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" - -#: server_status.php:1532 -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 "" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "" - -#: server_status.php:1541 -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 "" - -#: server_status.php:1542 -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 "" - -#: server_status.php:1543 -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 "" - -#: server_status.php:1544 -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 "" - -#: server_status.php:1545 -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 "" - -#: server_status.php:1546 -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 "" - -#: server_status.php:1547 -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 "" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "" - -#: server_status.php:1555 -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 "" - -#: server_status.php:1556 -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 "" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "" - -#: server_status.php:1558 -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 "" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" - -#: server_status.php:1562 -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 "" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "" - -#: server_status.php:1574 -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 "" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "" - -#: server_status.php:1582 -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 "" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "" - -#: server_status.php:1594 -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 "" - -#: server_status.php:1595 -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 "" - -#: server_status.php:1596 -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 "" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "درآمد مسل کی وضع" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "" - -#: server_status.php:1599 -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 "" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "" - -#: server_status.php:1611 -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 "" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "" - -#: server_status.php:1615 -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 "" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "" - -#: server_status.php:1620 -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 "" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "" - -#: server_status.php:1622 -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 "" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "" - -#: server_status.php:1630 -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 "" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "" - -#: server_status.php:1635 -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 "" - -#: server_status.php:1636 -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 "" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "" - -#: server_status.php:1638 -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 "" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Tracking is not active." -msgid "Thread cache hit rate (calculated value)" -msgstr "کھوج غیر فعال ہے۔" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "" - -#: server_status.php:1799 +#: server_status_monitor.php:472 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ابتدائیہ" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1830 +#: server_status_monitor.php:496 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:1835 +#: server_status_monitor.php:505 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" -#: server_status.php:1852 +#: server_status_monitor.php:538 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "طے شدہ قدر بحال کریں" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11488,7 +10833,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11496,18 +10841,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 "" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11515,11 +10860,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11527,95 +10872,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1902 +#: server_status_monitor.php:610 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "کوائفیہ ہٹائیں" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "" -#: server_status.php:1908 +#: server_status_monitor.php:617 #, fuzzy #| msgid "SQL queries" msgid "Select series:" msgstr "SQL طلب" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "" -#: server_status.php:1925 +#: server_status_monitor.php:635 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "غلط جدول نام" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "" -#: server_status.php:1944 +#: server_status_monitor.php:659 #, fuzzy #| msgid "Add a New User" msgid "Add this series" msgstr "نیا صارف اضافہ کریں" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "" -#: server_status.php:1949 +#: server_status_monitor.php:664 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL طلب" -#: server_status.php:1964 +#: server_status_monitor.php:677 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "طلب شماریات" -#: server_status.php:1965 +#: server_status_monitor.php:678 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "سارا منتخب کریں" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1987 +#: server_status_monitor.php:699 #, fuzzy #| msgid "Gather errors" msgid "Query analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11623,7 +10968,7 @@ msgid_plural "%d seconds" msgstr[0] "سیکنڈ" msgstr[1] "سیکنڈ" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11631,6 +10976,624 @@ msgid_plural "%d minutes" msgstr[0] "منٹ" msgstr[1] "منٹ" +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "ابتدائیہ صفحہ کی تخصیص کریں" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show logo in left frame" +msgid "Show only alert values" +msgstr "بائیں جھروکہ میں علامت دکھائیں" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show logo in left frame" +msgid "Show unformatted values" +msgstr "بائیں جھروکہ میں علامت دکھائیں" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Replication" +msgid "Related links:" +msgstr "لپیٹنا" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "" + +#: server_status_variables.php:334 +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 "" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" + +#: server_status_variables.php:346 +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 "" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: server_status_variables.php:381 +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 "" + +#: server_status_variables.php:387 +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 "" + +#: server_status_variables.php:393 +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 "" + +#: server_status_variables.php:398 +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 "" + +#: server_status_variables.php:403 +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 "" + +#: server_status_variables.php:407 +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 "" + +#: server_status_variables.php:414 +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 "" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "" + +#: server_status_variables.php:443 +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 "" + +#: server_status_variables.php:448 +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 "" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: server_status_variables.php:458 +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 "" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: server_status_variables.php:474 +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 "" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: server_status_variables.php:516 +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 "" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "" + +#: server_status_variables.php:541 +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 "" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: server_status_variables.php:579 +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 "" + +#: server_status_variables.php:584 +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 "" + +#: server_status_variables.php:588 +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 "" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "درآمد مسل کی وضع" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: server_status_variables.php:599 +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 "" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "" + +#: server_status_variables.php:645 +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 "" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "" + +#: server_status_variables.php:659 +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 "" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: server_status_variables.php:679 +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 "" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: server_status_variables.php:686 +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 "" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: server_status_variables.php:717 +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 "" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: server_status_variables.php:734 +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 "" + +#: server_status_variables.php:740 +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 "" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "" + +#: server_status_variables.php:748 +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 "" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Tracking is not active." +msgid "Thread cache hit rate (calculated value)" +msgstr "کھوج غیر فعال ہے۔" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12201,153 +12164,153 @@ msgstr "" msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "نقائص اکھٹی کریں" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "data" msgid "No data" msgstr "کوائف" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "کوائف نہیں ملا برائے %s" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "جنرل ریلیشن فیچرز" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "" @@ -12490,13 +12453,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "طلب خانہ دکھائیں" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "SQL query history table" msgid "The slow query log is disabled." @@ -12512,131 +12475,141 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "SQL queries" msgid "Release Series" msgstr "SQL طلب" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "General relation features" msgid "Current version: %s" msgstr "جنرل ریلیشن فیچرز" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Versions" msgid "Minor Version" msgstr "نسخے" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "وضاحت" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "SQL query history table" msgid "Query cache disabled" msgstr "SQL طلب لاگ جدول" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "SQL query history table" msgid "The query cache is not enabled." msgstr "SQL طلب لاگ جدول" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12644,23 +12617,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query results" msgid "Query caching method" msgstr "طلب نتائج" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query results" msgid "Suboptimal caching method." msgstr "طلب نتائج" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s جدول" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13055,254 +13028,254 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "SQL queries" msgid "MyISAM key buffer size" msgstr "SQL طلب" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "SQL queries" msgid "Max %% MyISAM key buffer ever used" msgstr "SQL طلب" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: 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:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: 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:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "SQL queries" msgid "Percentage of MyISAM key buffer used" msgstr "SQL طلب" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "SQL queries" msgid "Percentage of index reads from memory" msgstr "SQL طلب" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create Table" msgid "Rate of table open" msgstr "جدول بنائیں" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening tables is high." msgstr "درآمد مسل کی وضع" -#: libraries/advisory_rules.txt:324 +#: 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:325 -#, php-format -msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "" - -#: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used open files limit" -msgstr "درآمد مسل کی وضع" - -#: libraries/advisory_rules.txt:330 -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:331 libraries/advisory_rules.txt:338 -msgid "" -"Consider increasing {open_files_limit}, and check the error log when " -"restarting after changing open_files_limit." -msgstr "" - #: libraries/advisory_rules.txt:332 #, php-format -msgid "" -"The number of opened files is at %s%% of the limit. It should be below 85%%" +msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "" #: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" -msgid "Rate of open files" +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 +#, fuzzy +#| msgid "Format of imported file" +msgid "Rate of open files" +msgstr "درآمد مسل کی وضع" + +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "Format of imported file" msgid "The rate of opening files is high." msgstr "درآمد مسل کی وضع" -#: libraries/advisory_rules.txt:339 +#: 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:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, php-format -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, php-format -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache" msgstr "کھوج غیر فعال ہے۔" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "کھوج غیر فعال ہے۔" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "کھوج غیر فعال ہے۔" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "کھوج غیر فعال ہے۔" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are no files to upload" msgid "Threads that are slow to launch" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are no files to upload" msgid "There are too many threads that are slow to launch." msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "There are no files to upload" msgid "" @@ -13310,47 +13283,47 @@ msgid "" "launch" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "بہتر جوڑ" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "بہتر جوڑ" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: 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:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13479,20 +13452,20 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13507,7 +13480,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13516,25 +13489,45 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "سرور انتخاب" + +#, fuzzy +#~| msgid "Number of inserted rows" +#~ msgid "Number of data points: " +#~ msgstr "داخل شدہ صفوں کی تعداد" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "تازہ کریں" + +#, fuzzy +#~| msgid "Gather errors" +#~ msgid "Run analyzer" +#~ msgstr "نقائص اکھٹی کریں" + #~ msgid "Click to select" #~ msgstr "انتخاب کے لیے کلک کریں" diff --git a/po/uz.po b/po/uz.po index c14899cf79..2d7adebe51 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,18 +3,18 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:08+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" -"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -45,7 +45,7 @@ msgstr "" msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -75,21 +75,21 @@ msgstr "Қидириш" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "OK" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Тавсифи" @@ -110,17 +110,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -134,14 +134,14 @@ msgstr "Жадвал изоҳи" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -159,11 +159,11 @@ msgstr "Майдон номлари" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Тур" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -175,11 +175,11 @@ msgstr "Тур" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -190,11 +190,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Андоза" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -203,7 +203,7 @@ msgstr "Андоза" msgid "Links to" msgstr "Алоқалар" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -216,7 +216,7 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -234,12 +234,12 @@ msgstr "Изоҳлар" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Йўқ" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -262,8 +262,8 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ҳа" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Жадвал" @@ -341,7 +341,7 @@ msgstr "Ҳажми" msgid "in use" msgstr "ишлатилмоқда" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -349,7 +349,7 @@ msgstr "ишлатилмоқда" msgid "Creation" msgstr "Тузиш" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -357,7 +357,7 @@ msgstr "Тузиш" msgid "Last update" msgstr "Охирги янгиланиш" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -413,7 +413,7 @@ msgstr "Кузатилган жадваллар" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Маълумотлар базаси" @@ -421,17 +421,17 @@ msgstr "Маълумотлар базаси" msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Ҳолат" @@ -446,7 +446,7 @@ msgstr "Амал" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Кўрсатиш" @@ -462,11 +462,11 @@ msgstr "Ушбу жадвал учун кузатув маълумотлари msgid "Drop" msgstr "Ўчириш" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "фаол" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "фаол эмас" @@ -474,11 +474,11 @@ msgstr "фаол эмас" msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Тузилма расми" @@ -552,49 +552,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Индекс(лар)ни сақлаш" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -604,17 +604,17 @@ msgstr "" msgid "Add a linestring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" @@ -768,8 +768,9 @@ msgstr "танловлар" msgid "Database server" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Сервер" @@ -790,7 +791,7 @@ msgstr "Протокол версияси" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Фойдаланувчи" @@ -1075,12 +1076,12 @@ msgstr "Привилегиялар қайта юкланмоқда" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Ёпиш" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1090,17 +1091,17 @@ msgstr "Ёпиш" msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Серверни танланг" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1113,13 +1114,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1134,56 +1136,18 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Серверни танланг" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Жараёнлар" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Уланишлар" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Статискани кўрсатиш" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1191,221 +1155,226 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Сўровлар кеши" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Сўровлар кеши" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Сўровлар кеши" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "МБ" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "КБ" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Журнал файллари сони" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Буфер пули" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Жами" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Бўш саҳифалар сони " -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Уланишлар" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Жараёнлар" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Байт" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "КБ" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "МБ" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "Жадваллар сони: \"%s\"" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "settings" msgid "Settings" msgstr "танловлар" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Тўрга боғлаб қўйиш" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Йўқ" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1413,550 +1382,552 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Файл каби сақлаш" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Фаоллаштирилган" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Фаолсизлантириш" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Бошқа созланишлар" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "settings" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Ҳисобот сарлавҳаси" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Фарқ" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "Юклаш" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Ўқишга рухсат сўраш" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Go to database" msgid "Jump to Log table" msgstr "Ушбу базага ўтиш" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Маълумотлар базаси мавжуд эмас" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Таҳлил" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Сўров таҳлили" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Вақт" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Жами" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Профиллаштириш" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Жадвал " -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кодировка" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Apply index(s)" msgid "Edit chart" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL сўровлари" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Жадваллар кўринишини созлаш" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Фильтр" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "Қўйилган қаторлар сони" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Жами" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "Юклаш" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Қайта юклаш" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "Сўровни янгилаш" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Документация" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Тафсилотлар..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Мослашлар" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "Юклаш" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Жараёнлар" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Кодировка" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Жадвалларни ишлатиш" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Apply index(s)" msgid "Hide indexes" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "Тўрни кўрсатиш" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Ташқи калитларни текширишни ўчириш" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Фаоллаштирилган" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Фаолсизлантирилган" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Қидириш" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL сўровлари қутиси" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Кўриб чиқиш" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" ўчирилмоқда" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Майдонлар сони " -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Янги фойдаланувчи қўшиш" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "Ўзгартириш" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "Максимум бажарилиш вақти" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас." -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1965,225 +1936,230 @@ msgstr "%d сони тўғри қатор рақами эмас." msgid "Save" msgstr "Сақлаш" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Қидириш" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Устун қўшиш/ўчириш" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "Сўров натижаларини ишлатиш" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Устун(лар) қўшиш" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Майдон номлари" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Қатор(лар)ни янгилаш" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Барчасини кўрсатиш" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Apply index(s)" msgid "Hide Panel" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2194,33 +2170,33 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2228,96 +2204,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "Май" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2325,78 +2301,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Дек" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2404,115 +2380,115 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Йўқ" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2566,16 +2542,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "секундига" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "минутига" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "соатига" @@ -2601,7 +2577,7 @@ msgstr "Шрифт ўлчами" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "Ўсиш тартибида" @@ -2610,7 +2586,7 @@ msgstr "Ўсиш тартибида" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Камайиш тартибида" @@ -2731,7 +2707,7 @@ msgstr "Ушбу жадвал учун кузатув маълумотлари #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "Ўчириш" @@ -2934,7 +2910,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Тугатиш" @@ -2991,12 +2967,13 @@ msgstr "Барчасини белгилаш" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" @@ -3004,7 +2981,7 @@ msgstr "Экспорт" msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3053,8 +3030,8 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" директиваси " -"қийматидан катта." +"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " +"директиваси қийматидан катта." #: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." @@ -3095,16 +3072,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3118,21 +3095,21 @@ msgstr "Индекс белгиланмаган!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Элементлар сони" @@ -3142,13 +3119,13 @@ msgstr "Элементлар сони" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Таққослаш" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Изоҳ" @@ -3191,7 +3168,7 @@ msgstr "Намойиш" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Тузилиши" @@ -3264,36 +3241,37 @@ msgstr "Ҳодисалар" msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Фойдаланувчи" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Иккилик журнал" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Жадвал турлари" @@ -3352,6 +3330,108 @@ msgstr "Жадвалларни санаш" msgid "There are no recent tables" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL сўрови" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Қайта ишловчи дастур" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "Сўровлар кеши" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Оқимлар" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Вақтинчалик маълумотлар" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Кечиктирилган қўйилмалар" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Индекс кеши" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Бирлашишлар" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Сортировка" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Жадваллар" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Транзакциялар координатори" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Файллар сони" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Барча жадвалларни ёпиш" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Очиқ жадваллар рўйхати" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Тобе серверлар ҳақида маълумот" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Уланган бош серверларни кўрсатиш" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Репликация сервери аҳволи ҳақида маълумот" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "Сўровлар кешини дефрагментация қилиш" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB аҳволи" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Статискани кўрсатиш" + +#: libraries/ServerStatusData.class.php:349 +#, fuzzy +#| msgid "See slave status table" +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." @@ -3448,7 +3528,7 @@ msgstr "Оператор" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Қиймати" @@ -3857,11 +3937,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL сўрови" - #: libraries/Util.class.php:710 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:292 @@ -3898,7 +3973,7 @@ msgid "Create PHP Code" msgstr "PHP-код" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Янгилаш" @@ -4003,13 +4078,6 @@ msgstr "Чоп этиш" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Жадваллар" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -4056,25 +4124,25 @@ msgstr "\"%s\" маълумотлар базасининг привилегия msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4086,42 +4154,42 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда " "созланиши ШАРТ!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6524,8 +6592,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Фойдаланувчи" @@ -7262,10 +7330,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB аҳволи" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Ишлатилиш" @@ -7982,18 +8046,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "жадвал номи" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8099,17 +8163,17 @@ msgid "Drop the database (DROP)" msgstr "Ушбу базага ўтиш" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Фақат тузилиши" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Фақат маълумотлар" @@ -8545,8 +8609,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Хост" @@ -9188,7 +9251,7 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "Ўзгарувчи" @@ -9783,7 +9846,7 @@ msgstr "Атрибутлар" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Қўшимча" @@ -10515,7 +10578,7 @@ msgstr "Ушбу жадвалга ўтиш" msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10895,7 +10958,7 @@ msgstr "Тескари кўрсатиш" msgid "Toggle relation lines" msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" @@ -10977,41 +11040,41 @@ msgstr "Саҳифа тузилди" msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "саҳифалар сони " -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файлларни импорт қилиш" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Масштаб" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Янги индекс тузиш" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Фойдаланувчи номи" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "тавсия этилган" @@ -11139,15 +11202,11 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Файллар сони" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -11231,7 +11290,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Версия" @@ -11293,10 +11352,6 @@ msgstr "Бош репликация сервери қуйидагига ўзга msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Уланган бош серверларни кўрсатиш" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" @@ -11450,202 +11505,29 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" жараёни муваффақиятли якунланди." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status.php:657 -msgid "Handler" -msgstr "Қайта ишловчи дастур" - -#: server_status.php:658 -msgid "Query cache" -msgstr "Сўровлар кеши" - -#: server_status.php:659 -msgid "Threads" -msgstr "Оқимлар" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Вақтинчалик маълумотлар" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Кечиктирилган қўйилмалар" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Индекс кеши" - -#: server_status.php:664 -msgid "Joins" -msgstr "Бирлашишлар" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Сортировка" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Транзакциялар координатори" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Барча жадвалларни ёпиш" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Очиқ жадваллар рўйхати" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Тобе серверлар ҳақида маълумот" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Репликация сервери аҳволи ҳақида маълумот" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "Сўровлар кешини дефрагментация қилиш" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "MySQL-сервернинг ҳозирги ҳолати" - -#: server_status.php:830 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Тобе сервер статуси жадвалини кўриш" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Майдонлар сони " - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Янгилаш" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Фильтр" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Паролни ўзгартирмаслик" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Очиқ жадваллар рўйхати" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Очиқ жадваллар рўйхати" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Алоқалар" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "Сўров тури" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Функциялар" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Бошланғич саҳифани созлаш" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Тавсиф" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:1153 +#: server_status.php:93 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11653,19 +11535,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1155 +#: server_status.php:98 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1157 +#: server_status.php:103 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1160 +#: server_status.php:109 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11679,11 +11561,11 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11691,47 +11573,337 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Юборилди" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Узилди" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Буйруқ" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Функциялар" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Бошлаш" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Индекс(лар)ни сақлаш" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Янгилаш" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR майдонидаги устунлар сони" + +#: server_status_monitor.php:521 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Хатоликларни бошқариш:" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Асл қийматларни тиклаш" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: server_status_monitor.php:614 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Тобе сервер статуси жадвалини кўриш" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Жадвалларни танланг" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Жадвал номи нотўғри" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Янги фойдаланувчи қўшиш" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL сўровлари" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Статискани кўрсатиш" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Жадвалларни танланг" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Сўров тури" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундига" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ишлатилмоқда" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Бошланғич саҳифани созлаш" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Тавсиф" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Фильтр" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Паролни ўзгартирмаслик" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Очиқ жадваллар рўйхати" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Очиқ жадваллар рўйхати" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Алоқалар" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11740,16 +11912,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11762,11 +11934,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11774,7 +11946,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11782,31 +11954,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11816,7 +11988,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11825,7 +11997,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11834,7 +12006,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11844,7 +12016,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11853,7 +12025,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11866,7 +12038,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11878,35 +12050,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11916,7 +12088,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11928,11 +12100,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11941,7 +12113,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11950,12 +12122,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11963,7 +12135,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11976,51 +12148,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -12028,35 +12200,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -12065,51 +12237,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -12117,7 +12289,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -12125,7 +12297,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -12134,17 +12306,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -12155,26 +12327,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -12185,19 +12357,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -12205,42 +12377,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" "\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -12252,7 +12424,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -12260,19 +12432,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -12280,13 +12452,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -12295,7 +12467,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -12304,17 +12476,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -12322,13 +12494,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -12336,12 +12508,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -12351,25 +12523,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -12381,7 +12553,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -12392,11 +12564,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -12408,225 +12580,16 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Бошлаш" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Индекс(лар)ни сақлаш" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Янгилаш" - -#: server_status.php:1835 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR майдонидаги устунлар сони" - -#: server_status.php:1851 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Хатоликларни бошқариш:" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Асл қийматларни тиклаш" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" - -#: server_status.php:1906 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Тобе сервер статуси жадвалини кўриш" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Жадвалларни танланг" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Жадвал номи нотўғри" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Янги фойдаланувчи қўшиш" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL сўровлари" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Статискани кўрсатиш" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Жадвалларни танланг" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Сўров тури" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундига" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ишлатилмоқда" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -13293,8 +13256,7 @@ msgstr "Жадвалларни кўрсатиш" #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -"%1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини " -"текширинг)" +"%1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини текширинг)" #: tbl_relation.php:364 #, fuzzy @@ -13321,29 +13283,29 @@ msgstr "Ташқи калит чегаралари" msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13351,131 +13313,131 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Хатоларга эътибор бермаслик" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Маълумотлар базаси мавжуд эмас" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Санани" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL бажаруви" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Версиясини тузиш" @@ -13620,13 +13582,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "SQL Query box" msgid "Slow query logging" msgstr "SQL сўровлари қутиси" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13642,133 +13604,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Жадвалларни танланг" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Версиясини тузиш" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Версия" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Тавсифи" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-кодировка" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "Сўровлар кеши" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Сервер жавоб бермаяпти" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13776,23 +13748,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "Сўровлар кеши" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "Сўровлар кеши" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "Жадваллар сони: \"%s\"" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -14193,268 +14165,268 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Show SQL сўровларини кўрсатиш" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Жадвал тузиш" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Тугалланмаган ёзиш операциялари сони." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Импорт қилинаётган файл формати" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Импорт қилинаётган файл формати" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Сортировка буфери ҳажми" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Сортировка буфери ҳажми" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Индекс кеши" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Кузатиш фаол эмас." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Кузатиш фаол эмас." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Кузатиш фаол эмас." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Сортировка буфери ҳажми" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -14462,49 +14434,49 @@ msgid "" "launch" msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Доимий уланишлар" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Доимий уланишлар" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14619,17 +14591,17 @@ msgid "" "it should not be below 20%%" msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Буфер пули ҳажми" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14643,24 +14615,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Буфер пули ҳажми" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Буфер пули ҳажми" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14675,7 +14647,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14684,31 +14656,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "Максимал уланишлар сони " -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "Максимал уланишлар сони " -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Серверни танланг" + +#~ msgid "Runtime Information" +#~ msgstr "MySQL-сервернинг ҳозирги ҳолати" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Майдонлар сони " + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Янгилаш" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "Сўров тури" + #, fuzzy #~| msgid "Show versions" #~ msgid "Show more actions" diff --git a/po/uz@latin.po b/po/uz@latin.po index c76f0588fd..2ea951ae7c 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,19 +3,19 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-12-13 13:07+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Uzbek (latin) " -"\n" -"Language: uz@latin\n" +"Language-Team: Uzbek (latin) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.4-dev\n" -#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:356 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344 #: libraries/DisplayResults.class.php:809 #: libraries/server_privileges.lib.php:2616 msgid "Show all" @@ -47,7 +47,7 @@ msgstr "" msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:231 +#: browse_foreigners.php:170 gis_data_editor.php:396 js/messages.php:218 #: libraries/DbSearch.class.php:454 libraries/DisplayResults.class.php:1659 #: libraries/TableSearch.class.php:1136 libraries/core.lib.php:541 #: libraries/display_change_password.lib.php:95 @@ -77,21 +77,21 @@ msgstr "Qidirish" #: libraries/sql_query_form.lib.php:367 libraries/sql_query_form.lib.php:424 #: libraries/sql_query_form.lib.php:487 libraries/structure.lib.php:1586 #: libraries/structure.lib.php:1613 libraries/tbl_properties.inc.php:753 -#: pmd_pdf.php:153 prefs_manage.php:266 prefs_manage.php:316 +#: pmd_pdf.php:151 prefs_manage.php:266 prefs_manage.php:316 #: server_binlog.php:115 server_replication.php:224 server_replication.php:327 -#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:515 -#: tbl_tracking.php:678 view_create.php:221 view_operations.php:98 +#: tbl_chart.php:198 tbl_indexes.php:332 tbl_tracking.php:520 +#: tbl_tracking.php:683 view_create.php:221 view_operations.php:98 msgid "Go" msgstr "OK" #: browse_foreigners.php:181 browse_foreigners.php:185 -#: libraries/Index.class.php:561 tbl_tracking.php:376 +#: libraries/Index.class.php:561 tbl_tracking.php:381 msgid "Keyname" msgstr "Indeks nomi" #: browse_foreigners.php:182 browse_foreigners.php:184 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:130 server_status.php:1710 +#: server_plugins.php:130 server_status_variables.php:234 msgid "Description" msgstr "Tavsifi" @@ -112,17 +112,17 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:48 libraries/operations.lib.php:32 +#: db_datadict.php:51 libraries/operations.lib.php:32 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh: " -#: db_datadict.php:154 libraries/operations.lib.php:786 +#: db_datadict.php:157 libraries/operations.lib.php:786 #: libraries/schema/Pdf_Relation_Schema.class.php:1323 #: libraries/tbl_properties.inc.php:835 tbl_printview.php:120 msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:163 libraries/DBQbe.class.php:364 +#: db_datadict.php:166 libraries/DBQbe.class.php:364 #: libraries/Index.class.php:565 libraries/TableSearch.class.php:183 #: libraries/TableSearch.class.php:1184 libraries/insert_edit.lib.php:1566 #: libraries/plugins/export/ExportHtmlword.class.php:276 @@ -136,14 +136,14 @@ msgstr "Jadval izohi" #: libraries/schema/Pdf_Relation_Schema.class.php:1349 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/tbl_properties.inc.php:349 tbl_indexes.php:243 -#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:318 -#: tbl_tracking.php:380 +#: tbl_printview.php:130 tbl_relation.php:361 tbl_tracking.php:323 +#: tbl_tracking.php:385 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:562 +#: db_datadict.php:167 db_printview.php:101 libraries/Index.class.php:562 #: libraries/TableSearch.class.php:184 libraries/insert_edit.lib.php:239 #: libraries/insert_edit.lib.php:243 #: libraries/plugins/export/ExportHtmlword.class.php:279 @@ -161,11 +161,11 @@ msgstr "Maydon nomlari" #: libraries/schema/Pdf_Relation_Schema.class.php:1371 #: libraries/server_privileges.lib.php:1580 libraries/structure.lib.php:781 #: libraries/structure.lib.php:1185 libraries/tbl_properties.inc.php:96 -#: tbl_printview.php:131 tbl_tracking.php:319 tbl_tracking.php:377 +#: tbl_printview.php:131 tbl_tracking.php:324 tbl_tracking.php:382 msgid "Type" msgstr "Tur" -#: db_datadict.php:166 libraries/Index.class.php:568 +#: db_datadict.php:169 libraries/Index.class.php:568 #: libraries/TableSearch.class.php:1185 libraries/insert_edit.lib.php:1575 #: libraries/plugins/export/ExportHtmlword.class.php:282 #: libraries/plugins/export/ExportHtmlword.class.php:397 @@ -177,11 +177,11 @@ msgstr "Tur" #: libraries/schema/Pdf_Relation_Schema.class.php:1352 #: libraries/schema/Pdf_Relation_Schema.class.php:1373 #: libraries/structure.lib.php:1188 libraries/tbl_properties.inc.php:116 -#: tbl_printview.php:132 tbl_tracking.php:321 tbl_tracking.php:383 +#: tbl_printview.php:132 tbl_tracking.php:326 tbl_tracking.php:388 msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:285 +#: db_datadict.php:170 libraries/plugins/export/ExportHtmlword.class.php:285 #: libraries/plugins/export/ExportHtmlword.class.php:400 #: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:367 @@ -192,11 +192,11 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1374 #: libraries/structure.lib.php:213 libraries/structure.lib.php:1189 #: libraries/tbl_properties.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:322 +#: tbl_tracking.php:327 msgid "Default" msgstr "Andoza" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:404 +#: db_datadict.php:174 libraries/plugins/export/ExportHtmlword.class.php:404 #: libraries/plugins/export/ExportLatex.class.php:508 #: libraries/plugins/export/ExportOdt.class.php:469 #: libraries/plugins/export/ExportTexytext.class.php:374 @@ -205,7 +205,7 @@ msgstr "Andoza" msgid "Links to" msgstr "Aloqalar" -#: db_datadict.php:173 db_printview.php:107 +#: db_datadict.php:176 db_printview.php:107 #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 #: libraries/config/messages.inc.php:131 #: libraries/plugins/export/ExportHtmlword.class.php:409 @@ -218,7 +218,7 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:237 js/messages.php:253 libraries/Index.class.php:431 +#: db_datadict.php:240 js/messages.php:240 libraries/Index.class.php:431 #: libraries/Index.class.php:470 libraries/Index.class.php:841 #: libraries/config.values.php:50 libraries/config.values.php:65 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:340 @@ -236,12 +236,12 @@ msgstr "Izohlar" #: libraries/server_privileges.lib.php:2476 #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:282 prefs_manage.php:131 sql.php:412 -#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:339 -#: tbl_tracking.php:393 tbl_tracking.php:398 +#: sql.php:507 sql.php:508 tbl_printview.php:186 tbl_tracking.php:344 +#: tbl_tracking.php:398 tbl_tracking.php:403 msgid "No" msgstr "Yo‘q" -#: db_datadict.php:237 js/messages.php:252 libraries/Index.class.php:432 +#: db_datadict.php:240 js/messages.php:239 libraries/Index.class.php:432 #: libraries/Index.class.php:469 libraries/Index.class.php:841 #: libraries/config.values.php:49 libraries/config.values.php:64 #: libraries/config/FormDisplay.tpl.php:260 libraries/mult_submits.inc.php:69 @@ -264,8 +264,8 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:2490 libraries/structure.lib.php:1273 #: libraries/user_preferences.lib.php:280 prefs_manage.php:130 #: server_databases.php:103 server_databases.php:110 sql.php:505 sql.php:506 -#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:339 -#: tbl_tracking.php:391 tbl_tracking.php:396 +#: tbl_printview.php:187 tbl_structure.php:50 tbl_tracking.php:344 +#: tbl_tracking.php:396 tbl_tracking.php:401 msgid "Yes" msgstr "Ha" @@ -323,7 +323,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1993 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2874 libraries/structure.lib.php:762 -#: tbl_tracking.php:757 +#: tbl_tracking.php:762 msgid "Table" msgstr "Jadval" @@ -343,7 +343,7 @@ msgstr "Hajmi" msgid "in use" msgstr "ishlatilmoqda" -#: db_printview.php:185 libraries/db_info.inc.php:69 +#: db_printview.php:185 libraries/Util.class.php:4107 #: libraries/plugins/export/ExportSql.class.php:946 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 #: libraries/structure.lib.php:803 libraries/structure.lib.php:1782 @@ -351,7 +351,7 @@ msgstr "ishlatilmoqda" msgid "Creation" msgstr "Tuzish" -#: db_printview.php:194 libraries/db_info.inc.php:75 +#: db_printview.php:194 libraries/Util.class.php:4113 #: libraries/plugins/export/ExportSql.class.php:959 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 #: libraries/structure.lib.php:810 libraries/structure.lib.php:1789 @@ -359,7 +359,7 @@ msgstr "Tuzish" msgid "Last update" msgstr "Oxirgi yangilanish" -#: db_printview.php:203 libraries/db_info.inc.php:81 +#: db_printview.php:203 libraries/Util.class.php:4119 #: libraries/plugins/export/ExportSql.class.php:972 #: libraries/schema/Pdf_Relation_Schema.class.php:1338 #: libraries/structure.lib.php:817 libraries/structure.lib.php:1797 @@ -415,7 +415,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/server_privileges.lib.php:1983 #: libraries/server_privileges.lib.php:2224 #: libraries/server_privileges.lib.php:2865 server_databases.php:201 -#: server_status.php:1334 sql.php:1089 tbl_tracking.php:756 +#: server_status.php:325 sql.php:1089 tbl_tracking.php:761 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -423,17 +423,17 @@ msgstr "Ma`lumotlar bazasi" msgid "Last version" msgstr "Oxirgi vеrsiya" -#: db_tracking.php:81 tbl_tracking.php:759 +#: db_tracking.php:81 tbl_tracking.php:764 msgid "Created" msgstr "Tuzildi" -#: db_tracking.php:82 tbl_tracking.php:760 +#: db_tracking.php:82 tbl_tracking.php:765 msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:83 js/messages.php:185 libraries/Menu.class.php:458 +#: db_tracking.php:83 js/messages.php:172 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1346 sql.php:1162 tbl_tracking.php:761 +#: server_status.php:337 sql.php:1162 tbl_tracking.php:766 msgid "Status" msgstr "Holat" @@ -448,7 +448,7 @@ msgstr "Amal" #: db_tracking.php:85 libraries/DBQbe.class.php:466 #: libraries/DisplayResults.class.php:903 tbl_change.php:235 -#: tbl_tracking.php:762 +#: tbl_tracking.php:767 msgid "Show" msgstr "Ko‘rsatish" @@ -464,11 +464,11 @@ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" msgid "Drop" msgstr "O‘chirish" -#: db_tracking.php:120 tbl_tracking.php:717 tbl_tracking.php:771 +#: db_tracking.php:120 tbl_tracking.php:722 tbl_tracking.php:776 msgid "active" msgstr "faol" -#: db_tracking.php:122 tbl_tracking.php:719 tbl_tracking.php:773 +#: db_tracking.php:122 tbl_tracking.php:724 tbl_tracking.php:778 msgid "not active" msgstr "faol emas" @@ -476,11 +476,11 @@ msgstr "faol emas" msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:139 tbl_tracking.php:483 tbl_tracking.php:793 +#: db_tracking.php:139 tbl_tracking.php:488 tbl_tracking.php:798 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:140 tbl_tracking.php:288 tbl_tracking.php:798 +#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:803 msgid "Structure snapshot" msgstr "Tuzilma rasmi" @@ -554,49 +554,49 @@ msgstr "" msgid "SRID" msgstr "" -#: gis_data_editor.php:184 js/messages.php:328 +#: gis_data_editor.php:184 js/messages.php:315 #: libraries/DisplayResults.class.php:1643 msgid "Geometry" msgstr "" -#: gis_data_editor.php:206 js/messages.php:324 +#: gis_data_editor.php:206 js/messages.php:311 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:322 +#: gis_data_editor.php:362 js/messages.php:309 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:323 +#: gis_data_editor.php:366 js/messages.php:310 msgid "Y" msgstr "" #: gis_data_editor.php:232 gis_data_editor.php:287 gis_data_editor.php:360 -#: js/messages.php:325 +#: js/messages.php:312 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:245 gis_data_editor.php:300 gis_data_editor.php:373 -#: js/messages.php:331 +#: js/messages.php:318 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Indеks(lar)ni saqlash" -#: gis_data_editor.php:262 js/messages.php:326 +#: gis_data_editor.php:262 js/messages.php:313 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:330 +#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:329 +#: gis_data_editor.php:267 gis_data_editor.php:343 js/messages.php:316 msgid "Inner Ring" msgstr "" @@ -606,17 +606,17 @@ msgstr "" msgid "Add a linestring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:332 +#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:325 js/messages.php:327 +#: gis_data_editor.php:325 js/messages.php:314 msgid "Polygon" msgstr "" -#: gis_data_editor.php:384 js/messages.php:333 +#: gis_data_editor.php:384 js/messages.php:320 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" @@ -770,8 +770,9 @@ msgstr "tanlovlar" msgid "Database server" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: index.php:234 libraries/Menu.class.php:150 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:508 server_status.php:827 +#: index.php:234 libraries/Menu.class.php:150 +#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:654 +#: libraries/config/messages.inc.php:508 msgid "Server" msgstr "Server" @@ -792,7 +793,7 @@ msgstr "Protokol versiyasi" #: index.php:250 libraries/server_privileges.lib.php:1578 #: libraries/server_privileges.lib.php:2389 #: libraries/server_privileges.lib.php:2806 -#: libraries/server_privileges.lib.php:2854 server_status.php:1326 +#: libraries/server_privileges.lib.php:2854 server_status.php:317 msgid "User" msgstr "Foydalanuvchi" @@ -1080,12 +1081,12 @@ msgstr "Privilegiyalar qayta yuklanmoqda" msgid "Removing Selected Users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: js/messages.php:58 js/messages.php:137 tbl_tracking.php:289 -#: tbl_tracking.php:484 +#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293 +#: tbl_tracking.php:489 msgid "Close" msgstr "Yopish" -#: js/messages.php:61 js/messages.php:286 +#: js/messages.php:61 js/messages.php:273 #: libraries/DisplayResults.class.php:3319 libraries/Index.class.php:593 #: libraries/Util.class.php:691 libraries/Util.class.php:1236 #: libraries/Util.class.php:3485 libraries/Util.class.php:3486 @@ -1095,17 +1096,17 @@ msgstr "Yopish" msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:62 server_status.php:857 +#: js/messages.php:62 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serverni tanlang" -#: js/messages.php:63 server_status.php:860 +#: js/messages.php:63 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:885 +#: js/messages.php:64 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1118,13 +1119,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:171 libraries/structure.lib.php:2217 -#: server_databases.php:271 server_status.php:1225 server_status.php:1294 +#: server_databases.php:271 server_status.php:187 server_status.php:277 #: tbl_printview.php:331 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:671 server_status.php:1098 +#: js/messages.php:70 libraries/ServerStatusData.class.php:198 +#: server_status_queries.php:155 msgid "Other" msgstr "" @@ -1139,56 +1141,18 @@ msgid "." msgstr "," #: js/messages.php:76 -msgid "KiB sent since last refresh" -msgstr "" - -#: js/messages.php:77 -msgid "KiB received since last refresh" -msgstr "" - -#: js/messages.php:78 -#, fuzzy -#| msgid "Server Choice" -msgid "Server traffic (in KiB)" -msgstr "Serverni tanlang" - -#: js/messages.php:79 -msgid "Connections since last refresh" -msgstr "" - -#: js/messages.php:80 js/messages.php:118 server_status.php:1393 -msgid "Processes" -msgstr "Jarayonlar" - -#: js/messages.php:81 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Ulanishlar" -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:83 -msgid "Questions since last refresh" -msgstr "" - -#. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:85 -msgid "Questions (executed statements by the server)" -msgstr "" - -#: js/messages.php:87 server_status.php:828 -#, fuzzy -#| msgid "Show statistics" -msgid "Query statistics" -msgstr "Statiskani ko‘rsatish" - -#: js/messages.php:90 +#: js/messages.php:79 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: js/messages.php:91 +#: js/messages.php:80 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 " @@ -1196,221 +1160,226 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "So‘rovlar keshi" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "So‘rovlar keshi" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "So‘rovlar keshi" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "" -#: js/messages.php:104 +#: js/messages.php:91 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Jurnal fayllari soni" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "" -#: js/messages.php:106 +#: js/messages.php:93 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Bufer puli" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "Jami" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "Bo‘sh sahifalar soni " -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "Ulanishlar" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "Jarayonlar" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "Bayt" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "Jadvallar soni: \"%s\"" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 #, fuzzy #| msgid "settings" msgid "Settings" msgstr "tanlovlar" -#: js/messages.php:134 +#: js/messages.php:121 #, fuzzy #| msgid "Rename database to" msgid "Remove chart" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "To‘rga bog‘lab qo‘yish" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "Yo‘q" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1418,552 +1387,554 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Fayl kabi saqlash" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Faollashtirilgan" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Faolsizlantirish" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "settings" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title" msgid "Chart Title" msgstr "Hisobot sarlavhasi" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Farq" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "Yuklash" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "O‘qishga ruxsat so‘rash" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Go to database" msgid "Jump to Log table" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Ma`lumotlar bazasi mavjud emas" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Tahlil" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "So‘rov tahlili" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "Vaqt" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Jami" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profillashtirish" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Jadval " -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Kodirovka" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Apply index(s)" msgid "Edit chart" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL so‘rovlari" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Jadvallar ko‘rinishini sozlash" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "Filtr" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "Qo‘yilgan qatorlar soni" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Jami" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "Yuklash" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Qayta yuklash" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "So‘rovni yangilash" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentatsiya" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "Tafsilotlar..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Moslashlar" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 #, fuzzy #| msgid "Load" msgid "Loading" msgstr "Yuklash" -#: js/messages.php:236 +#: js/messages.php:223 #, fuzzy #| msgid "Processes" msgid "Processing Request" msgstr "Jarayonlar" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "OK" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 #, fuzzy #| msgid "Rename database to" msgid "Renaming Databases" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:248 +#: js/messages.php:235 #, fuzzy #| msgid "Rename database to" msgid "Reload Database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: js/messages.php:249 +#: js/messages.php:236 #, fuzzy #| msgid "Copy database to" msgid "Copying Database" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:250 +#: js/messages.php:237 #, fuzzy #| msgid "Charset" msgid "Changing Charset" msgstr "Kodirovka" -#: js/messages.php:251 +#: js/messages.php:238 #, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column" msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart." -#: js/messages.php:256 +#: js/messages.php:243 #, fuzzy #| msgid "Use Tables" msgid "Insert Table" msgstr "Jadvallarni ishlatish" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Apply index(s)" msgid "Hide indexes" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "To‘rni ko‘rsatish" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Faollashtirilgan" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "Faolsizlantirilgan" -#: js/messages.php:264 +#: js/messages.php:251 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Qidirish" -#: js/messages.php:265 +#: js/messages.php:252 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:266 +#: js/messages.php:253 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:267 +#: js/messages.php:254 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Ko‘rib chiqish" -#: js/messages.php:268 +#: js/messages.php:255 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "\"%s\" o‘chirilmoqda" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Maydonlar soni " -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Yangi foydalanuvchi qo‘shish" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" -#: js/messages.php:284 +#: js/messages.php:271 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:285 +#: js/messages.php:272 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "O‘zgartirish" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "Maksimum bajarilish vaqti" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d soni to‘g‘ri qator raqami emas!" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1972,226 +1943,231 @@ msgstr "%d soni to‘g‘ri qator raqami emas!" msgid "Save" msgstr "Saqlash" -#: js/messages.php:296 +#: js/messages.php:283 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:297 +#: js/messages.php:284 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "Qidirish" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Ustun qo‘shish/o‘chirish" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "So‘rov natijalarini ishlatish" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Ustun(lar) qo‘shish" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "" -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "Maydon nomlari" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "Qator(lar)ni yangilash" -#: js/messages.php:376 +#: js/messages.php:364 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:378 +#: js/messages.php:366 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:381 +#: js/messages.php:369 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Apply index(s)" msgid "Hide Panel" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2202,33 +2178,33 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:394 +#: js/messages.php:382 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2236,96 +2212,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:429 +#: js/messages.php:417 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "" -#: js/messages.php:431 +#: js/messages.php:419 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:432 +#: js/messages.php:420 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "May" -#: js/messages.php:434 +#: js/messages.php:422 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:435 +#: js/messages.php:423 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:436 +#: js/messages.php:424 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "" -#: js/messages.php:438 +#: js/messages.php:426 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2333,78 +2309,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "Dek" -#: js/messages.php:475 +#: js/messages.php:463 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:476 +#: js/messages.php:464 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:477 +#: js/messages.php:465 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "" -#: js/messages.php:480 +#: js/messages.php:468 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2412,115 +2388,115 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Yo‘q" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "" -#: js/messages.php:538 +#: js/messages.php:526 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:539 +#: js/messages.php:527 #, fuzzy #| msgid "per second" msgid "Second" @@ -2575,16 +2551,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "sekundiga" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "minutiga" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "soatiga" @@ -2610,7 +2586,7 @@ msgstr "Shrift o‘lchami" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "O‘sish tartibida" @@ -2619,7 +2595,7 @@ msgstr "O‘sish tartibida" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "Kamayish tartibida" @@ -2740,7 +2716,7 @@ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "O‘chirish" @@ -2944,7 +2920,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "Tugatish" @@ -3001,12 +2977,13 @@ msgstr "Barchasini belgilash" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" @@ -3014,7 +2991,7 @@ msgstr "Eksport" msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -3105,16 +3082,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -3128,21 +3105,21 @@ msgstr "Indeks belgilanmagan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "Elementlar soni" @@ -3152,13 +3129,13 @@ msgstr "Elementlar soni" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "Taqqoslash" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "Izoh" @@ -3201,7 +3178,7 @@ msgstr "Namoyish" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "Tuzilishi" @@ -3274,36 +3251,37 @@ msgstr "Hodisalar" msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "Foydalanuvchi" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "Ikkilik jurnal" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "Jadval turlari" @@ -3362,6 +3340,108 @@ msgstr "Jadvallarni sanash" msgid "There are no recent tables" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL so‘rovi" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "Qayta ishlovchi dastur" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "So‘rovlar keshi" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "Oqimlar" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "Vaqtinchalik ma`lumotlar" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "Kechiktirilgan qo‘yilmalar" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "Indeks keshi" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "Birlashishlar" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "Sortirovka" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "Jadvallar" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "Tranzaksiyalar koordinatori" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "Fayllar soni" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "Barcha jadvallarni yopish" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "Ochiq jadvallar ro‘yxati" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "Tobe serverlar haqida ma`lumot" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "So‘rovlar keshini defragmentatsiya qilish" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB ahvoli" + +#: libraries/ServerStatusData.class.php:345 +#, fuzzy +#| msgid "Show statistics" +msgid "Query statistics" +msgstr "Statiskani ko‘rsatish" + +#: libraries/ServerStatusData.class.php:349 +#, fuzzy +#| msgid "See slave status table" +msgid "All status variables" +msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" + +#: 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." @@ -3458,7 +3538,7 @@ msgstr "Operator" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "Qiymati" @@ -3867,11 +3947,6 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL so‘rovi" - #: libraries/Util.class.php:710 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:292 @@ -3908,7 +3983,7 @@ msgid "Create PHP Code" msgstr "PHP-kod" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "Yangilash" @@ -4013,13 +4088,6 @@ msgstr "Chop etish" msgid "shared" msgstr "" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "Jadvallar" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -4066,25 +4134,25 @@ msgstr "\"%s\" ma`lumotlar bazasining privilegiyalarni tekshirish" msgid "Check Privileges" msgstr "Privilegiyalarni tekshirish" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -4096,43 +4164,43 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda " "sozlanishi SHART!" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6543,8 +6611,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "Foydalanuvchi" @@ -7285,10 +7353,6 @@ msgstr "" msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB ahvoli" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "Ishlatilish" @@ -8008,18 +8072,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "jadval nomi" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8125,17 +8189,17 @@ msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "Faqat tuzilishi" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "Faqat ma`lumotlar" @@ -8571,8 +8635,7 @@ msgstr "Mavjud MIME turlari" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "Xost" @@ -9221,7 +9284,7 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "O‘zgaruvchi" @@ -9816,7 +9879,7 @@ msgstr "Atributlar" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "Qo‘shimcha" @@ -10557,7 +10620,7 @@ msgstr "Ushbu jadvalga o‘tish" msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10938,7 +11001,7 @@ msgid "Toggle relation lines" msgstr "" "Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" @@ -11020,41 +11083,41 @@ msgstr "Sahifa tuzildi" msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sahifalar soni " -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fayllarni import qilish" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Masshtab" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yangi indeks tuzish" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Foydalanuvchi nomi" -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "Masshtab" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "tavsiya etilgan" @@ -11182,15 +11245,11 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "Fayllar soni" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -11274,7 +11333,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "Vеrsiya" @@ -11337,10 +11396,6 @@ msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" @@ -11495,204 +11550,31 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:657 -msgid "Handler" -msgstr "Qayta ishlovchi dastur" - -#: server_status.php:658 -msgid "Query cache" -msgstr "So‘rovlar keshi" - -#: server_status.php:659 -msgid "Threads" -msgstr "Oqimlar" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "Vaqtinchalik ma`lumotlar" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "Kechiktirilgan qo‘yilmalar" - -#: server_status.php:663 -msgid "Key cache" -msgstr "Indeks keshi" - -#: server_status.php:664 -msgid "Joins" -msgstr "Birlashishlar" - -#: server_status.php:666 -msgid "Sorting" -msgstr "Sortirovka" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "Tranzaksiyalar koordinatori" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "Barcha jadvallarni yopish" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "Ochiq jadvallar ro‘yxati" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "Tobe serverlar haqida ma`lumot" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "So‘rovlar keshini defragmentatsiya qilish" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "MySQL-serverning hozirgi holati" - -#: server_status.php:830 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of data points: " -msgstr "Maydonlar soni " - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "Yangilash" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "Filtr" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "Parolni o‘zgartirmaslik" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "Ochiq jadvallar ro‘yxati" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "Ochiq jadvallar ro‘yxati" - -#: server_status.php:930 -#, fuzzy -#| msgid "Relations" -msgid "Related links:" -msgstr "Aloqalar" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "So‘rov turi" - -#: server_status.php:966 -#, fuzzy -#| msgid "Functions" -msgid "Instructions" -msgstr "Funksiyalar" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "Boshlang‘ich sahifani sozlash" - -#: server_status.php:1044 -msgid "Statements" -msgstr "Tavsif" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:1153 +#: server_status.php:93 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11701,21 +11583,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1155 +#: server_status.php:98 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1157 +#: server_status.php:103 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1160 +#: server_status.php:109 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11730,11 +11612,11 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11743,47 +11625,337 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "Buyruq" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +#| msgid "Functions" +msgid "Instructions" +msgstr "Funksiyalar" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Boshlash" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Indеks(lar)ni saqlash" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "Yangilash" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR maydonidagi ustunlar soni" + +#: server_status_monitor.php:521 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Xatoliklarni boshqarish:" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Asl qiymatlarni tiklash" + +#: server_status_monitor.php:544 +msgid "Monitor Instructions" +msgstr "" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: server_status_monitor.php:614 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Jadvallarni tanlang" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Jadval nomi noto‘g‘ri" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL so‘rovlari" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Statiskani ko‘rsatish" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Jadvallarni tanlang" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "So‘rov turi" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundiga" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ishlatilmoqda" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "Boshlang‘ich sahifani sozlash" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "Tavsif" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "Filtr" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "Parolni o‘zgartirmaslik" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "Ochiq jadvallar ro‘yxati" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "Ochiq jadvallar ro‘yxati" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Relations" +msgid "Related links:" +msgstr "Aloqalar" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -11792,16 +11964,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -11814,11 +11986,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11826,7 +11998,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11834,31 +12006,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -11868,7 +12040,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -11877,7 +12049,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: server_status.php:1543 +#: server_status_variables.php:393 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." @@ -11886,7 +12058,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -11896,7 +12068,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11905,7 +12077,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -11919,7 +12091,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -11931,35 +12103,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11969,7 +12141,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11981,11 +12153,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11994,7 +12166,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -12003,12 +12175,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -12016,7 +12188,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -12030,51 +12202,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:1574 +#: server_status_variables.php:516 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." @@ -12082,35 +12254,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -12119,51 +12291,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:1594 +#: server_status_variables.php:579 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." @@ -12171,7 +12343,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: server_status.php:1595 +#: server_status_variables.php:584 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." @@ -12179,7 +12351,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:1596 +#: server_status_variables.php:588 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 " @@ -12188,17 +12360,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -12210,26 +12382,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -12240,19 +12412,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -12260,42 +12432,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -12307,7 +12479,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -12315,19 +12487,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -12335,13 +12507,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -12351,7 +12523,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -12360,17 +12532,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -12378,13 +12550,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -12392,12 +12564,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -12407,26 +12579,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -12439,7 +12611,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -12450,11 +12622,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -12466,225 +12638,16 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: server_status.php:1799 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Boshlash" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Indеks(lar)ni saqlash" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "Yangilash" - -#: server_status.php:1835 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR maydonidagi ustunlar soni" - -#: server_status.php:1851 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Xatoliklarni boshqarish:" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Asl qiymatlarni tiklash" - -#: server_status.php:1856 -msgid "Monitor Instructions" -msgstr "" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" - -#: server_status.php:1906 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Jadvallarni tanlang" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Jadval nomi noto‘g‘ri" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Yangi foydalanuvchi qo‘shish" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL so‘rovlari" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Statiskani ko‘rsatish" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Jadvallarni tanlang" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "So‘rov turi" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekundiga" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ishlatilmoqda" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -13382,29 +13345,29 @@ msgstr "Tashqi kalit chegaralari" msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13412,131 +13375,131 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: tbl_tracking.php:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Xatolarga e`tibor bermaslik" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "Sanani" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL damp" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "SQL bajaruvi" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "Hozir faollashtirish" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "Vеrsiyasini tuzish" @@ -13681,13 +13644,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "SQL Query box" msgid "Slow query logging" msgstr "SQL so‘rovlari qutisi" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "The server is not responding" msgid "The slow query log is disabled." @@ -13703,133 +13666,143 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "" -#: libraries/advisory_rules.txt:93 +#: 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 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "Jadvallarni tanlang" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "Vеrsiyasini tuzish" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "Vеrsiya" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "Tavsifi" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL-kodirovka" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "So‘rovlar keshi" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Server javob bermayapti" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -13837,23 +13810,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "So‘rovlar keshi" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "So‘rovlar keshi" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table(s)" msgid "Temp disk rate" msgstr "Jadvallar soni: \"%s\"" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -14254,269 +14227,269 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "Show SQL so‘rovlarini ko‘rsatish" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "Jadval tuzish" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "Import qilinayotgan fayl formati" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "Import qilinayotgan fayl formati" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Sortirovka buferi hajmi" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "Sortirovka buferi hajmi" #: libraries/advisory_rules.txt:355 +msgid "Table lock wait rate" +msgstr "" + +#: libraries/advisory_rules.txt:360 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "Sortirovka buferi hajmi" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "Indeks keshi" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "Kuzatish faol emas." -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "Kuzatish faol emas." -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Kuzatish faol emas." -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "Sortirovka buferi hajmi" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -14524,49 +14497,49 @@ msgid "" "launch" msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Doimiy ulanishlar" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Doimiy ulanishlar" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -14681,17 +14654,17 @@ msgid "" "it should not be below 20%%" msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "Bufer puli hajmi" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -14705,24 +14678,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "Bufer puli hajmi" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "Bufer puli hajmi" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -14737,7 +14710,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -14746,31 +14719,54 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "Maksimal ulanishlar soni " -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "Maksimal ulanishlar soni " -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 #, fuzzy #| msgid "max. concurrent connections" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Server Choice" +#~ msgid "Server traffic (in KiB)" +#~ msgstr "Serverni tanlang" + +#~ msgid "Runtime Information" +#~ msgstr "MySQL-serverning hozirgi holati" + +#, fuzzy +#~| msgid "Number of fields" +#~ msgid "Number of data points: " +#~ msgstr "Maydonlar soni " + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "Yangilash" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "So‘rov turi" + #, fuzzy #~| msgid "Show versions" #~ msgid "Show more actions" diff --git a/po/zh_CN.po b/po/zh_CN.po index cd8fab9f30..e84d76489f 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-22 15:50+0200\n" "Last-Translator: Liang Comver \n" "Language-Team: Chinese (China) 设置菜单恢复默认设置。" -#: js/messages.php:93 +#: js/messages.php:82 msgid "Query cache efficiency" msgstr "查询缓存效率" -#: js/messages.php:94 +#: js/messages.php:83 msgid "Query cache usage" msgstr "查询缓存使用" -#: js/messages.php:95 +#: js/messages.php:84 msgid "Query cache used" msgstr "已用查询缓存" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "系统 CPU 使用" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "系统内存" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "系统交换空间" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "平均负载" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "内存总数" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "已缓存的内存" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "已缓冲的内存" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "空闲内存" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "已用内存" -#: js/messages.php:110 +#: js/messages.php:97 msgid "Total Swap" msgstr "交换空间总数" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "已缓存的交换空间" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "已用交换空间" -#: js/messages.php:113 +#: js/messages.php:100 msgid "Free Swap" msgstr "空闲交换空间" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "已发送字节数" -#: js/messages.php:116 +#: js/messages.php:103 msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "连接" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "进程" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "字节" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, php-format msgid "%d table(s)" msgstr "%d 张表" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 msgid "Questions" msgstr "内部查询" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "设置" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "删除图表" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "编辑标题和标签" -#: js/messages.php:136 +#: js/messages.php:123 msgid "Add chart to grid" msgstr "添加图表" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "请至少添加一个数据" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "无" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "继续监控" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "暂停监控" -#: js/messages.php:143 +#: js/messages.php:130 msgid "general_log and slow_query_log are enabled." msgstr "general_log 和 slow_query_log 已启用。" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log 已启用。" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log 已启用。" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log 和 general_log 已禁用。" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "log_output 未设置到 TABLE 。" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "log_output 已设置到 TABLE 。" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1281,94 +1254,94 @@ msgstr "" "slow_query_log 已启用,但服务器仅记录查询时间超过 %d 秒的查询。请根据您的系统" "适当设置 long_query_time 为 0-2 秒。" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time 已设为 %d 秒。" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "下列设置将被应用到整个服务器直到服务器重新启动:" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, php-format msgid "Set log_output to %s" msgstr "设置 log_output 为 %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "启用 %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "禁用 %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "设置 long_query_time 为 %d 秒" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "无法修改这些变量。请以 root 登录或联系数据库管理员。" -#: js/messages.php:161 +#: js/messages.php:148 msgid "Change settings" msgstr "修改设置" -#: js/messages.php:162 +#: js/messages.php:149 msgid "Current settings" msgstr "当前设置" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 msgid "Chart Title" msgstr "图表标题" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 msgid "Differential" msgstr "差异" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "除以 %s" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "单位" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "从慢查询日志" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "从通用日志" -#: js/messages.php:172 +#: js/messages.php:159 msgid "Analysing logs" msgstr "正在分析日志" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "正在加载并分析日志。请稍候。" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "取消请求" -#: js/messages.php:175 +#: js/messages.php:162 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 " @@ -1377,105 +1350,105 @@ msgstr "" "这一列显示了相同的查询被组合在一起了。然而,有且只有SQL文本被修改过了,因此查" "询其他属性例如启动时间可能不同。" -#: js/messages.php:176 +#: js/messages.php:163 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 "因选择了分组 INSERT 查询,相同表的 INSERT 查询将被分为一组,忽略数据。" -#: js/messages.php:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "日志数据已加载。查询执行时间为:" -#: js/messages.php:179 +#: js/messages.php:166 msgid "Jump to Log table" msgstr "转到日志表" -#: js/messages.php:180 +#: js/messages.php:167 msgid "No data found" msgstr "未找到数据" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "日志已分析,时间段内没有数据。" -#: js/messages.php:183 +#: js/messages.php:170 msgid "Analyzing…" msgstr "正在分析…" -#: js/messages.php:184 +#: js/messages.php:171 msgid "Explain output" msgstr "分析输出" -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "时间" -#: js/messages.php:187 +#: js/messages.php:174 msgid "Total time:" msgstr "总时间:" -#: js/messages.php:188 +#: js/messages.php:175 msgid "Profiling results" msgstr "性能分析结果" -#: js/messages.php:189 +#: js/messages.php:176 msgctxt "Display format" msgid "Table" msgstr "表格" -#: js/messages.php:190 +#: js/messages.php:177 msgid "Chart" msgstr "图表" -#: js/messages.php:191 +#: js/messages.php:178 msgid "Edit chart" msgstr "编辑图表" -#: js/messages.php:192 +#: js/messages.php:179 msgid "Series" msgstr "数据" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 msgid "Log table filter options" msgstr "日志表过滤选项" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "快速搜索" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "根据内容/正则表达式搜索:" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "忽略 WHERE 语句中的变量值对查询分组" -#: js/messages.php:200 +#: js/messages.php:187 msgid "Sum of grouped rows:" msgstr "分组后的行数:" -#: js/messages.php:201 +#: js/messages.php:188 msgid "Total:" msgstr "总数:" -#: js/messages.php:203 +#: js/messages.php:190 msgid "Loading logs" msgstr "正在加载日志" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "监控刷新失败" -#: js/messages.php:205 +#: js/messages.php:192 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1484,258 +1457,260 @@ msgstr "" "请求新图表数据时服务器返回了无效数据。这可能是因为会话过期。请尝试重新加载页" "面。" -#: js/messages.php:206 +#: js/messages.php:193 msgid "Reload page" msgstr "重新载入页面" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "影响的行数:" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "解析配置文件失败。它看上去不像有效的 JSON 代码。" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "导入配置失败。正在重设为默认设置…" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" -#: js/messages.php:213 +#: js/messages.php:200 msgid "Import monitor configuration" msgstr "导入监控设置" -#: js/messages.php:214 +#: js/messages.php:201 msgid "Please select the file you want to import" msgstr "请选择要导入的文件" -#: js/messages.php:216 +#: js/messages.php:203 msgid "Analyse Query" msgstr "查询分析" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "建议系统" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "可能存在的性能问题" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "问题" -#: js/messages.php:223 +#: js/messages.php:210 msgid "Recommendation" msgstr "建议" -#: js/messages.php:224 +#: js/messages.php:211 msgid "Rule details" msgstr "规则详细" -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "认证" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "已使用的 变量/公式" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "测试" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "取消" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "正在加载" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "正在处理请求" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "处理请求时发生错误" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "未选中数据库。" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "正在删除字段" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "正在添加主键" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "确定" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "点击解除这条通知" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "正在重命名数据库" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "重新载入数据库" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "正在复制数据库" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "正在修改字符集" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "数据表至少要有一个字段" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "插入表格" -#: js/messages.php:257 +#: js/messages.php:244 msgid "Hide indexes" msgstr "隐藏索引" -#: js/messages.php:258 +#: js/messages.php:245 msgid "Show indexes" msgstr "显示索引" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "禁止选定不相关的主键" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "已启用" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "已禁用" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "正在搜索" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "隐藏搜索结果" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "显示搜索结果" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "正在浏览" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "正在删除" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "函数定义中必须包含 RETURN 语句!" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET 编辑器" -#: js/messages.php:275 +#: js/messages.php:262 #, php-format msgid "Values for column %s" msgstr "字段 %s 的值" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "新字段的值" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "请将每个值分别输入" -#: js/messages.php:278 +#: js/messages.php:265 #, php-format msgid "Add %d value(s)" msgstr "添加 %d 个值" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "注意:如果文件包含多个表,它们会被合并成一个" -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "隐藏查询框" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "显示查询框" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "修改" -#: js/messages.php:289 +#: js/messages.php:276 msgid "Query execution time" msgstr "查询执行时间" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1744,130 +1719,135 @@ msgstr "%d 不是有效行数。" msgid "Save" msgstr "保存" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "隐藏搜索条件" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 msgid "Zoom Search" msgstr "缩放搜索" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "每个点代表一个数据行。" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "悬浮至一个点上会显示它的标签。" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "要放大,请用鼠标选择图表的一块区域。" -#: js/messages.php:308 +#: js/messages.php:295 #, fuzzy #| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "点击重置缩放连接以回到初始状态" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "点击数据点以查看或编辑数据行。" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "拖拽右下角以改变图表大小。" -#: js/messages.php:314 +#: js/messages.php:301 msgid "Select two columns" msgstr "选择两列" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "选择两个不同的列" -#: js/messages.php:316 +#: js/messages.php:303 msgid "Query results" msgstr "查询结果" -#: js/messages.php:317 +#: js/messages.php:304 msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "忽略" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "复制" -#: js/messages.php:336 +#: js/messages.php:323 msgid "Add columns" msgstr "添加字段" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "给字段添加选项 " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "按 Esc 键取消编辑" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "拖拽以调整顺序" -#: js/messages.php:352 +#: js/messages.php:340 msgid "Click to sort" msgstr "点击以排序" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "点击以标记/取消标记" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "点击下箭头以设置显示的字段" -#: js/messages.php:357 +#: js/messages.php:345 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." @@ -1875,7 +1855,7 @@ msgstr "" "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除链接相关功能可能无法正" "常使用。" -#: js/messages.php:362 +#: js/messages.php:350 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -1884,66 +1864,66 @@ msgid "" "content." msgstr "您可以通过直接点击内容以编辑绝大部分字段。" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "您可以通过直接点击内容以编辑绝大部分字段。" -#: js/messages.php:370 +#: js/messages.php:358 msgid "Go to link" msgstr "转到链接" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "字段名" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "更新行" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "生成" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "修改密码" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "更多" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "全部显示" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Hide indexes" msgid "Hide Panel" msgstr "隐藏索引" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "在权限表内找不到选中的用户。" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1951,266 +1931,266 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ",最新稳定版本:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "已更新" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "完成" -#: js/messages.php:417 +#: js/messages.php:405 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:422 +#: js/messages.php:410 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "今天" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "一月" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "二月" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "三月" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "四月" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "五月" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "六月" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "七月" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "八月" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "九月" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "十月" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "十一月" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "十二月" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "星期日" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "星期一" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "星期四" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "星期五" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "周" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "日历-月-年" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "时" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "分" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "秒" @@ -2263,16 +2243,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "每分钟" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "每小时" @@ -2298,7 +2278,7 @@ msgstr "字号" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "递增" @@ -2307,7 +2287,7 @@ msgstr "递增" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "递减" @@ -2421,7 +2401,7 @@ msgstr "删除 %s 表中所有匹配的记录?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "删除" @@ -2592,7 +2572,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "杀死" @@ -2647,12 +2627,13 @@ msgstr "全选" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" @@ -2660,7 +2641,7 @@ msgstr "导出" msgid "Query results operations" msgstr "查询结果选项" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2741,16 +2722,16 @@ msgstr "无法读取移动后的上传文件。" msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2764,21 +2745,21 @@ msgstr "没有已定义的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "基数" @@ -2788,13 +2769,13 @@ msgstr "基数" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "整理" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "注释" @@ -2837,7 +2818,7 @@ msgstr "视图" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "结构" @@ -2910,34 +2891,35 @@ msgstr "事件" msgid "Designer" msgstr "设计器" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 msgid "Users" msgstr "用户" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "二进制日志" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "复制" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "变量" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "插件" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "引擎" @@ -2982,6 +2964,104 @@ msgstr "最近使用的表" msgid "There are no recent tables" msgstr "没有最近使用的表" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL 查询" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "句柄" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "查询缓存" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "线程" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "临时数据" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "延迟插入" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "键缓存" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "多表查询" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "排序" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "数据表" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "事务协调" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "文件" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "强制更新 (关闭) 所有表" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "显示打开的表" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "显示从服务器" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "查看主服务器状态" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "显示从服务器状态" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "强制更新查询缓存" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB 状态" + +#: 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." @@ -3078,7 +3158,7 @@ msgstr "运算符" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "值" @@ -3471,11 +3551,6 @@ msgstr "" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL 查询" - #: libraries/Util.class.php:710 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:292 @@ -3510,7 +3585,7 @@ msgid "Create PHP Code" msgstr "创建 PHP 代码" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "刷新" @@ -3606,13 +3681,6 @@ msgstr "打印" msgid "shared" msgstr "已共享" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "数据表" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3653,22 +3721,22 @@ msgstr "检查数据库“%s”的权限。" msgid "Check Privileges" msgstr "检查权限" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 msgid "Failed to read configuration file" msgstr "读取配置文件失败" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "这通常意味着文件中有语法错误,请检查下面显示出的错误。" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "无法加载默认配置: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3678,38 +3746,38 @@ msgid "" "configuration file!" msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "企图覆盖 GLOBALS" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "可利用" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "监测到数值型键" @@ -5891,8 +5959,8 @@ msgid "" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "用户名" @@ -6525,10 +6593,6 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB 状态" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "缓冲池使用情况" @@ -7194,20 +7258,20 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "根据表名快速搜索" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "清除所有数据" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7321,17 +7385,17 @@ msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "仅结构" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "结构和数据" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "仅数据" @@ -7721,8 +7785,7 @@ msgstr "显示 MIME 类型" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "主机" @@ -8292,7 +8355,7 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "变量" @@ -8802,7 +8865,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "额外" @@ -9482,7 +9545,7 @@ msgstr "添加表前缀" msgid "Check tables having overhead" msgstr "仅选择多余" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "无" @@ -9823,7 +9886,7 @@ msgstr "反向收缩/展开" msgid "Toggle relation lines" msgstr "显示/隐藏关系线" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" @@ -9889,31 +9952,31 @@ msgstr "已创建页面" msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "页面" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "从所选页导入" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "导出至所选页" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "导出至新页" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "新页面名: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "按比例导出/导入" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "推荐" @@ -10030,15 +10093,11 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "文件" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "显示完整查询" @@ -10121,7 +10180,7 @@ msgstr "模块" msgid "Library" msgstr "库" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "版本" @@ -10178,10 +10237,6 @@ msgstr "已成功修改主服务器到 %s" msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "查看主服务器状态" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "查看已连接的从服务器" @@ -10315,136 +10370,100 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "已成功杀死线程 %s 。" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status.php:657 -msgid "Handler" -msgstr "句柄" +#: server_status.php:70 +#, php-format +msgid "Network traffic since startup: %s" +msgstr "自启动以来的网络流量: %s" -#: server_status.php:658 -msgid "Query cache" -msgstr "查询缓存" +#: server_status.php:83 +#, php-format +msgid "This MySQL server has been running for %1$s. It started up on %2$s." +msgstr "此 MySQL 服务器已运行 %1$s。启动时间为 %2$s 。" -#: server_status.php:659 -msgid "Threads" -msgstr "线程" +#: server_status.php:93 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:661 -msgid "Temporary data" -msgstr "临时数据" +#: server_status.php:98 +msgid "This MySQL server works as master in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "延迟插入" +#: server_status.php:103 +msgid "This MySQL server works as slave in replication process." +msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:663 -msgid "Key cache" -msgstr "键缓存" +#: server_status.php:109 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" +"要获得更多关于此服务器的复制状态,请查看复制状态信息" +"。" -#: server_status.php:664 -msgid "Joins" -msgstr "多表查询" +#: server_status.php:122 +msgid "Replication status" +msgstr "复制状态" -#: server_status.php:666 -msgid "Sorting" -msgstr "排序" +#: server_status.php:139 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" +"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" +"确。" -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "事务协调" +#: server_status.php:149 +msgid "Received" +msgstr "已接收" -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "强制更新 (关闭) 所有表" +#: server_status.php:168 +msgid "Sent" +msgstr "已发送" -#: server_status.php:682 -msgid "Show open tables" -msgstr "显示打开的表" +#: server_status.php:219 +msgid "max. concurrent connections" +msgstr "最大并发连接数" -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "显示从服务器" +#: server_status.php:229 +msgid "Failed attempts" +msgstr "已失败" -#: server_status.php:693 -msgid "Show slave status" -msgstr "显示从服务器状态" +#: server_status.php:253 +msgid "Aborted" +msgstr "已取消" -#: server_status.php:698 -msgid "Flush query cache" -msgstr "强制更新查询缓存" +#: server_status.php:313 +msgid "ID" +msgstr "ID" -#: server_status.php:822 -msgid "Runtime Information" -msgstr "运行信息" +#: server_status.php:329 +msgid "Command" +msgstr "命令" -#: server_status.php:830 -msgid "All status variables" -msgstr "所有状态变量" - -#: server_status.php:832 -msgid "Monitor" -msgstr "监控" - -#: server_status.php:834 -msgid "Advisor" -msgstr "建议" - -#: server_status.php:848 server_status.php:877 -msgid "Number of data points: " -msgstr "记录数: " - -#: server_status.php:852 server_status.php:881 -msgid "Refresh rate: " -msgstr "刷新频率: " - -#: server_status.php:894 server_variables.php:156 -msgid "Filters" -msgstr "过滤器" - -#: server_status.php:904 server_variables.php:158 -msgid "Containing the word:" -msgstr "包含文字:" - -#: server_status.php:910 -msgid "Show only alert values" -msgstr "仅显示报警值" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "按分类显示。。。" - -#: server_status.php:926 -msgid "Show unformatted values" -msgstr "显示原始值" - -#: server_status.php:930 -msgid "Related links:" -msgstr "相关链接:" - -#: server_status.php:964 -msgid "Run analyzer" -msgstr "运行分析器" - -#: server_status.php:966 +#: server_status_advisor.php:29 msgid "Instructions" msgstr "说明" -#: server_status.php:973 +#: server_status_advisor.php:35 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "建议系统可以通过分析服务器状态变量对服务器变量的设置提出建议。" -#: server_status.php:975 +#: server_status_advisor.php:41 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 " @@ -10453,7 +10472,7 @@ msgstr "" "请注意本系统所提出的建议建立在简单计算以及通用场合中,可能并不能满足您系统的" "实际需求。" -#: server_status.php:977 +#: server_status_advisor.php:48 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 " @@ -10462,7 +10481,7 @@ msgstr "" "在修改任何设置之前,请确定您确实知道在修改什么设置 (通过阅读文档) 并知道如何" "撤销改变。错误的设置可能导致与预期完全相反的结果。" -#: server_status.php:979 +#: server_status_advisor.php:56 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 " @@ -10471,771 +10490,54 @@ msgstr "" "最好的系统调整方法是一次只修改一个设置,观察并测试您的数据库,如果没有显著的" "效果就撤销改变。" -#: server_status.php:1003 -#, php-format -msgid "Questions since startup: %s" -msgstr "自启动以来的内部查询: %s" - -#: server_status.php:1044 -msgid "Statements" -msgstr "说明" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "查询数量" - -#: server_status.php:1128 -#, php-format -msgid "Network traffic since startup: %s" -msgstr "自启动以来的网络流量: %s" - -#: server_status.php:1143 -#, php-format -msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "此 MySQL 服务器已运行 %1$s。启动时间为 %2$s 。" - -#: server_status.php:1153 -msgid "" -"This MySQL server works as master and slave in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:1155 -msgid "This MySQL server works as master in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:1157 -msgid "This MySQL server works as slave in replication process." -msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" - -#: server_status.php:1160 -msgid "" -"For further information about replication status on the server, please visit " -"the replication section." -msgstr "" -"要获得更多关于此服务器的复制状态,请查看复制状态信息" -"。" - -#: server_status.php:1171 -msgid "Replication status" -msgstr "复制状态" - -#: server_status.php:1185 -msgid "" -"On a busy server, the byte counters may overrun, so those statistics as " -"reported by the MySQL server may be incorrect." -msgstr "" -"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" -"确。" - -#: server_status.php:1191 -msgid "Received" -msgstr "已接收" - -#: server_status.php:1208 -msgid "Sent" -msgstr "已发送" - -#: server_status.php:1255 -msgid "max. concurrent connections" -msgstr "最大并发连接数" - -#: server_status.php:1262 -msgid "Failed attempts" -msgstr "已失败" - -#: server_status.php:1278 -msgid "Aborted" -msgstr "已取消" - -#: server_status.php:1322 -msgid "ID" -msgstr "ID" - -#: server_status.php:1338 -msgid "Command" -msgstr "命令" - -#: server_status.php:1527 -msgid "" -"The number of connections that were aborted because the client died without " -"closing the connection properly." -msgstr "因客户端没有关闭连接而中止的连接数。" - -#: server_status.php:1528 -msgid "The number of failed attempts to connect to the MySQL server." -msgstr "尝试连接到 MySQL 服务器但失败的连接数。" - -#: server_status.php:1529 -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 "" -"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" -"的数量。" - -#: server_status.php:1530 -msgid "The number of transactions that used the temporary binary log cache." -msgstr "事务所用的临时二进制日志缓存的数量。" - -#: server_status.php:1531 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" - -#: server_status.php:1532 -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 "" -"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " -"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" - -#: server_status.php:1533 -msgid "How many temporary files mysqld has created." -msgstr "mysqld 已创建的临时文件的数量。" - -#: server_status.php:1534 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" - -#: server_status.php:1535 -msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." -msgstr "" -"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" -"值) 。" - -#: server_status.php:1536 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" - -#: server_status.php:1537 -msgid "The number of INSERT DELAYED rows written." -msgstr "延迟插入已写入的行数。" - -#: server_status.php:1538 -msgid "The number of executed FLUSH statements." -msgstr "已执行的强制更新 (FLUSH) 语句数。" - -#: server_status.php:1539 -msgid "The number of internal COMMIT statements." -msgstr "已执行的内部提交 (COMMIT) 语句数。" - -#: server_status.php:1540 -msgid "The number of times a row was deleted from a table." -msgstr "从表中删除行的次数。" - -#: server_status.php:1541 -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 "" -"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" -"Handler_discovery 表明了一张表被发现的次数。" - -#: server_status.php:1542 -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 "" -"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" -"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" - -#: server_status.php:1543 -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 "" -"根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" - -#: server_status.php:1544 -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 "" -"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" -"进行完整表扫描,该值将会不断增长。" - -#: server_status.php:1545 -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 "" -"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " -"DESC 的查询。" - -#: server_status.php:1546 -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 "" -"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" -"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" - -#: server_status.php:1547 -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 "" -"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" -"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" - -#: server_status.php:1548 -msgid "The number of internal ROLLBACK statements." -msgstr "内部回滚 (ROLLBACK) 语句数。" - -#: server_status.php:1549 -msgid "The number of requests to update a row in a table." -msgstr "表中更新行的请求数。" - -#: server_status.php:1550 -msgid "The number of requests to insert a row in a table." -msgstr "表中插入行的请求数。" - -#: server_status.php:1551 -msgid "The number of pages containing data (dirty or clean)." -msgstr "非空页数 (含脏页) 。" - -#: server_status.php:1552 -msgid "The number of pages currently dirty." -msgstr "当前脏页数。" - -#: server_status.php:1553 -msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "请求更新的缓冲池页数。" - -#: server_status.php:1554 -msgid "The number of free pages." -msgstr "空闲页数。" - -#: server_status.php:1555 -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 "" -"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" -"被刷新或删除的。" - -#: server_status.php:1556 -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 "" -"负载页的数量,像锁定行或适应性的散列索引这样的管理操作时分配的页。该值可用此" -"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " -"Innodb_buffer_pool_pages_data 。" - -#: server_status.php:1557 -msgid "Total size of buffer pool, in pages." -msgstr "缓冲池总大小 (单位:页)。" - -#: server_status.php:1558 -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 "" -"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" -"生。" - -#: server_status.php:1559 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" - -#: server_status.php:1560 -msgid "The number of logical read requests InnoDB has done." -msgstr "InnoDB 完成的逻辑读请求数。" - -#: server_status.php:1561 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" - -#: server_status.php:1562 -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 "" -"写入 InnoDB 缓冲池通常在后台进行,但有必要在没有干净页的时候读取或创建页,有" -"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" -"个值应该会很小。" - -#: server_status.php:1563 -msgid "The number writes done to the InnoDB buffer pool." -msgstr "写入 InnoDB 缓冲池的次数。" - -#: server_status.php:1564 -msgid "The number of fsync() operations so far." -msgstr "fsync() 总操作的次数。" - -#: server_status.php:1565 -msgid "The current number of pending fsync() operations." -msgstr "当前挂起 fsync() 操作的数量。" - -#: server_status.php:1566 -msgid "The current number of pending reads." -msgstr "当前挂起的读操作数。" - -#: server_status.php:1567 -msgid "The current number of pending writes." -msgstr "当前挂起的写操作数。" - -#: server_status.php:1568 -msgid "The amount of data read so far, in bytes." -msgstr "读取的总数据量 (单位:字节)。" - -#: server_status.php:1569 -msgid "The total number of data reads." -msgstr "数据读取总数。" - -#: server_status.php:1570 -msgid "The total number of data writes." -msgstr "数据写入总数。" - -#: server_status.php:1571 -msgid "The amount of data written so far, in bytes." -msgstr "写入的总数据量 (单位:字节)。" - -#: server_status.php:1572 -msgid "The number of pages that have been written for doublewrite operations." -msgstr "以双写入操作写入的页数。" - -#: server_status.php:1573 -msgid "The number of doublewrite operations that have been performed." -msgstr "已经执行的双写入次数。" - -#: server_status.php:1574 -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 "因日志缓存太小而必须等待其被写入所造成的等待数。" - -#: server_status.php:1575 -msgid "The number of log write requests." -msgstr "日志写入请求数。" - -#: server_status.php:1576 -msgid "The number of physical writes to the log file." -msgstr "日志物理写入次数。" - -#: server_status.php:1577 -msgid "The number of fsync() writes done to the log file." -msgstr "使用 fsync() 写入日志文件的次数。" - -#: server_status.php:1578 -msgid "The number of pending log file fsyncs." -msgstr "当前挂起的 fsync 日志文件数。" - -#: server_status.php:1579 -msgid "Pending log file writes." -msgstr "当前挂起的日志写入数。" - -#: server_status.php:1580 -msgid "The number of bytes written to the log file." -msgstr "写入日志文件的字节数。" - -#: server_status.php:1581 -msgid "The number of pages created." -msgstr "创建的页数。" - -#: server_status.php:1582 -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 "" -"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" -"便地将这些值转化为字节数。" - -#: server_status.php:1583 -msgid "The number of pages read." -msgstr "读取的页数。" - -#: server_status.php:1584 -msgid "The number of pages written." -msgstr "写入的页数。" - -#: server_status.php:1585 -msgid "The number of row locks currently being waited for." -msgstr "正在等待行锁的数量。" - -#: server_status.php:1586 -msgid "The average time to acquire a row lock, in milliseconds." -msgstr "等待获得行锁的平均时间 (单位:毫秒)。" - -#: server_status.php:1587 -msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "等待获得行锁的总时间 (单位:毫秒)。" - -#: server_status.php:1588 -msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "等待获得行锁的最大时间 (单位:毫秒)。" - -#: server_status.php:1589 -msgid "The number of times a row lock had to be waited for." -msgstr "等待行锁的次数。" - -#: server_status.php:1590 -msgid "The number of rows deleted from InnoDB tables." -msgstr "从 InnoDB 表中删除的行数。" - -#: server_status.php:1591 -msgid "The number of rows inserted in InnoDB tables." -msgstr "插入到 InnoDB 表中的行数。" - -#: server_status.php:1592 -msgid "The number of rows read from InnoDB tables." -msgstr "从 InnoDB 表中读取的行数。" - -#: server_status.php:1593 -msgid "The number of rows updated in InnoDB tables." -msgstr "InnoDB 中更新的行数。" - -#: server_status.php:1594 -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 "" -"键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" - -#: server_status.php:1595 -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 "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" - -#: server_status.php:1596 -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 "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" - -#: server_status.php:1597 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "导入文件的格式" - -#: server_status.php:1598 -msgid "The number of requests to read a key block from the cache." -msgstr "从缓存中读取键块的请求次数。" - -#: server_status.php:1599 -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 "" -"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " -"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" - -#: server_status.php:1600 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" - -#: server_status.php:1601 -msgid "The number of requests to write a key block to the cache." -msgstr "将一个键块写入缓存的请求数。" - -#: server_status.php:1602 -msgid "The number of physical writes of a key block to disk." -msgstr "将键块物理写入到磁盘的次数。" - -#: server_status.php:1603 -msgid "" -"Percentage of physical writes compared to write requests (calculated value)" -msgstr "" - -#: server_status.php:1604 -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 "" -"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" -"相同的查询时的效率差异。默认值0表示还没有查询被编译。" - -#: server_status.php:1605 -msgid "" -"The maximum number of connections that have been in use simultaneously since " -"the server started." -msgstr "自服务器启动以来的最高并发连接数。" - -#: server_status.php:1606 -msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "等待写入延迟插入队列的行数。" - -#: server_status.php:1607 -msgid "" -"The number of tables that have been opened. If opened tables is big, your " -"table cache value is probably too small." -msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" - -#: server_status.php:1608 -msgid "The number of files that are open." -msgstr "打开的文件个数。" - -#: server_status.php:1609 -msgid "The number of streams that are open (used mainly for logging)." -msgstr "打开的流个数 (主要用于日志记录)。" - -#: server_status.php:1610 -msgid "The number of tables that are open." -msgstr "打开的数据表个数。" - -#: server_status.php:1611 -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 "" -"查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " -"CACHE 语句解决。" - -#: server_status.php:1612 -msgid "The amount of free memory for query cache." -msgstr "查询缓存中空闲的内存总数。" - -#: server_status.php:1613 -msgid "The number of cache hits." -msgstr "缓存命中数。" - -#: server_status.php:1614 -msgid "The number of queries added to the cache." -msgstr "加入到缓存的查询数。" - -#: server_status.php:1615 -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 "" -"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" -"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" - -#: server_status.php:1616 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" -"查询)。" - -#: server_status.php:1617 -msgid "The number of queries registered in the cache." -msgstr "在缓存中注册的查询数。" - -#: server_status.php:1618 -msgid "The total number of blocks in the query cache." -msgstr "查询缓存中的总块数。" - -#: server_status.php:1619 -msgid "The status of failsafe replication (not yet implemented)." -msgstr "失败保护器的状态 (尚未应用)。" - -#: server_status.php:1620 -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 "" -"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" -"的索引。" - -#: server_status.php:1621 -msgid "The number of joins that used a range search on a reference table." -msgstr "使用在关联表上使用范围搜索的多表查询的数量。" - -#: server_status.php:1622 -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 "" -"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" -"检查是否已经为表建立了适当的索引。)" - -#: server_status.php:1623 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" -"响。)" - -#: server_status.php:1624 -msgid "The number of joins that did a full scan of the first table." -msgstr "在第一张表上进行了完整表扫描的多表查询数。" - -#: server_status.php:1625 -msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "当前由从 SQL 线程打开的临时表的数量。" - -#: server_status.php:1626 -msgid "" -"Total (since startup) number of times the replication slave SQL thread has " -"retried transactions." -msgstr "从 SQL 线程总共重试事务复制数。" - -#: server_status.php:1627 -msgid "This is ON if this server is a slave that is connected to a master." -msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" - -#: server_status.php:1628 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" - -#: server_status.php:1629 -msgid "" -"The number of queries that have taken more than long_query_time seconds." -msgstr "使用了比 long_query_time 更多时间的查询数。" - -#: server_status.php:1630 -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 "" -"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " -"sort_buffer_size 的值。" - -#: server_status.php:1631 -msgid "The number of sorts that were done with ranges." -msgstr "局部范围完成的排序次数。" - -#: server_status.php:1632 -msgid "The number of sorted rows." -msgstr "排序的行数。" - -#: server_status.php:1633 -msgid "The number of sorts that were done by scanning the table." -msgstr "扫描表完成的排序次数。" - -#: server_status.php:1634 -msgid "The number of times that a table lock was acquired immediately." -msgstr "立即需要锁定表的次数。" - -#: server_status.php:1635 -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 "" -"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," -"则应该首先检查您的查询语句,然后使用复制操作来分开表。" - -#: server_status.php:1636 -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 "" -"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" -"如果该值是红色的,则应该增加 thread_cache_size 的值。" - -#: server_status.php:1637 -msgid "The number of currently open connections." -msgstr "当前打开的连接数。" - -#: server_status.php:1638 -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 "" -"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 " -"thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" -"升。)" - -#: server_status.php:1639 -#, fuzzy -#| msgid "Thread cache hit rate %%" -msgid "Thread cache hit rate (calculated value)" -msgstr "线程缓存命中率 %%" - -#: server_status.php:1640 -msgid "The number of threads that are not sleeping." -msgstr "非睡眠状态的线程数量。" - -#: server_status.php:1799 +#: server_status_monitor.php:472 msgid "Start Monitor" msgstr "启动监控" -#: server_status.php:1810 +#: server_status_monitor.php:479 msgid "Instructions/Setup" msgstr "说明/设置" -#: server_status.php:1817 +#: server_status_monitor.php:483 msgid "Done rearranging/editing charts" msgstr "完成排列/编辑图表" -#: server_status.php:1824 server_status.php:1897 +#: server_status_monitor.php:489 server_status_monitor.php:606 msgid "Add chart" msgstr "添加图表" -#: server_status.php:1826 +#: server_status_monitor.php:492 msgid "Rearrange/edit charts" msgstr "排列/编辑图表" -#: server_status.php:1830 +#: server_status_monitor.php:496 msgid "Refresh rate" msgstr "刷新频率" -#: server_status.php:1835 +#: server_status_monitor.php:505 msgid "Chart columns" msgstr "每行图表个数" -#: server_status.php:1851 +#: server_status_monitor.php:521 msgid "Chart arrangement" msgstr "图表排列" -#: server_status.php:1851 +#: server_status_monitor.php:524 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 "" "图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" -#: server_status.php:1852 +#: server_status_monitor.php:538 msgid "Reset to default" msgstr "恢复默认" -#: server_status.php:1856 +#: server_status_monitor.php:544 msgid "Monitor Instructions" msgstr "监控说明" -#: server_status.php:1857 +#: server_status_monitor.php:546 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 " @@ -11247,7 +10549,7 @@ msgstr "" "需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" "请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" -#: server_status.php:1862 +#: server_status_monitor.php:558 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11257,11 +10559,11 @@ msgstr "" "很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" "的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" -#: server_status.php:1875 +#: server_status_monitor.php:573 msgid "Using the monitor:" msgstr "使用监控:" -#: server_status.php:1877 +#: server_status_monitor.php:576 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 " @@ -11270,7 +10572,7 @@ msgstr "" "您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" "改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" -#: server_status.php:1879 +#: server_status_monitor.php:582 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 " @@ -11280,11 +10582,11 @@ msgstr "" "要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" "示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" -#: server_status.php:1886 +#: server_status_monitor.php:592 msgid "Please note:" msgstr "请注意:" -#: server_status.php:1888 +#: server_status_monitor.php:595 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 " @@ -11295,90 +10597,759 @@ msgstr "" "载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" "表。" -#: server_status.php:1902 +#: server_status_monitor.php:610 msgid "Preset chart" msgstr "预置图表" -#: server_status.php:1906 +#: server_status_monitor.php:614 msgid "Status variable(s)" msgstr "状态变量" -#: server_status.php:1908 +#: server_status_monitor.php:617 msgid "Select series:" msgstr "选择数据:" -#: server_status.php:1910 +#: server_status_monitor.php:619 msgid "Commonly monitored" msgstr "常用监控" -#: server_status.php:1925 +#: server_status_monitor.php:635 msgid "or type variable name:" msgstr "或输入变量名:" -#: server_status.php:1929 +#: server_status_monitor.php:642 msgid "Display as differential value" msgstr "独立显示" -#: server_status.php:1931 +#: server_status_monitor.php:645 msgid "Apply a divisor" msgstr "应用除数" -#: server_status.php:1938 +#: server_status_monitor.php:653 msgid "Append unit to data values" msgstr "在值后附加单位" -#: server_status.php:1944 +#: server_status_monitor.php:659 msgid "Add this series" msgstr "添加该数据" -#: server_status.php:1946 +#: server_status_monitor.php:661 msgid "Clear series" msgstr "清除所有数据" -#: server_status.php:1949 +#: server_status_monitor.php:664 msgid "Series in Chart:" msgstr "图表中的数据:" -#: server_status.php:1964 +#: server_status_monitor.php:677 msgid "Log statistics" msgstr "日志统计" -#: server_status.php:1965 +#: server_status_monitor.php:678 msgid "Selected time range:" msgstr "选择时间范围:" -#: server_status.php:1970 +#: server_status_monitor.php:684 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" -#: server_status.php:1975 +#: server_status_monitor.php:689 msgid "Remove variable data in INSERT statements for better grouping" msgstr "去除 INSERT 语句中的变量值以获得更好的分组" -#: server_status.php:1980 +#: server_status_monitor.php:692 msgid "Choose from which log you want the statistics to be generated from." msgstr "请选择生成统计的来源日志。" -#: server_status.php:1982 +#: server_status_monitor.php:695 msgid "Results are grouped by query text." msgstr "结果将根据查询语句分组。" -#: server_status.php:1987 +#: server_status_monitor.php:699 msgid "Query analyzer" msgstr "查询分析器" -#: server_status.php:2038 server_status.php:2066 +#: server_status_monitor.php:747 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:2041 +#: server_status_monitor.php:750 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" +#: server_status_queries.php:67 +#, php-format +msgid "Questions since startup: %s" +msgstr "自启动以来的内部查询: %s" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "说明" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "查询数量" + +#: server_status_variables.php:78 server_variables.php:156 +msgid "Filters" +msgstr "过滤器" + +#: server_status_variables.php:82 server_variables.php:158 +msgid "Containing the word:" +msgstr "包含文字:" + +#: server_status_variables.php:89 +msgid "Show only alert values" +msgstr "仅显示报警值" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "按分类显示。。。" + +#: server_status_variables.php:114 +msgid "Show unformatted values" +msgstr "显示原始值" + +#: server_status_variables.php:133 +msgid "Related links:" +msgstr "相关链接:" + +#: server_status_variables.php:327 +msgid "" +"The number of connections that were aborted because the client died without " +"closing the connection properly." +msgstr "因客户端没有关闭连接而中止的连接数。" + +#: server_status_variables.php:331 +msgid "The number of failed attempts to connect to the MySQL server." +msgstr "尝试连接到 MySQL 服务器但失败的连接数。" + +#: server_status_variables.php:334 +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 "" +"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" +"的数量。" + +#: server_status_variables.php:339 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "事务所用的临时二进制日志缓存的数量。" + +#: server_status_variables.php:342 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" + +#: server_status_variables.php:346 +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 "" +"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " +"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" + +#: server_status_variables.php:353 +msgid "How many temporary files mysqld has created." +msgstr "mysqld 已创建的临时文件的数量。" + +#: server_status_variables.php:356 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" + +#: server_status_variables.php:360 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" +"值) 。" + +#: server_status_variables.php:364 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" + +#: server_status_variables.php:369 +msgid "The number of INSERT DELAYED rows written." +msgstr "延迟插入已写入的行数。" + +#: server_status_variables.php:372 +msgid "The number of executed FLUSH statements." +msgstr "已执行的强制更新 (FLUSH) 语句数。" + +#: server_status_variables.php:375 +msgid "The number of internal COMMIT statements." +msgstr "已执行的内部提交 (COMMIT) 语句数。" + +#: server_status_variables.php:378 +msgid "The number of times a row was deleted from a table." +msgstr "从表中删除行的次数。" + +#: server_status_variables.php:381 +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 "" +"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" +"Handler_discovery 表明了一张表被发现的次数。" + +#: server_status_variables.php:387 +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 "" +"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" +"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" + +#: server_status_variables.php:393 +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 "" +"根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" + +#: server_status_variables.php:398 +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 "" +"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" +"进行完整表扫描,该值将会不断增长。" + +#: server_status_variables.php:403 +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 "" +"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " +"DESC 的查询。" + +#: server_status_variables.php:407 +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 "" +"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" +"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" + +#: server_status_variables.php:414 +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 "" +"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" +"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" + +#: server_status_variables.php:421 +msgid "The number of internal ROLLBACK statements." +msgstr "内部回滚 (ROLLBACK) 语句数。" + +#: server_status_variables.php:424 +msgid "The number of requests to update a row in a table." +msgstr "表中更新行的请求数。" + +#: server_status_variables.php:427 +msgid "The number of requests to insert a row in a table." +msgstr "表中插入行的请求数。" + +#: server_status_variables.php:430 +msgid "The number of pages containing data (dirty or clean)." +msgstr "非空页数 (含脏页) 。" + +#: server_status_variables.php:433 +msgid "The number of pages currently dirty." +msgstr "当前脏页数。" + +#: server_status_variables.php:436 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "请求更新的缓冲池页数。" + +#: server_status_variables.php:440 +msgid "The number of free pages." +msgstr "空闲页数。" + +#: server_status_variables.php:443 +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 "" +"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" +"被刷新或删除的。" + +#: server_status_variables.php:448 +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 "" +"负载页的数量,像锁定行或适应性的散列索引这样的管理操作时分配的页。该值可用此" +"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " +"Innodb_buffer_pool_pages_data 。" + +#: server_status_variables.php:455 +msgid "Total size of buffer pool, in pages." +msgstr "缓冲池总大小 (单位:页)。" + +#: server_status_variables.php:458 +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 "" +"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" +"生。" + +#: server_status_variables.php:463 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" +"InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" + +#: server_status_variables.php:467 +msgid "The number of logical read requests InnoDB has done." +msgstr "InnoDB 完成的逻辑读请求数。" + +#: server_status_variables.php:470 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" + +#: server_status_variables.php:474 +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 "" +"写入 InnoDB 缓冲池通常在后台进行,但有必要在没有干净页的时候读取或创建页,有" +"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" +"个值应该会很小。" + +#: server_status_variables.php:482 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "写入 InnoDB 缓冲池的次数。" + +#: server_status_variables.php:485 +msgid "The number of fsync() operations so far." +msgstr "fsync() 总操作的次数。" + +#: server_status_variables.php:488 +msgid "The current number of pending fsync() operations." +msgstr "当前挂起 fsync() 操作的数量。" + +#: server_status_variables.php:491 +msgid "The current number of pending reads." +msgstr "当前挂起的读操作数。" + +#: server_status_variables.php:494 +msgid "The current number of pending writes." +msgstr "当前挂起的写操作数。" + +#: server_status_variables.php:497 +msgid "The amount of data read so far, in bytes." +msgstr "读取的总数据量 (单位:字节)。" + +#: server_status_variables.php:500 +msgid "The total number of data reads." +msgstr "数据读取总数。" + +#: server_status_variables.php:503 +msgid "The total number of data writes." +msgstr "数据写入总数。" + +#: server_status_variables.php:506 +msgid "The amount of data written so far, in bytes." +msgstr "写入的总数据量 (单位:字节)。" + +#: server_status_variables.php:509 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "以双写入操作写入的页数。" + +#: server_status_variables.php:513 +msgid "The number of doublewrite operations that have been performed." +msgstr "已经执行的双写入次数。" + +#: server_status_variables.php:516 +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 "因日志缓存太小而必须等待其被写入所造成的等待数。" + +#: server_status_variables.php:520 +msgid "The number of log write requests." +msgstr "日志写入请求数。" + +#: server_status_variables.php:523 +msgid "The number of physical writes to the log file." +msgstr "日志物理写入次数。" + +#: server_status_variables.php:526 +msgid "The number of fsync() writes done to the log file." +msgstr "使用 fsync() 写入日志文件的次数。" + +#: server_status_variables.php:529 +msgid "The number of pending log file fsyncs." +msgstr "当前挂起的 fsync 日志文件数。" + +#: server_status_variables.php:532 +msgid "Pending log file writes." +msgstr "当前挂起的日志写入数。" + +#: server_status_variables.php:535 +msgid "The number of bytes written to the log file." +msgstr "写入日志文件的字节数。" + +#: server_status_variables.php:538 +msgid "The number of pages created." +msgstr "创建的页数。" + +#: server_status_variables.php:541 +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 "" +"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" +"便地将这些值转化为字节数。" + +#: server_status_variables.php:546 +msgid "The number of pages read." +msgstr "读取的页数。" + +#: server_status_variables.php:549 +msgid "The number of pages written." +msgstr "写入的页数。" + +#: server_status_variables.php:552 +msgid "The number of row locks currently being waited for." +msgstr "正在等待行锁的数量。" + +#: server_status_variables.php:555 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "等待获得行锁的平均时间 (单位:毫秒)。" + +#: server_status_variables.php:558 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "等待获得行锁的总时间 (单位:毫秒)。" + +#: server_status_variables.php:561 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "等待获得行锁的最大时间 (单位:毫秒)。" + +#: server_status_variables.php:564 +msgid "The number of times a row lock had to be waited for." +msgstr "等待行锁的次数。" + +#: server_status_variables.php:567 +msgid "The number of rows deleted from InnoDB tables." +msgstr "从 InnoDB 表中删除的行数。" + +#: server_status_variables.php:570 +msgid "The number of rows inserted in InnoDB tables." +msgstr "插入到 InnoDB 表中的行数。" + +#: server_status_variables.php:573 +msgid "The number of rows read from InnoDB tables." +msgstr "从 InnoDB 表中读取的行数。" + +#: server_status_variables.php:576 +msgid "The number of rows updated in InnoDB tables." +msgstr "InnoDB 中更新的行数。" + +#: server_status_variables.php:579 +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 "" +"键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" + +#: server_status_variables.php:584 +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 "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" + +#: server_status_variables.php:588 +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 "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" + +#: server_status_variables.php:593 +#, fuzzy +#| msgid "Format of imported file" +msgid "Percentage of used key cache (calculated value)" +msgstr "导入文件的格式" + +#: server_status_variables.php:596 +msgid "The number of requests to read a key block from the cache." +msgstr "从缓存中读取键块的请求次数。" + +#: server_status_variables.php:599 +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 "" +"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " +"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" + +#: server_status_variables.php:605 +msgid "" +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" +msgstr "" + +#: server_status_variables.php:609 +msgid "The number of requests to write a key block to the cache." +msgstr "将一个键块写入缓存的请求数。" + +#: server_status_variables.php:612 +msgid "The number of physical writes of a key block to disk." +msgstr "将键块物理写入到磁盘的次数。" + +#: server_status_variables.php:615 +msgid "" +"Percentage of physical writes compared to write requests (calculated value)" +msgstr "" + +#: server_status_variables.php:619 +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 "" +"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" +"相同的查询时的效率差异。默认值0表示还没有查询被编译。" + +#: server_status_variables.php:625 +msgid "" +"The maximum number of connections that have been in use simultaneously since " +"the server started." +msgstr "自服务器启动以来的最高并发连接数。" + +#: server_status_variables.php:629 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "等待写入延迟插入队列的行数。" + +#: server_status_variables.php:632 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" + +#: server_status_variables.php:636 +msgid "The number of files that are open." +msgstr "打开的文件个数。" + +#: server_status_variables.php:639 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "打开的流个数 (主要用于日志记录)。" + +#: server_status_variables.php:642 +msgid "The number of tables that are open." +msgstr "打开的数据表个数。" + +#: server_status_variables.php:645 +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 "" +"查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " +"CACHE 语句解决。" + +#: server_status_variables.php:650 +msgid "The amount of free memory for query cache." +msgstr "查询缓存中空闲的内存总数。" + +#: server_status_variables.php:653 +msgid "The number of cache hits." +msgstr "缓存命中数。" + +#: server_status_variables.php:656 +msgid "The number of queries added to the cache." +msgstr "加入到缓存的查询数。" + +#: server_status_variables.php:659 +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 "" +"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" +"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" + +#: server_status_variables.php:666 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" +"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" +"查询)。" + +#: server_status_variables.php:670 +msgid "The number of queries registered in the cache." +msgstr "在缓存中注册的查询数。" + +#: server_status_variables.php:673 +msgid "The total number of blocks in the query cache." +msgstr "查询缓存中的总块数。" + +#: server_status_variables.php:676 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "失败保护器的状态 (尚未应用)。" + +#: server_status_variables.php:679 +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 "" +"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" +"的索引。" + +#: server_status_variables.php:683 +msgid "The number of joins that used a range search on a reference table." +msgstr "使用在关联表上使用范围搜索的多表查询的数量。" + +#: server_status_variables.php:686 +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 "" +"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" +"检查是否已经为表建立了适当的索引。)" + +#: server_status_variables.php:691 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" +"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" +"响。)" + +#: server_status_variables.php:695 +msgid "The number of joins that did a full scan of the first table." +msgstr "在第一张表上进行了完整表扫描的多表查询数。" + +#: server_status_variables.php:698 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "当前由从 SQL 线程打开的临时表的数量。" + +#: server_status_variables.php:702 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "从 SQL 线程总共重试事务复制数。" + +#: server_status_variables.php:706 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" + +#: server_status_variables.php:709 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" + +#: server_status_variables.php:713 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "使用了比 long_query_time 更多时间的查询数。" + +#: server_status_variables.php:717 +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 "" +"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " +"sort_buffer_size 的值。" + +#: server_status_variables.php:722 +msgid "The number of sorts that were done with ranges." +msgstr "局部范围完成的排序次数。" + +#: server_status_variables.php:725 +msgid "The number of sorted rows." +msgstr "排序的行数。" + +#: server_status_variables.php:728 +msgid "The number of sorts that were done by scanning the table." +msgstr "扫描表完成的排序次数。" + +#: server_status_variables.php:731 +msgid "The number of times that a table lock was acquired immediately." +msgstr "立即需要锁定表的次数。" + +#: server_status_variables.php:734 +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 "" +"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," +"则应该首先检查您的查询语句,然后使用复制操作来分开表。" + +#: server_status_variables.php:740 +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 "" +"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" +"如果该值是红色的,则应该增加 thread_cache_size 的值。" + +#: server_status_variables.php:745 +msgid "The number of currently open connections." +msgstr "当前打开的连接数。" + +#: server_status_variables.php:748 +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 "" +"当前用于控制连接的线程数。如果 Threads_created 很大,您可能需要增加 " +"thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" +"升。)" + +#: server_status_variables.php:755 +#, fuzzy +#| msgid "Thread cache hit rate %%" +msgid "Thread cache hit rate (calculated value)" +msgstr "线程缓存命中率 %%" + +#: server_status_variables.php:758 +msgid "The number of threads that are not sleeping." +msgstr "非睡眠状态的线程数量。" + #: server_variables.php:107 msgid "Setting variable failed" msgstr "设置变量失败" @@ -11943,149 +11914,149 @@ msgstr "外键约束" msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %s,%s.%s 的追踪已启用。" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%s.%s 的追踪已启用。" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "%s.%s 的追踪已启用。" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL 语句已执行。" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 msgid "Tracking data definition successfully deleted" msgstr "追踪数据定义删除成功" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 msgid "Query error" msgstr "查询错误" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 msgid "Tracking data manipulation successfully deleted" msgstr "追踪数据操作删除成功" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "追踪语句" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 msgid "Delete tracking data row from report" msgstr "从报告中删除追踪数据" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 msgid "No data" msgstr "无数据" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "日期" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "数据定义语句" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "数据操作语句" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL 转储" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "执行 SQL 语句" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "禁用 %s.%s 的追踪" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "立即禁用" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "启用 %s.%s 的追踪" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "立即启用" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "创建版本" @@ -12220,11 +12191,11 @@ msgstr "建议根据您的环境将 {long_query_time} 调短。通常建议设 msgid "long_query_time is currently set to %ds." msgstr "long_query_time 当前被设为 %d 秒。" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 msgid "Slow query logging" msgstr "慢查询记录" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 msgid "The slow query log is disabled." msgstr "慢查询记录已禁用。" @@ -12239,58 +12210,75 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries 被设为 'OFF'" -#: libraries/advisory_rules.txt:93 +#: libraries/advisory_rules.txt:95 +#, fuzzy +#| msgid "" +#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This " +#| "will help troubleshooting badly performing queries." +msgid "" +"Enable slow query logging by setting {slow_query_log} to 'ON'. This will " +"help troubleshooting badly performing queries." +msgstr "" +"请将 {log_slow_queries} 设为 'ON' 来启用慢查询记录。这将有助于解决查询问题。" + +#: libraries/advisory_rules.txt:96 +#, fuzzy +#| msgid "log_slow_queries is set to 'OFF'" +msgid "slow_query_log is set to 'OFF'" +msgstr "log_slow_queries 被设为 'OFF'" + +#: libraries/advisory_rules.txt:100 msgid "Release Series" msgstr "发行版系列" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "MySQL 服务器版本低于 5.1。" -#: libraries/advisory_rules.txt:97 +#: libraries/advisory_rules.txt:104 msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "您应该升级到 MySQL 5.1 或 5.5,以获得新版本的更高性能。" -#: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, php-format msgid "Current version: %s" msgstr "当前版本:%s" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 msgid "Minor Version" msgstr "子版本" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "版本低于 5.1.30 (5.1 的第一个 GA 版本)。" -#: libraries/advisory_rules.txt:104 +#: 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 "您应该升级到最新的 MySQL 5.1 或 5.5,以获得新版本的更高性能。" -#: libraries/advisory_rules.txt:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "版本低于 5.5.8 (5.5 的第一个 GA 版本)。" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "您应升级到 MySQL 5.5 的稳定版本" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 msgid "Distribution" msgstr "发行" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "从源代码编译,不是 MySQL 官方二进制。" -#: libraries/advisory_rules.txt:118 +#: 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, " @@ -12299,40 +12287,40 @@ msgstr "" "如果您没有从源代码编译,您可能使用了再发行的修改版本。MySQL 手册仅适用于官方" "二进制,而非其它再发行包 (如 RedHat、Debian/Ubuntu 等等)。" -#: libraries/advisory_rules.txt:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "版本注释中含有 'source'" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: libraries/advisory_rules.txt:131 libraries/advisory_rules.txt:138 msgid "The MySQL manual only is accurate for official MySQL binaries." msgstr "MySQL 手册仅适用于官方二进制。" -#: libraries/advisory_rules.txt:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "Percona 文档位于 http://www.percona.com/docs/wiki/" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "版本注释中含有 'percona'" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "Drizzle 文档位于 http://docs.drizzle.org/" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "版本号 (%s) 符合 Drizzle 版本格式" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 msgid "MySQL Architecture" msgstr "MySQL 架构" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "MySQL 没有以 64 位编译。" -#: libraries/advisory_rules.txt:139 +#: 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 " @@ -12341,20 +12329,20 @@ msgstr "" "您的内存大小超过 3 GB (若服务器就在本地),MySQL 可能无法访问所有内存。您需要" "考虑安装 64 位版本的 MySQL。" -#: libraries/advisory_rules.txt:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "此服务器上的可用内存: %s" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 msgid "Query cache disabled" msgstr "查询缓存已禁用" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 msgid "The query cache is not enabled." msgstr "查询缓存没有启用。" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12365,19 +12353,19 @@ msgstr "" "为 2 位数的 MB 值和设置 {query_cache_type} 为 'ON'。注意: 若您正在使" "用 memcached,请忽略此建议。" -#: libraries/advisory_rules.txt:151 +#: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "query_cache_size 被设为 0 或 query_cache_type 被设为 'OFF'" -#: libraries/advisory_rules.txt:153 +#: libraries/advisory_rules.txt:160 msgid "Query caching method" msgstr "查询缓存模式" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 msgid "Suboptimal caching method." msgstr "最佳缓存模式。" -#: libraries/advisory_rules.txt:157 +#: 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 代替 MySQL 查询缓存将更好。" -#: libraries/advisory_rules.txt:158 +#: libraries/advisory_rules.txt:165 #, php-format msgid "" "The query cache is enabled and the server receives %d queries per second. " @@ -12397,56 +12385,56 @@ msgstr "" "查询缓存已启用且服务器每秒收到 %d 个查询。该规则在每秒超过 100 个查询时被触" "发。" -#: libraries/advisory_rules.txt:160 +#: libraries/advisory_rules.txt:167 #, php-format msgid "Query cache efficiency (%%)" msgstr "查询缓存效率 (%%)" -#: libraries/advisory_rules.txt:163 +#: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "查询缓存命中率低。" -#: libraries/advisory_rules.txt:164 +#: libraries/advisory_rules.txt:171 msgid "Consider increasing {query_cache_limit}." msgstr "请考虑增加 {query_cache_limit}。" -#: libraries/advisory_rules.txt:165 +#: libraries/advisory_rules.txt:172 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "当前查询缓存命中率为 %s%% 低于 20%%" -#: libraries/advisory_rules.txt:167 +#: libraries/advisory_rules.txt:174 msgid "Query Cache usage" msgstr "查询缓存使用率" -#: libraries/advisory_rules.txt:170 +#: libraries/advisory_rules.txt:177 #, php-format msgid "Less than 80%% of the query cache is being utilized." msgstr "查询缓存使用不到 80%%。" -#: libraries/advisory_rules.txt:171 +#: 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 "" "这可能是因为 {query_cache_limit} 太低所导致。刷新查询缓存可能会有帮助。" -#: libraries/advisory_rules.txt:172 +#: 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 "当前空闲查询缓存内存为总查询缓存大小的 %s%%。此值应高于 80%%" -#: libraries/advisory_rules.txt:174 +#: libraries/advisory_rules.txt:181 msgid "Query cache fragmentation" msgstr "查询缓存碎片" -#: libraries/advisory_rules.txt:177 +#: libraries/advisory_rules.txt:184 msgid "The query cache is considerably fragmented." msgstr "查询缓存碎片化相当严重。" -#: libraries/advisory_rules.txt:178 +#: 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 " @@ -12463,7 +12451,7 @@ msgstr "" "助,如您可以使用下列公式来计算并设置您查询缓存大小平均值: (查询缓存大小 - 查" "询缓存剩余大小) / 查询缓存中的查询数量" -#: libraries/advisory_rules.txt:179 +#: libraries/advisory_rules.txt:186 #, php-format msgid "" "The cache is currently fragmented by %s%% , with 100%% fragmentation meaning " @@ -12473,17 +12461,17 @@ msgstr "" "缓存碎片的数量已经到达至 %s%%,当到 100%% 的时候那就意味着已用空间和可用空间" "的界线已经不清楚了,这个值会下降 20%%." -#: libraries/advisory_rules.txt:181 +#: libraries/advisory_rules.txt:188 msgid "Query cache low memory prunes" msgstr "查询缓存低内存清理" -#: libraries/advisory_rules.txt:184 +#: 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:185 +#: 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 " @@ -12492,44 +12480,44 @@ msgstr "" "您可能需要增加 {query_cache_size},但请注意增加它可能会导致的维护开销,所以请" "慢慢增加并观察结果。" -#: libraries/advisory_rules.txt:186 +#: 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 "删除查询比插入查询的比例是 %s%%.这个比例越小越好。(警戒比例:0.1%%)" -#: libraries/advisory_rules.txt:188 +#: libraries/advisory_rules.txt:195 msgid "Query cache max size" msgstr "查询缓存最大值" -#: libraries/advisory_rules.txt:191 +#: 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 "查询缓存超过 128 MB 。过大的查询缓存可能会引起额外的维护开销。" -#: libraries/advisory_rules.txt:192 +#: libraries/advisory_rules.txt:199 msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." msgstr "根据您的环境,减小该值可能会带来性能上的提升。" -#: libraries/advisory_rules.txt:193 +#: libraries/advisory_rules.txt:200 #, php-format msgid "Current query cache size: %s" msgstr "当前查询缓存大小: %s" -#: libraries/advisory_rules.txt:195 +#: libraries/advisory_rules.txt:202 msgid "Query cache min result size" msgstr "查询缓存结果最小大小" -#: libraries/advisory_rules.txt:198 +#: libraries/advisory_rules.txt:205 msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "查询缓存结果最大大小已设为默认值 1 MB 。" -#: libraries/advisory_rules.txt:199 +#: 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 " @@ -12545,50 +12533,50 @@ msgstr "" "写) 则增加 {query_cache_limit} 将会提升效率。若多数超过 1 MB 的查询结果不能很" "好的缓存 (通常因为表更新而失效) 增加 {query_cache_limit} 将会降低效率。" -#: libraries/advisory_rules.txt:200 +#: libraries/advisory_rules.txt:207 msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit 已被设为 1 MB" -#: libraries/advisory_rules.txt:204 +#: libraries/advisory_rules.txt:211 msgid "Percentage of sorts that cause temporary tables" msgstr "使用临时表的排序率" -#: libraries/advisory_rules.txt:207 libraries/advisory_rules.txt:214 +#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." msgstr "过多排序引发临时表创建。" -#: libraries/advisory_rules.txt:208 libraries/advisory_rules.txt:215 +#: 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 "根据系统内存,考虑增加 sort_buffer_size 和/或 read_rnd_buffer_size" -#: libraries/advisory_rules.txt:209 +#: libraries/advisory_rules.txt:216 #, php-format msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than 10%" "%." msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。" -#: libraries/advisory_rules.txt:211 +#: libraries/advisory_rules.txt:218 msgid "Rate of sorts that cause temporary tables" msgstr "排序使用临时表的创建率" -#: libraries/advisory_rules.txt:216 +#: libraries/advisory_rules.txt:223 #, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "临时表创建率: %s,该值应低于 1 每小时。" -#: libraries/advisory_rules.txt:218 +#: libraries/advisory_rules.txt:225 msgid "Sort rows" msgstr "行排序" -#: libraries/advisory_rules.txt:221 +#: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." msgstr "大量行被排序。" -#: libraries/advisory_rules.txt:222 +#: 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 " @@ -12598,40 +12586,40 @@ msgstr "" "大量行排序不是什么错误,但您应确保需要大量排序的查询在 ORDER BY 中使用索引字" "段,这将使排序加快" -#: libraries/advisory_rules.txt:223 +#: libraries/advisory_rules.txt:230 #, php-format msgid "Sorted rows average: %s" msgstr "行排序率: %s" -#: libraries/advisory_rules.txt:226 +#: libraries/advisory_rules.txt:233 msgid "Rate of joins without indexes" msgstr "无索引联合查询率" -#: libraries/advisory_rules.txt:229 +#: libraries/advisory_rules.txt:236 msgid "There are too many joins without indexes." msgstr "有太多的联合查询未使用索引。" -#: libraries/advisory_rules.txt:230 +#: 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:231 +#: libraries/advisory_rules.txt:238 #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "表联合率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:233 +#: libraries/advisory_rules.txt:240 msgid "Rate of reading first index entry" msgstr "首索引入口读取率" -#: libraries/advisory_rules.txt:236 +#: libraries/advisory_rules.txt:243 msgid "The rate of reading the first index entry is high." msgstr "读取第一个索引入口比例过高。" -#: libraries/advisory_rules.txt:237 +#: 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 " @@ -12644,20 +12632,20 @@ msgstr "" "定 CPU 周期,如果这些表有或有过大量 UPDATE 和 DELETE,运行 'OPTIMIZE TABLE' " "可减少全索引扫描的次数以及提高速度。其它会减少全索引扫描的是重写查询。" -#: libraries/advisory_rules.txt:238 +#: libraries/advisory_rules.txt:245 #, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" msgstr "索引扫描率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:240 +#: libraries/advisory_rules.txt:247 msgid "Rate of reading fixed position" msgstr "固定位置读取率" -#: libraries/advisory_rules.txt:243 +#: libraries/advisory_rules.txt:250 msgid "The rate of reading data from a fixed position is high." msgstr "从固定位置读取数据的比例过高。" -#: libraries/advisory_rules.txt:244 +#: 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 " @@ -12666,42 +12654,42 @@ msgstr "" "这说明很多查询需要结果排序且/或执行一次全表扫描,包括无索引的联合查询。请在合" "适的地方添加索引。" -#: libraries/advisory_rules.txt:245 +#: 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 "固定位置读取率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:247 +#: libraries/advisory_rules.txt:254 msgid "Rate of reading next table row" msgstr "下一行读取率" -#: libraries/advisory_rules.txt:250 +#: libraries/advisory_rules.txt:257 msgid "The rate of reading the next table row is high." msgstr "读取下一行的比例过高。" -#: libraries/advisory_rules.txt:251 +#: 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:252 +#: 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 "下一行读取率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:255 +#: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" msgstr "tmp_table_size 对比 max_heap_table_size" -#: libraries/advisory_rules.txt:258 +#: libraries/advisory_rules.txt:265 msgid "tmp_table_size and max_heap_table_size are not the same." msgstr "tmp_table_size 和 max_heap_table_size 不一致。" -#: libraries/advisory_rules.txt:259 +#: 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 " @@ -12711,22 +12699,22 @@ msgstr "" "若您故意改变了其中一个值: 服务器使用较低的值来确定内存表的最大大小。如果您想" "增加内存表的大小您应该同时修改另一个值。" -#: libraries/advisory_rules.txt:260 +#: libraries/advisory_rules.txt:267 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "当前值为 tmp_table_size: %s,max_heap_table_size: %s" -#: libraries/advisory_rules.txt:262 +#: libraries/advisory_rules.txt:269 msgid "Percentage of temp tables on disk" msgstr "磁盘临时表比例" -#: libraries/advisory_rules.txt:265 libraries/advisory_rules.txt:272 +#: 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:266 +#: 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 " @@ -12742,18 +12730,18 @@ msgstr "" "\">Pythian 小组的文章开头所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字" "段或具有大于 512 字节的字段)" -#: libraries/advisory_rules.txt:267 +#: 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 "%s%% 的临时表被创建在磁盘上,该值应低于 25%%" -#: libraries/advisory_rules.txt:269 +#: libraries/advisory_rules.txt:276 msgid "Temp disk rate" msgstr "临时磁盘使用率" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -12769,42 +12757,42 @@ msgstr "" "\">MySQL 文档中所提到的这些条件 (临时表内: 具有 BLOB 或 TEXT 字段或具有大" "于 512 字节的字段)" -#: libraries/advisory_rules.txt:274 +#: 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 "临时表硬盘写入率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:289 +#: libraries/advisory_rules.txt:296 msgid "MyISAM key buffer size" msgstr "MyISAM 索引缓存大小" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "索引缓存未初始化。MyISAM 索引不会被缓存。" -#: libraries/advisory_rules.txt:293 +#: libraries/advisory_rules.txt:300 msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "根据 MyISAM 索引大小设置 {key_buffer_size}。64M 通常可以满足普通需求。" -#: libraries/advisory_rules.txt:294 +#: libraries/advisory_rules.txt:301 msgid "key_buffer_size is 0" msgstr "key_buffer_size 为 0" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, php-format msgid "Max %% MyISAM key buffer ever used" msgstr "最大 %% MyISAM 索引缓存从未使用" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, php-format msgid "MyISAM key buffer (index cache) %% used is low." msgstr "MyISAM 索引缓存 %% 使用率低。" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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 " @@ -12813,207 +12801,207 @@ msgstr "" "您可能需要减小 {key_buffer_size} 的大小,重新检查您的表是否删除了索引或检查查" "询期望使用的索引。" -#: libraries/advisory_rules.txt:301 +#: libraries/advisory_rules.txt:308 #, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "最大 %% MyISAM 索引缓存从未使用: %s%%,该值应高于 95%%" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 msgid "Percentage of MyISAM key buffer used" msgstr "MyISAM 索引缓存使用百分比" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "MyISAM 索引缓存使用率: %s%%,该值应高于 95%%" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 msgid "Percentage of index reads from memory" msgstr "从内存读取索引的百分比" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "%% 使用索引缓存的比例是低的。" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "你需要增大 {key_buffer_size}。" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "从内存读取索引率: %s%%,该值应高于 95%%" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 msgid "Rate of table open" msgstr "表打开率" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 msgid "The rate of opening tables is high." msgstr "打开表的比例过高。" -#: libraries/advisory_rules.txt:324 +#: libraries/advisory_rules.txt:331 msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "打开表需要很耗时的磁盘 I/O。增加 {table_open_cache} 避免多次打开。" -#: libraries/advisory_rules.txt:325 +#: libraries/advisory_rules.txt:332 #, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "已打开表的比率: %s,该值应低于 10 每小时" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 msgid "Percentage of used open files limit" msgstr "打开文件限制使用率" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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 "" "考虑增加 {open_files_limit},并在修改 open_files_limit 重启后检查错误日志。" -#: libraries/advisory_rules.txt:332 +#: 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 "打开的文件数量为最大数量的 %s%%。该值应低于 85%%" -#: libraries/advisory_rules.txt:334 +#: libraries/advisory_rules.txt:341 msgid "Rate of open files" msgstr "打开文件的比率" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 msgid "The rate of opening files is high." msgstr "当前打开文件数比率很高。" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "已打开文件的比率:%s,这个值应该低于5每小时" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, php-format msgid "Immediate table locks %%" msgstr "立即锁表 %%" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 msgid "Too many table locks were not granted immediately." msgstr "过多的锁表没有立即执行。" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "优化查询并/或使用 InnoDB 来减少锁等待。" -#: libraries/advisory_rules.txt:346 +#: libraries/advisory_rules.txt:353 #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "立即锁表率: %s%%,该值应高于 95%%" -#: libraries/advisory_rules.txt:348 +#: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "锁表等待率" -#: libraries/advisory_rules.txt:353 +#: libraries/advisory_rules.txt:360 #, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "锁表等待率: %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:355 +#: libraries/advisory_rules.txt:362 msgid "Thread cache" msgstr "线程缓存" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "线程缓存被禁用,有新连接到 MySQL 时将导致额外开销。" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "通过设置 {thread_cache_size} 大于 0 启用线程缓存。" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 msgid "The thread cache is set to 0" msgstr "线程缓存被设为 0" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, php-format msgid "Thread cache hit rate %%" msgstr "线程缓存命中率 %%" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 msgid "Thread cache is not efficient." msgstr "线程缓存效率低。" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "增加 {thread_cache_size}。" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "线程缓存命中率: %s%%,该值应高于 80%%" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 msgid "Threads that are slow to launch" msgstr "线程启动缓慢" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 msgid "There are too many threads that are slow to launch." msgstr "大量线程运行缓慢。" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "%s 个线程启动时间超过 %s 秒,该数值应为 0" -#: libraries/advisory_rules.txt:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "慢启动时间" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 msgid "Slow_launch_threads is above 2s" msgstr "Slow_launch_threads 大于 2 秒" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 msgid "" "Set slow_launch_time to 1s or 2s to correctly count threads that are slow to " "launch" msgstr "设置 slow_launch_time 为 1 秒或 2 秒以正确计算启动慢的线程数" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, php-format msgid "slow_launch_time is set to %s" msgstr "slow_launch_time 已设为 %s" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" msgstr "已用连接率" -#: libraries/advisory_rules.txt:388 +#: libraries/advisory_rules.txt:395 msgid "" "The maximum amount of used connections is getting close to the value of " "max_connections." msgstr "最大已用连接数接近 max_connections。" -#: libraries/advisory_rules.txt:389 +#: 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 " @@ -13022,21 +13010,21 @@ msgstr "" "增加 max_connections,或减少 wait_timeout 以使没有正常关闭连接的连接更快被杀" "死。确保代码中正常关闭数据库连接。" -#: libraries/advisory_rules.txt:390 +#: 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 为 max_connections 的 %s%%,该值应低于 80%%" -#: libraries/advisory_rules.txt:392 +#: libraries/advisory_rules.txt:399 msgid "Percentage of aborted connections" msgstr "已中止连接率" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." msgstr "太多连接已中止。" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. 这篇文章对您追踪来源可能有所帮助。" -#: libraries/advisory_rules.txt:397 +#: libraries/advisory_rules.txt:404 #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% 的连接已中止。该值应低于 1%%" -#: libraries/advisory_rules.txt:399 +#: libraries/advisory_rules.txt:406 msgid "Rate of aborted connections" msgstr "已中止连接的比例" -#: libraries/advisory_rules.txt:404 +#: libraries/advisory_rules.txt:411 #, php-format msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "已中止连接率为 %s,该值应低于 1 每小时" -#: libraries/advisory_rules.txt:406 +#: libraries/advisory_rules.txt:413 msgid "Percentage of aborted clients" msgstr "已中止客户端比例" -#: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 +#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." msgstr "太多的客户端已中止。" -#: libraries/advisory_rules.txt:410 libraries/advisory_rules.txt:417 +#: 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 " @@ -13079,47 +13067,47 @@ msgstr "" "客户端中止通常是因为它们没有正确关闭到 MySQL 服务器的连接。这可能由网络问题或" "代码中没有正确关闭数据库连接引起。请检查您的网络和代码。" -#: libraries/advisory_rules.txt:411 +#: libraries/advisory_rules.txt:418 #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% 的客户端已取消。此值不应高于 2%%" -#: libraries/advisory_rules.txt:413 +#: libraries/advisory_rules.txt:420 msgid "Rate of aborted clients" msgstr "客户端的取消率" -#: libraries/advisory_rules.txt:418 +#: libraries/advisory_rules.txt:425 #, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" msgstr "客户端取消率为 %s,此值应低于 1 每小时" -#: libraries/advisory_rules.txt:422 +#: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "InnoDB是否不可用?" -#: libraries/advisory_rules.txt:425 +#: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." msgstr "您没有启用 InnoDB。" -#: libraries/advisory_rules.txt:426 +#: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." msgstr "对于表引擎来说,InnoDB 是一个更好的选择。" -#: libraries/advisory_rules.txt:427 +#: libraries/advisory_rules.txt:434 msgid "have_innodb is set to 'value'" msgstr "have_innodb被设置为'value'" -#: libraries/advisory_rules.txt:429 +#: libraries/advisory_rules.txt:436 msgid "InnoDB log size" msgstr "InnoDB的日志大小" -#: libraries/advisory_rules.txt:432 +#: libraries/advisory_rules.txt:439 msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." msgstr "InnoDB 日志文件大小不合适,此关系到 InnoDB 缓冲池。" -#: libraries/advisory_rules.txt:433 +#: libraries/advisory_rules.txt:440 #, php-format msgid "" "Especially on a system with a lot of writes to InnoDB tables you should set " @@ -13139,22 +13127,22 @@ msgstr "" "再检查错误日志。参见这篇博客" -#: libraries/advisory_rules.txt:434 +#: 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 "您的 InnoDB 日志大小为 InnoDB 缓冲池大小的 %s%%,该值不应低于 20%%" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 msgid "Max InnoDB log size" msgstr "InnoDB日志最大大小" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "InnoDB 日志文件大小设置的不够大。" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13175,20 +13163,20 @@ msgstr "" "常。参见这篇博客" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "你的InnoDB日志文件的绝对大小为%s MB" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 msgid "InnoDB buffer pool size" msgstr "InnoDB缓冲池大小" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 msgid "Your InnoDB buffer pool is fairly small." msgstr "你的 InnoDB 缓冲池相当小。" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13203,7 +13191,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13215,15 +13203,15 @@ msgstr "" "然而这也可能因为您没有太多 InnoDB 表所以这样足够或者服务器上还运行了其它服" "务。" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 msgid "MyISAM concurrent inserts" msgstr "MyISAM 并发插入" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 msgid "Enable concurrent_insert by setting it to 1" msgstr "concurrent_insert(并发插入)被启用,且值被设置为1" -#: libraries/advisory_rules.txt:456 +#: libraries/advisory_rules.txt:463 msgid "" "Setting {concurrent_insert} to 1 reduces contention between readers and " "writers for a given table. See also MySQL 文档" -#: libraries/advisory_rules.txt:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "自上次刷新起发送的数据 [单位: KB]" + +#~ msgid "KiB received since last refresh" +#~ msgstr "自上次刷新起接收的数据 [单位: KB]" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "服务器流量 (单位: KB)" + +#~ msgid "Connections since last refresh" +#~ msgstr "自上次刷新起的连接数" + +#~ msgid "Questions since last refresh" +#~ msgstr "自上次刷新起的内部查询" + +#~ msgid "Questions (executed statements by the server)" +#~ msgstr "内部查询 (服务器执行的查询)" + +#~ msgid "Runtime Information" +#~ msgstr "运行信息" + +#~ msgid "Number of data points: " +#~ msgstr "记录数: " + +#~ msgid "Refresh rate: " +#~ msgstr "刷新频率: " + +#~ msgid "Run analyzer" +#~ msgstr "运行分析器" + #~ msgid "Show more actions" #~ msgstr "显示更多操作" diff --git a/po/zh_TW.po b/po/zh_TW.po index 50e34bb420..abfe2e52f3 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-12-09 07:12-0500\n" +"POT-Creation-Date: 2012-12-15 08:15-0500\n" "PO-Revision-Date: 2012-11-05 10:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Chinese (Taiwan) Settings menu." msgstr "" -#: js/messages.php:93 +#: js/messages.php:82 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "查詢快取" -#: js/messages.php:94 +#: js/messages.php:83 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "查詢快取" -#: js/messages.php:95 +#: js/messages.php:84 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "查詢快取" -#: js/messages.php:97 +#: js/messages.php:86 msgid "System CPU Usage" msgstr "系統CPU使用率" -#: js/messages.php:98 +#: js/messages.php:87 msgid "System memory" msgstr "系統記憶體" -#: js/messages.php:99 +#: js/messages.php:88 msgid "System swap" msgstr "系統Swap" -#. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/Util.class.php:1454 -#: server_status.php:1934 -msgid "MiB" -msgstr "MB" - -#. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/Util.class.php:1452 -#: server_status.php:1934 -msgid "KiB" -msgstr "KB" - -#: js/messages.php:103 +#: js/messages.php:90 msgid "Average load" msgstr "平均負載" -#: js/messages.php:104 +#: js/messages.php:91 msgid "Total memory" msgstr "總記憶體" -#: js/messages.php:105 +#: js/messages.php:92 msgid "Cached memory" msgstr "快取記憶體" -#: js/messages.php:106 +#: js/messages.php:93 msgid "Buffered memory" msgstr "緩衝記憶體" -#: js/messages.php:107 +#: js/messages.php:94 msgid "Free memory" msgstr "空閒記憶體" -#: js/messages.php:108 +#: js/messages.php:95 msgid "Used memory" msgstr "已使用記憶體" -#: js/messages.php:110 +#: js/messages.php:97 #, fuzzy #| msgid "Total" msgid "Total Swap" msgstr "總計Swap" -#: js/messages.php:111 +#: js/messages.php:98 msgid "Cached Swap" msgstr "快取Swap" -#: js/messages.php:112 +#: js/messages.php:99 msgid "Used Swap" msgstr "已用Swap" -#: js/messages.php:113 +#: js/messages.php:100 #, fuzzy #| msgid "Free pages" msgid "Free Swap" msgstr "空閒頁" -#: js/messages.php:115 +#: js/messages.php:102 msgid "Bytes sent" msgstr "Bytes 送出" -#: js/messages.php:116 +#: js/messages.php:103 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Bytes 已接收" -#: js/messages.php:117 server_status.php:1248 +#: js/messages.php:104 server_status.php:212 msgid "Connections" msgstr "連線" +#: js/messages.php:105 server_status.php:384 +msgid "Processes" +msgstr "處理" + #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/Util.class.php:1450 +#: js/messages.php:108 libraries/Util.class.php:1450 msgid "B" msgstr "B" +#. l10n: shortcuts for Kilobyte +#: js/messages.php:109 libraries/Util.class.php:1452 +#: server_status_monitor.php:648 +msgid "KiB" +msgstr "KB" + +#. l10n: shortcuts for Megabyte +#: js/messages.php:110 libraries/Util.class.php:1454 +#: server_status_monitor.php:649 +msgid "MiB" +msgstr "MB" + #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/Util.class.php:1456 +#: js/messages.php:111 libraries/Util.class.php:1456 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/Util.class.php:1458 +#: js/messages.php:112 libraries/Util.class.php:1458 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/Util.class.php:1460 +#: js/messages.php:113 libraries/Util.class.php:1460 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/Util.class.php:1462 +#: js/messages.php:114 libraries/Util.class.php:1462 msgid "EiB" msgstr "EB" -#: js/messages.php:128 +#: js/messages.php:115 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1232,82 +1202,83 @@ msgid "%d table(s)" msgstr "%s 張資料表" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:131 +#: js/messages.php:118 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "版本" -#: js/messages.php:132 server_status.php:1185 +#: js/messages.php:119 server_status.php:136 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:476 server_status.php:1803 +#: js/messages.php:120 libraries/Menu.class.php:486 +#: server_status_monitor.php:475 msgid "Settings" msgstr "設定" -#: js/messages.php:134 +#: js/messages.php:121 msgid "Remove chart" msgstr "刪除圖表" -#: js/messages.php:135 +#: js/messages.php:122 msgid "Edit title and labels" msgstr "編輯標題與標籤" -#: js/messages.php:136 +#: js/messages.php:123 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "對齊網格" -#: js/messages.php:138 +#: js/messages.php:125 msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" -#: js/messages.php:139 libraries/DisplayResults.class.php:1288 +#: js/messages.php:126 libraries/DisplayResults.class.php:1288 #: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979 #: libraries/display_export.lib.php:370 #: libraries/plugins/export/ExportSql.class.php:1545 #: libraries/server_privileges.lib.php:2126 #: libraries/tbl_properties.inc.php:678 pmd_general.php:561 -#: server_status.php:1487 server_status.php:1951 +#: server_status.php:477 server_status_monitor.php:667 msgid "None" msgstr "無" -#: js/messages.php:140 +#: js/messages.php:127 msgid "Resume monitor" msgstr "恢復監控" -#: js/messages.php:141 +#: js/messages.php:128 msgid "Pause monitor" msgstr "暫停監控" -#: js/messages.php:143 +#: js/messages.php:130 #, fuzzy msgid "general_log and slow_query_log are enabled." msgstr "general_log與slow_query_log已啟用" -#: js/messages.php:144 +#: js/messages.php:131 msgid "general_log is enabled." msgstr "general_log已啟用" -#: js/messages.php:145 +#: js/messages.php:132 msgid "slow_query_log is enabled." msgstr "slow_query_log已啟用" -#: js/messages.php:146 +#: js/messages.php:133 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log與general_log已關閉" -#: js/messages.php:147 +#: js/messages.php:134 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:148 +#: js/messages.php:135 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:149 +#: js/messages.php:136 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1315,515 +1286,517 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:150 +#: js/messages.php:137 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time已設為%d秒" -#: js/messages.php:151 +#: js/messages.php:138 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:153 +#: js/messages.php:140 #, fuzzy, php-format #| msgid "Save output to a file" msgid "Set log_output to %s" msgstr "儲存爲檔案" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:155 +#: js/messages.php:142 #, php-format msgid "Enable %s" msgstr "已啓用 %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:157 +#: js/messages.php:144 #, php-format msgid "Disable %s" msgstr "已關閉 %s" #. l10n: %d seconds -#: js/messages.php:159 +#: js/messages.php:146 #, php-format msgid "Set long_query_time to %ds" msgstr "" -#: js/messages.php:160 +#: js/messages.php:147 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:161 +#: js/messages.php:148 #, fuzzy #| msgid "Manage your settings" msgid "Change settings" msgstr "管理我的設定" -#: js/messages.php:162 +#: js/messages.php:149 #, fuzzy #| msgid "More settings" msgid "Current settings" msgstr "更多設定" -#: js/messages.php:164 server_status.php:1899 +#: js/messages.php:151 server_status_monitor.php:608 #, fuzzy #| msgid "Report title:" msgid "Chart Title" msgstr "報告標題:" #. l10n: As in differential values -#: js/messages.php:166 +#: js/messages.php:153 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "差異" -#: js/messages.php:167 +#: js/messages.php:154 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:168 +#: js/messages.php:155 msgid "Unit" msgstr "" -#: js/messages.php:170 +#: js/messages.php:157 msgid "From slow log" msgstr "" -#: js/messages.php:171 +#: js/messages.php:158 msgid "From general log" msgstr "" -#: js/messages.php:172 +#: js/messages.php:159 #, fuzzy #| msgid "Loading" msgid "Analysing logs" msgstr "載入中" -#: js/messages.php:173 +#: js/messages.php:160 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:174 +#: js/messages.php:161 msgid "Cancel request" msgstr "取消請求" -#: js/messages.php:175 +#: js/messages.php:162 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:176 +#: js/messages.php:163 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:177 +#: js/messages.php:164 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:179 +#: js/messages.php:166 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "轉到資料庫" -#: js/messages.php:180 +#: js/messages.php:167 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "沒有資料庫" -#: js/messages.php:181 +#: js/messages.php:168 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:183 +#: js/messages.php:170 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "分析" -#: js/messages.php:184 +#: js/messages.php:171 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL說明 " -#: js/messages.php:186 js/messages.php:536 +#: js/messages.php:173 js/messages.php:524 #: libraries/plugins/export/ExportHtmlword.class.php:484 #: libraries/plugins/export/ExportOdt.class.php:562 #: libraries/plugins/export/ExportTexytext.class.php:435 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1342 sql.php:1167 +#: libraries/rte/rte_list.lib.php:68 server_status.php:333 sql.php:1167 msgid "Time" msgstr "時間" -#: js/messages.php:187 +#: js/messages.php:174 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "總計" -#: js/messages.php:188 +#: js/messages.php:175 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "概要" -#: js/messages.php:189 +#: js/messages.php:176 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "表" -#: js/messages.php:190 +#: js/messages.php:177 #, fuzzy msgid "Chart" msgstr "文字編碼" -#: js/messages.php:191 +#: js/messages.php:178 #, fuzzy #| msgid "Add index" msgid "Edit chart" msgstr "新增索引" -#: js/messages.php:192 +#: js/messages.php:179 #, fuzzy #| msgid "SQL queries" msgid "Series" msgstr "SQL 查詢" #. l10n: A collection of available filters -#: js/messages.php:195 +#: js/messages.php:182 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "資料表顯示選項" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:197 +#: js/messages.php:184 msgid "Filter" msgstr "過濾" -#: js/messages.php:198 +#: js/messages.php:185 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:199 +#: js/messages.php:186 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:200 +#: js/messages.php:187 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "插入的行數" -#: js/messages.php:201 +#: js/messages.php:188 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "總計" -#: js/messages.php:203 +#: js/messages.php:190 #, fuzzy #| msgid "Loading" msgid "Loading logs" msgstr "載入中" -#: js/messages.php:204 +#: js/messages.php:191 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:205 +#: js/messages.php:192 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:206 +#: js/messages.php:193 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "重新載入" -#: js/messages.php:208 +#: js/messages.php:195 msgid "Affected rows:" msgstr "影響的行數" -#: js/messages.php:210 +#: js/messages.php:197 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:211 +#: js/messages.php:198 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:375 libraries/Menu.class.php:472 +#: js/messages.php:199 libraries/Menu.class.php:288 +#: libraries/Menu.class.php:375 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:170 libraries/display_import.lib.php:189 -#: prefs_manage.php:232 server_status.php:1852 setup/frames/menu.inc.php:21 +#: prefs_manage.php:232 server_status_monitor.php:530 +#: setup/frames/menu.inc.php:21 msgid "Import" msgstr "輸入" -#: js/messages.php:213 +#: js/messages.php:200 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "無法匯入設定" -#: js/messages.php:214 +#: js/messages.php:201 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:216 +#: js/messages.php:203 #, fuzzy #| msgid "Update Query" msgid "Analyse Query" msgstr "更新查詢" -#: js/messages.php:220 +#: js/messages.php:207 msgid "Advisor system" msgstr "" -#: js/messages.php:221 +#: js/messages.php:208 msgid "Possible performance issues" msgstr "" -#: js/messages.php:222 +#: js/messages.php:209 msgid "Issue" msgstr "問題" -#: js/messages.php:223 +#: js/messages.php:210 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "文件" -#: js/messages.php:224 +#: js/messages.php:211 #, fuzzy #| msgid "Details..." msgid "Rule details" msgstr "詳細..." -#: js/messages.php:225 +#: js/messages.php:212 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "認證" -#: js/messages.php:226 +#: js/messages.php:213 msgid "Used variable / formula" msgstr "" -#: js/messages.php:227 +#: js/messages.php:214 msgid "Test" msgstr "測試" -#: js/messages.php:232 pmd_general.php:439 pmd_general.php:476 +#: js/messages.php:219 pmd_general.php:439 pmd_general.php:476 #: pmd_general.php:596 pmd_general.php:644 pmd_general.php:720 #: pmd_general.php:774 pmd_general.php:837 pmd_general.php:868 #: server_variables.php:134 msgid "Cancel" msgstr "取消" -#: js/messages.php:235 libraries/navigation/NavigationHeader.class.php:58 +#: js/messages.php:222 libraries/navigation/NavigationHeader.class.php:58 +#: server_status_monitor.php:568 msgid "Loading" msgstr "載入中" -#: js/messages.php:236 +#: js/messages.php:223 msgid "Processing Request" msgstr "要求處理中" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:43 +#: js/messages.php:224 libraries/rte/rte_export.lib.php:43 msgid "Error in Processing Request" msgstr "要求處理得程序中有錯誤" -#: js/messages.php:238 +#: js/messages.php:225 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:239 +#: js/messages.php:226 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:240 libraries/db_common.inc.php:58 +#: js/messages.php:227 libraries/db_common.inc.php:58 #: libraries/db_table_exists.lib.php:28 server_databases.php:89 msgid "No databases selected." msgstr "未選中資料庫" -#: js/messages.php:241 +#: js/messages.php:228 msgid "Dropping Column" msgstr "刪除欄位" -#: js/messages.php:242 +#: js/messages.php:229 msgid "Adding Primary Key" msgstr "正在新增主鍵" -#: js/messages.php:243 pmd_general.php:437 pmd_general.php:594 +#: js/messages.php:230 pmd_general.php:437 pmd_general.php:594 #: pmd_general.php:642 pmd_general.php:718 pmd_general.php:772 #: pmd_general.php:835 msgid "OK" msgstr "確定" -#: js/messages.php:244 +#: js/messages.php:231 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:247 +#: js/messages.php:234 msgid "Renaming Databases" msgstr "更改資料庫名稱中" -#: js/messages.php:248 +#: js/messages.php:235 msgid "Reload Database" msgstr "重新載入資料庫" -#: js/messages.php:249 +#: js/messages.php:236 msgid "Copying Database" msgstr "複製資料庫中" -#: js/messages.php:250 +#: js/messages.php:237 msgid "Changing Charset" msgstr "更改文字編碼" -#: js/messages.php:251 +#: js/messages.php:238 msgid "Table must have at least one column" msgstr "資料表最少需要有一個欄位" -#: js/messages.php:256 +#: js/messages.php:243 msgid "Insert Table" msgstr "插入資料表" -#: js/messages.php:257 +#: js/messages.php:244 #, fuzzy #| msgid "Add index" msgid "Hide indexes" msgstr "新增索引" -#: js/messages.php:258 +#: js/messages.php:245 #, fuzzy #| msgid "Show grid" msgid "Show indexes" msgstr "顯示網格" -#: js/messages.php:259 libraries/mult_submits.inc.php:327 +#: js/messages.php:246 libraries/mult_submits.inc.php:327 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "關閉外鍵 (Foreign Key) 檢查" -#: js/messages.php:260 libraries/mult_submits.inc.php:331 +#: js/messages.php:247 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "已啓用" -#: js/messages.php:261 libraries/mult_submits.inc.php:331 +#: js/messages.php:248 libraries/mult_submits.inc.php:331 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" msgstr "已關閉" -#: js/messages.php:264 +#: js/messages.php:251 msgid "Searching" msgstr "搜索中" -#: js/messages.php:265 +#: js/messages.php:252 msgid "Hide search results" msgstr "隱藏搜尋結果" -#: js/messages.php:266 +#: js/messages.php:253 msgid "Show search results" msgstr "顯示搜尋結果" -#: js/messages.php:267 +#: js/messages.php:254 msgid "Browsing" msgstr "瀏覽" -#: js/messages.php:268 +#: js/messages.php:255 msgid "Deleting" msgstr "刪除" -#: js/messages.php:271 +#: js/messages.php:258 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:274 libraries/rte/rte_routines.lib.php:760 +#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760 msgid "ENUM/SET editor" msgstr "ENUM/SET 編輯器" -#: js/messages.php:275 +#: js/messages.php:262 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "%s 欄位的值" -#: js/messages.php:276 +#: js/messages.php:263 msgid "Values for a new column" msgstr "新欄位的值" -#: js/messages.php:277 +#: js/messages.php:264 msgid "Enter each value in a separate field" msgstr "請分別將資料填入以下欄位" -#: js/messages.php:278 +#: js/messages.php:265 #, fuzzy, php-format #| msgid "+ Add a new value" msgid "Add %d value(s)" msgstr "+ 增加" -#: js/messages.php:281 +#: js/messages.php:268 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "注意: 若檔案包含多個資料表, 它們會被結合成一個資料表." -#: js/messages.php:284 +#: js/messages.php:271 msgid "Hide query box" msgstr "隱藏查詢框" -#: js/messages.php:285 +#: js/messages.php:272 msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:287 tbl_row_action.php:21 +#: js/messages.php:274 tbl_row_action.php:21 msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:288 libraries/DisplayResults.class.php:5073 +#: js/messages.php:275 libraries/DisplayResults.class.php:5073 #: libraries/structure.lib.php:1378 libraries/structure.lib.php:2075 #: querywindow.php:85 msgid "Change" msgstr "修改" -#: js/messages.php:289 +#: js/messages.php:276 #, fuzzy #| msgid "Maximum execution time" msgid "Query execution time" msgstr "最長執行時間" -#: js/messages.php:290 libraries/DisplayResults.class.php:721 +#: js/messages.php:277 libraries/DisplayResults.class.php:721 #: libraries/DisplayResults.class.php:729 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行數" -#: js/messages.php:293 libraries/config/FormDisplay.tpl.php:394 +#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394 #: libraries/insert_edit.lib.php:1460 #: libraries/schema/User_Schema.class.php:373 #: libraries/tbl_properties.inc.php:897 server_variables.php:132 @@ -1832,213 +1805,218 @@ msgstr "%d 不是有效行數" msgid "Save" msgstr "儲存" -#: js/messages.php:296 +#: js/messages.php:283 msgid "Hide search criteria" msgstr "隱藏搜尋條件" -#: js/messages.php:297 +#: js/messages.php:284 msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:300 libraries/TableSearch.class.php:210 +#: js/messages.php:287 libraries/TableSearch.class.php:210 #, fuzzy #| msgid "Search" msgid "Zoom Search" msgstr "搜尋" -#: js/messages.php:302 +#: js/messages.php:289 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:304 +#: js/messages.php:291 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:306 +#: js/messages.php:293 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:308 +#: js/messages.php:295 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:310 +#: js/messages.php:297 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:312 +#: js/messages.php:299 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:314 +#: js/messages.php:301 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "新增/刪除欄位" -#: js/messages.php:315 +#: js/messages.php:302 msgid "Select two different columns" msgstr "" -#: js/messages.php:316 +#: js/messages.php:303 #, fuzzy #| msgid "Query results operations" msgid "Query results" msgstr "查詢結果選項" -#: js/messages.php:317 +#: js/messages.php:304 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "資料指標大小" -#: js/messages.php:320 tbl_change.php:263 tbl_indexes.php:259 +#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:259 #: tbl_indexes.php:297 msgid "Ignore" msgstr "忽略" -#: js/messages.php:321 libraries/DisplayResults.class.php:3322 +#: js/messages.php:308 libraries/DisplayResults.class.php:3322 msgid "Copy" msgstr "複製" -#: js/messages.php:336 +#: js/messages.php:323 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "新增欄位" -#: js/messages.php:339 +#: js/messages.php:326 msgid "Select referenced key" msgstr "選擇外部鍵" -#: js/messages.php:340 +#: js/messages.php:327 msgid "Select Foreign Key" msgstr "選擇外部鍵" -#: js/messages.php:341 +#: js/messages.php:328 msgid "Please select the primary key or a unique key" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:342 pmd_general.php:109 tbl_relation.php:502 +#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502 msgid "Choose column to display" msgstr "選擇要顯示的欄位" -#: js/messages.php:343 +#: js/messages.php:330 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:346 +#: js/messages.php:333 msgid "Add an option for column " msgstr "新增選項給欄位 " -#: js/messages.php:349 +#: js/messages.php:334 +#, php-format +msgid "%d object(s) created" +msgstr "" + +#: js/messages.php:337 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:350 +#: js/messages.php:338 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:351 +#: js/messages.php:339 msgid "Drag to reorder" msgstr "" -#: js/messages.php:352 +#: js/messages.php:340 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "點擊選取" -#: js/messages.php:353 +#: js/messages.php:341 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:354 +#: js/messages.php:342 msgid "Double-click to copy column name" msgstr "" -#: js/messages.php:355 +#: js/messages.php:343 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:357 +#: js/messages.php:345 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:362 +#: js/messages.php:350 msgid "" "You can also edit most columns
by double-clicking directly on their " "content." msgstr "" -#: js/messages.php:365 +#: js/messages.php:353 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:370 +#: js/messages.php:358 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "轉到 view" -#: js/messages.php:371 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Copy column name" msgstr "欄位名稱" -#: js/messages.php:372 +#: js/messages.php:360 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:373 +#: js/messages.php:361 #, fuzzy #| msgid "Update row(s)" msgid "Show data row(s)" msgstr "更新行" -#: js/messages.php:376 +#: js/messages.php:364 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:377 libraries/replication_gui.lib.php:389 +#: js/messages.php:365 libraries/replication_gui.lib.php:389 msgid "Generate" msgstr "產生" -#: js/messages.php:378 +#: js/messages.php:366 msgid "Change Password" msgstr "修改密碼" -#: js/messages.php:381 +#: js/messages.php:369 msgid "More" msgstr "更多" -#: js/messages.php:384 +#: js/messages.php:372 #, fuzzy #| msgid "Show all" msgid "Show Panel" msgstr "全部顯示" -#: js/messages.php:385 +#: js/messages.php:373 #, fuzzy #| msgid "Add index" msgid "Hide Panel" msgstr "新增索引" -#: js/messages.php:388 +#: js/messages.php:376 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "在權限表內找不到選中的使用者" -#: js/messages.php:391 setup/lib/index.lib.php:188 +#: js/messages.php:379 setup/lib/index.lib.php:188 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2046,21 +2024,21 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:393 +#: js/messages.php:381 msgid ", latest stable version:" msgstr ",最新穩定版本:" -#: js/messages.php:394 +#: js/messages.php:382 msgid "up to date" msgstr "最新" #. l10n: Display text for calendar close link -#: js/messages.php:413 +#: js/messages.php:401 msgid "Done" msgstr "完成" # 這應該是使用於選擇日期的月曆 -#: js/messages.php:417 +#: js/messages.php:405 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2068,7 +2046,7 @@ msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:422 +#: js/messages.php:410 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2076,244 +2054,244 @@ msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:425 +#: js/messages.php:413 msgid "Today" msgstr "今天" -#: js/messages.php:429 +#: js/messages.php:417 msgid "January" msgstr "一月" -#: js/messages.php:430 +#: js/messages.php:418 msgid "February" msgstr "二月" -#: js/messages.php:431 +#: js/messages.php:419 msgid "March" msgstr "三月" -#: js/messages.php:432 +#: js/messages.php:420 msgid "April" msgstr "四月" -#: js/messages.php:433 +#: js/messages.php:421 msgid "May" msgstr "五月" -#: js/messages.php:434 +#: js/messages.php:422 msgid "June" msgstr "六月" -#: js/messages.php:435 +#: js/messages.php:423 msgid "July" msgstr "七月" -#: js/messages.php:436 +#: js/messages.php:424 msgid "August" msgstr "八月" -#: js/messages.php:437 +#: js/messages.php:425 msgid "September" msgstr "九月" -#: js/messages.php:438 +#: js/messages.php:426 msgid "October" msgstr "十月" -#: js/messages.php:439 +#: js/messages.php:427 msgid "November" msgstr "十一月" -#: js/messages.php:440 +#: js/messages.php:428 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:447 libraries/Util.class.php:1661 +#: js/messages.php:435 libraries/Util.class.php:1661 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:449 libraries/Util.class.php:1663 +#: js/messages.php:437 libraries/Util.class.php:1663 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:451 libraries/Util.class.php:1665 +#: js/messages.php:439 libraries/Util.class.php:1665 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:453 libraries/Util.class.php:1667 +#: js/messages.php:441 libraries/Util.class.php:1667 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:455 libraries/Util.class.php:1669 +#: js/messages.php:443 libraries/Util.class.php:1669 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:457 libraries/Util.class.php:1671 +#: js/messages.php:445 libraries/Util.class.php:1671 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:459 libraries/Util.class.php:1673 +#: js/messages.php:447 libraries/Util.class.php:1673 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:461 libraries/Util.class.php:1675 +#: js/messages.php:449 libraries/Util.class.php:1675 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:463 libraries/Util.class.php:1677 +#: js/messages.php:451 libraries/Util.class.php:1677 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:465 libraries/Util.class.php:1679 +#: js/messages.php:453 libraries/Util.class.php:1679 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:467 libraries/Util.class.php:1681 +#: js/messages.php:455 libraries/Util.class.php:1681 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:469 libraries/Util.class.php:1683 +#: js/messages.php:457 libraries/Util.class.php:1683 msgid "Dec" msgstr "十二月" -#: js/messages.php:475 +#: js/messages.php:463 msgid "Sunday" msgstr "星期日" -#: js/messages.php:476 +#: js/messages.php:464 msgid "Monday" msgstr "星期一" -#: js/messages.php:477 +#: js/messages.php:465 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:478 +#: js/messages.php:466 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:479 +#: js/messages.php:467 msgid "Thursday" msgstr "星期四" -#: js/messages.php:480 +#: js/messages.php:468 msgid "Friday" msgstr "星期五" -#: js/messages.php:481 +#: js/messages.php:469 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:488 +#: js/messages.php:476 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:490 libraries/Util.class.php:1688 +#: js/messages.php:478 libraries/Util.class.php:1688 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:492 libraries/Util.class.php:1690 +#: js/messages.php:480 libraries/Util.class.php:1690 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:494 libraries/Util.class.php:1692 +#: js/messages.php:482 libraries/Util.class.php:1692 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:496 libraries/Util.class.php:1694 +#: js/messages.php:484 libraries/Util.class.php:1694 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:498 libraries/Util.class.php:1696 +#: js/messages.php:486 libraries/Util.class.php:1696 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:500 libraries/Util.class.php:1698 +#: js/messages.php:488 libraries/Util.class.php:1698 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:507 +#: js/messages.php:495 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:509 +#: js/messages.php:497 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:511 +#: js/messages.php:499 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:513 +#: js/messages.php:501 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:515 +#: js/messages.php:503 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:517 +#: js/messages.php:505 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:519 +#: js/messages.php:507 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:523 +#: js/messages.php:511 msgid "Wk" msgstr "周" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". -#: js/messages.php:526 +#: js/messages.php:514 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:528 +#: js/messages.php:516 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "無" -#: js/messages.php:537 +#: js/messages.php:525 msgid "Hour" msgstr "時" -#: js/messages.php:538 +#: js/messages.php:526 msgid "Minute" msgstr "分" -#: js/messages.php:539 +#: js/messages.php:527 msgid "Second" msgstr "秒" @@ -2364,16 +2342,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:450 server_status.php:1026 +#: libraries/Advisor.class.php:450 server_status_queries.php:86 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:453 server_status.php:1021 +#: libraries/Advisor.class.php:453 server_status_queries.php:82 msgid "per minute" msgstr "每分鐘" -#: libraries/Advisor.class.php:456 server_status.php:1017 -#: server_status.php:1049 server_status.php:1186 server_status.php:1249 +#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213 +#: server_status_queries.php:79 server_status_queries.php:108 msgid "per hour" msgstr "每小時" @@ -2399,7 +2377,7 @@ msgstr "字體大小" #: libraries/DisplayResults.class.php:2021 libraries/TableSearch.class.php:806 #: libraries/operations.lib.php:632 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:202 -#: server_databases.php:219 server_status.php:1431 +#: server_databases.php:219 server_status.php:421 msgid "Ascending" msgstr "遞增" @@ -2408,7 +2386,7 @@ msgstr "遞增" #: libraries/DisplayResults.class.php:2026 libraries/TableSearch.class.php:807 #: libraries/operations.lib.php:633 libraries/structure.lib.php:870 #: libraries/structure.lib.php:887 server_databases.php:202 -#: server_databases.php:219 server_status.php:1428 +#: server_databases.php:219 server_status.php:418 msgid "Descending" msgstr "遞減" @@ -2522,7 +2500,7 @@ msgstr "刪除 %s 資料表中符合的資料?" #: libraries/schema/User_Schema.class.php:359 #: libraries/sql_query_form.lib.php:417 pmd_general.php:474 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:532 tbl_tracking.php:552 tbl_tracking.php:614 +#: tbl_tracking.php:537 tbl_tracking.php:557 tbl_tracking.php:619 msgid "Delete" msgstr "刪除" @@ -2715,7 +2693,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/DisplayResults.class.php:3417 -#: libraries/DisplayResults.class.php:5049 server_status.php:1483 +#: libraries/DisplayResults.class.php:5049 server_status.php:473 msgid "Kill" msgstr "中止" @@ -2770,12 +2748,13 @@ msgstr "全選" #: libraries/DisplayResults.class.php:5086 #: libraries/DisplayResults.class.php:5284 libraries/Menu.class.php:279 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:468 +#: libraries/Menu.class.php:366 libraries/Menu.class.php:478 #: libraries/Util.class.php:3487 libraries/Util.class.php:3488 #: libraries/config/messages.inc.php:164 libraries/display_export.lib.php:94 #: libraries/server_privileges.lib.php:1798 #: libraries/server_privileges.lib.php:2420 libraries/structure.lib.php:300 -#: prefs_manage.php:289 server_status.php:1852 setup/frames/menu.inc.php:22 +#: prefs_manage.php:289 server_status_monitor.php:534 +#: setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" @@ -2783,7 +2762,7 @@ msgstr "匯出" msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5208 libraries/Header.class.php:336 #: libraries/structure.lib.php:302 libraries/structure.lib.php:365 #: libraries/structure.lib.php:1485 msgid "Print view" @@ -2864,16 +2843,16 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/Header.class.php:385 +#: libraries/Header.class.php:387 msgid "Click on the bar to scroll to top of page" msgstr "" -#: libraries/Header.class.php:591 +#: libraries/Header.class.php:593 #: libraries/plugins/auth/AuthenticationCookie.class.php:259 msgid "Cookies must be enabled past this point." msgstr "必須啟用 Cookies 才能登入。" -#: libraries/Header.class.php:596 +#: libraries/Header.class.php:598 #: libraries/plugins/auth/AuthenticationCookie.class.php:163 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2887,21 +2866,21 @@ msgstr "沒有已定義的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: libraries/structure.lib.php:1600 tbl_tracking.php:372 +#: libraries/structure.lib.php:1600 tbl_tracking.php:377 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1391 #: libraries/structure.lib.php:2085 libraries/structure.lib.php:2095 -#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:378 +#: libraries/tbl_properties.inc.php:564 tbl_tracking.php:383 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:379 +#: libraries/Index.class.php:564 tbl_tracking.php:384 msgid "Packed" msgstr "緊湊" -#: libraries/Index.class.php:566 tbl_tracking.php:381 +#: libraries/Index.class.php:566 tbl_tracking.php:386 msgid "Cardinality" msgstr "基數" @@ -2911,13 +2890,13 @@ msgstr "基數" #: libraries/structure.lib.php:785 libraries/structure.lib.php:1186 #: libraries/structure.lib.php:1736 libraries/tbl_properties.inc.php:114 #: libraries/tbl_properties.inc.php:841 server_collations.php:38 -#: server_collations.php:50 tbl_tracking.php:320 tbl_tracking.php:382 +#: server_collations.php:50 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Collation" msgstr "排序規則" #: libraries/Index.class.php:569 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:324 -#: tbl_tracking.php:384 +#: libraries/rte/rte_routines.lib.php:1029 tbl_tracking.php:329 +#: tbl_tracking.php:389 msgid "Comment" msgstr "註解" @@ -2960,7 +2939,7 @@ msgstr "view" #: libraries/plugins/export/ExportLatex.class.php:480 #: libraries/server_privileges.lib.php:755 #: libraries/tbl_properties.inc.php:770 pmd_general.php:188 -#: tbl_tracking.php:314 +#: tbl_tracking.php:319 msgid "Structure" msgstr "結構" @@ -3033,36 +3012,37 @@ msgstr "事件" msgid "Designer" msgstr "設計器" -#: libraries/Menu.class.php:463 +#: libraries/Menu.class.php:473 #, fuzzy #| msgid "User" msgid "Users" msgstr "使用者" -#: libraries/Menu.class.php:485 server_binlog.php:74 server_status.php:660 +#: libraries/Menu.class.php:495 libraries/ServerStatusData.class.php:187 +#: server_binlog.php:74 msgid "Binary log" msgstr "二進制日誌" -#: libraries/Menu.class.php:491 libraries/structure.lib.php:185 -#: libraries/structure.lib.php:766 server_replication.php:32 -#: server_replication.php:148 server_status.php:665 +#: libraries/Menu.class.php:501 libraries/ServerStatusData.class.php:192 +#: libraries/structure.lib.php:185 libraries/structure.lib.php:766 +#: server_replication.php:32 server_replication.php:148 msgid "Replication" msgstr "複製" -#: libraries/Menu.class.php:496 server_engines.php:94 server_engines.php:98 -#: server_status.php:713 +#: libraries/Menu.class.php:506 libraries/ServerStatusData.class.php:241 +#: server_engines.php:94 server_engines.php:98 msgid "Variables" msgstr "變數" -#: libraries/Menu.class.php:500 +#: libraries/Menu.class.php:510 msgid "Charsets" msgstr "字集" -#: libraries/Menu.class.php:505 server_plugins.php:32 server_plugins.php:65 +#: libraries/Menu.class.php:515 server_plugins.php:32 server_plugins.php:65 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:509 +#: libraries/Menu.class.php:519 msgid "Engines" msgstr "引擎" @@ -3109,6 +3089,106 @@ msgstr "最新資料表" msgid "There are no recent tables" msgstr "沒有最新資料表" +#: libraries/ServerStatusData.class.php:181 libraries/Util.class.php:666 +#: server_status.php:341 sql.php:1094 +msgid "SQL query" +msgstr "SQL 查詢" + +#: libraries/ServerStatusData.class.php:184 +msgid "Handler" +msgstr "處理器" + +#: libraries/ServerStatusData.class.php:185 +msgid "Query cache" +msgstr "查詢快取" + +#: libraries/ServerStatusData.class.php:186 +msgid "Threads" +msgstr "程序" + +#: libraries/ServerStatusData.class.php:188 +msgid "Temporary data" +msgstr "臨時資料" + +#: libraries/ServerStatusData.class.php:189 +msgid "Delayed inserts" +msgstr "延遲插入" + +#: libraries/ServerStatusData.class.php:190 +msgid "Key cache" +msgstr "鍵快取" + +#: libraries/ServerStatusData.class.php:191 +msgid "Joins" +msgstr "多表查詢" + +#: libraries/ServerStatusData.class.php:193 +msgid "Sorting" +msgstr "排序" + +#: libraries/ServerStatusData.class.php:194 +#: libraries/build_html_for_db.lib.php:26 +#: libraries/config/messages.inc.php:183 +#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 +#: libraries/plugins/export/ExportXml.class.php:116 +msgid "Tables" +msgstr "資料表" + +#: libraries/ServerStatusData.class.php:195 +msgid "Transaction coordinator" +msgstr "交易協調" + +#: libraries/ServerStatusData.class.php:196 server_binlog.php:107 +msgid "Files" +msgstr "檔案" + +#: libraries/ServerStatusData.class.php:207 +msgid "Flush (close) all tables" +msgstr "強制更新 (關閉) 所有表" + +#: libraries/ServerStatusData.class.php:209 +msgid "Show open tables" +msgstr "顯示開啟的表" + +#: libraries/ServerStatusData.class.php:214 +msgid "Show slave hosts" +msgstr "顯示從伺服器" + +#: libraries/ServerStatusData.class.php:218 server_replication.php:170 +msgid "Show master status" +msgstr "查看主伺服器狀態" + +#: libraries/ServerStatusData.class.php:221 +msgid "Show slave status" +msgstr "顯示從伺服器狀態" + +#: libraries/ServerStatusData.class.php:226 +msgid "Flush query cache" +msgstr "強制更新查詢快取" + +#: libraries/ServerStatusData.class.php:243 +#: libraries/engines/innodb.lib.php:144 +msgid "InnoDB Status" +msgstr "InnoDB 狀態" + +#: libraries/ServerStatusData.class.php:345 +msgid "Query statistics" +msgstr "查詢統計" + +#: libraries/ServerStatusData.class.php:349 +#, fuzzy +#| msgid "See slave status table" +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." @@ -3205,7 +3285,7 @@ msgstr "運算符" #: libraries/insert_edit.lib.php:1576 libraries/replication_gui.lib.php:124 #: libraries/rte/rte_routines.lib.php:1497 pmd_general.php:527 #: pmd_general.php:586 pmd_general.php:709 pmd_general.php:826 -#: server_status.php:1709 +#: server_status_variables.php:233 msgid "Value" msgstr "值" @@ -3612,11 +3692,6 @@ msgstr "" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:666 server_status.php:654 server_status.php:1350 -#: sql.php:1094 -msgid "SQL query" -msgstr "SQL 查詢" - #: libraries/Util.class.php:710 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:292 @@ -3651,7 +3726,7 @@ msgid "Create PHP Code" msgstr "建立 PHP 程式碼" #: libraries/Util.class.php:1278 libraries/config/messages.inc.php:488 -#: server_status.php:844 server_status.php:873 server_status.php:900 +#: server_status_variables.php:80 msgid "Refresh" msgstr "重新整理" @@ -3751,13 +3826,6 @@ msgstr "列印" msgid "shared" msgstr "已共享" -#: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 -#: libraries/navigation/Nodes/Node_Table_Container.class.php:26 -#: libraries/plugins/export/ExportXml.class.php:116 server_status.php:667 -msgid "Tables" -msgstr "資料表" - #: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 #: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 #: libraries/config/setup.forms.php:366 @@ -3798,24 +3866,24 @@ msgstr "檢查資料庫 「%s」 之權限." msgid "Check Privileges" msgstr "檢查權限" -#: libraries/common.inc.php:574 +#: libraries/common.inc.php:578 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "無法儲存設定" -#: libraries/common.inc.php:576 +#: libraries/common.inc.php:580 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:583 +#: libraries/common.inc.php:587 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "無法載入預設設定: %1$s" -#: libraries/common.inc.php:590 +#: libraries/common.inc.php:594 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3825,38 +3893,38 @@ msgid "" "configuration file!" msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:623 +#: libraries/common.inc.php:627 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:634 +#: libraries/common.inc.php:638 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." -#: libraries/common.inc.php:843 +#: libraries/common.inc.php:847 msgid "Invalid authentication method set in configuration:" msgstr "設定檔案中設定的認證方式無效:" -#: libraries/common.inc.php:965 +#: libraries/common.inc.php:969 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更高版本。" -#: libraries/common.inc.php:1039 +#: libraries/common.inc.php:1043 msgid "Error: Token mismatch" msgstr "" -#: libraries/common.inc.php:1083 +#: libraries/common.inc.php:1087 msgid "GLOBALS overwrite attempt" msgstr "" -#: libraries/common.inc.php:1090 +#: libraries/common.inc.php:1094 msgid "possible exploit" msgstr "" -#: libraries/common.inc.php:1099 +#: libraries/common.inc.php:1103 msgid "numeric key detected" msgstr "" @@ -6059,8 +6127,8 @@ msgid "" "kbd])" msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:550 -#: tbl_tracking.php:612 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:555 +#: tbl_tracking.php:617 msgid "Username" msgstr "使用者名" @@ -6702,10 +6770,6 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:144 server_status.php:715 -msgid "InnoDB Status" -msgstr "InnoDB 狀態" - #: libraries/engines/innodb.lib.php:166 msgid "Buffer Pool Usage" msgstr "快取池使用情況" @@ -7383,18 +7447,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1025 +#: libraries/navigation/NavigationTree.class.php:1027 #, fuzzy #| msgid "filter tables by name" msgid "filter databases by name" msgstr "請輸入部分或完整的表名" -#: libraries/navigation/NavigationTree.class.php:1026 -#: libraries/navigation/NavigationTree.class.php:1052 +#: libraries/navigation/NavigationTree.class.php:1028 +#: libraries/navigation/NavigationTree.class.php:1054 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1051 +#: libraries/navigation/NavigationTree.class.php:1053 #, fuzzy #| msgid "filter tables by name" msgid "filter items by name" @@ -7492,17 +7556,17 @@ msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:500 +#: tbl_tracking.php:505 msgid "Structure only" msgstr "僅結構" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:506 +#: tbl_tracking.php:511 msgid "Structure and data" msgstr "結構和資料" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:503 +#: tbl_tracking.php:508 msgid "Data only" msgstr "僅資料" @@ -7894,8 +7958,7 @@ msgstr "顯示 MIME 類型" #: libraries/server_privileges.lib.php:1090 #: libraries/server_privileges.lib.php:1186 #: libraries/server_privileges.lib.php:1579 -#: libraries/server_privileges.lib.php:2390 server_status.php:1330 -#: sql.php:1088 +#: libraries/server_privileges.lib.php:2390 server_status.php:321 sql.php:1088 msgid "Host" msgstr "主機" @@ -8478,7 +8541,7 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:123 libraries/sql_query_form.lib.php:401 -#: server_status.php:1708 server_variables.php:166 +#: server_status_variables.php:232 server_variables.php:166 msgid "Variable" msgstr "變數" @@ -9061,7 +9124,7 @@ msgstr "屬性" #: libraries/schema/Pdf_Relation_Schema.class.php:1354 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 -#: libraries/structure.lib.php:1190 tbl_tracking.php:323 +#: libraries/structure.lib.php:1190 tbl_tracking.php:328 msgid "Extra" msgstr "額外" @@ -9743,7 +9806,7 @@ msgstr "資料表名稱增加前綴文字" msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: libraries/structure.lib.php:1284 tbl_tracking.php:353 +#: libraries/structure.lib.php:1284 tbl_tracking.php:358 msgctxt "None for default" msgid "None" msgstr "無" @@ -10090,7 +10153,7 @@ msgstr "反向收縮/展開" msgid "Toggle relation lines" msgstr "要選擇關聯,點選:" -#: pmd_general.php:147 pmd_pdf.php:104 +#: pmd_general.php:147 pmd_pdf.php:102 msgid "Import/Export coordinates for PDF schema" msgstr "爲 PDF 大綱匯入/匯出座標" @@ -10156,31 +10219,31 @@ msgstr "已建立頁面" msgid "Page creation failed" msgstr "頁面建立失敗" -#: pmd_pdf.php:115 +#: pmd_pdf.php:113 msgid "Page" msgstr "頁面" -#: pmd_pdf.php:125 +#: pmd_pdf.php:123 msgid "Import from selected page" msgstr "從所選頁匯入" -#: pmd_pdf.php:126 +#: pmd_pdf.php:124 msgid "Export to selected page" msgstr "匯出至所選頁" -#: pmd_pdf.php:128 +#: pmd_pdf.php:126 msgid "Create a page and export to it" msgstr "匯出至新頁" -#: pmd_pdf.php:140 +#: pmd_pdf.php:138 msgid "New page name: " msgstr "新頁面名: " -#: pmd_pdf.php:143 +#: pmd_pdf.php:141 msgid "Export/Import to scale" msgstr "按比例匯出/匯入" -#: pmd_pdf.php:148 +#: pmd_pdf.php:146 msgid "recommended" msgstr "推薦" @@ -10296,15 +10359,11 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:107 server_status.php:669 -msgid "Files" -msgstr "檔案" - -#: server_binlog.php:154 server_status.php:1440 server_status.php:1449 +#: server_binlog.php:154 server_status.php:430 server_status.php:439 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:158 server_status.php:1442 server_status.php:1451 +#: server_binlog.php:158 server_status.php:432 server_status.php:441 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -10387,7 +10446,7 @@ msgstr "" msgid "Library" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:758 +#: server_plugins.php:97 server_plugins.php:132 tbl_tracking.php:763 msgid "Version" msgstr "版本" @@ -10447,10 +10506,6 @@ msgstr "權限已成功重新讀取." msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:170 server_status.php:690 -msgid "Show master status" -msgstr "查看主伺服器狀態" - #: server_replication.php:174 msgid "Show connected slaves" msgstr "查看已連線的從伺服器" @@ -10584,215 +10639,43 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:515 +#: server_status.php:31 #, php-format msgid "Thread %s was successfully killed." msgstr "已中止程序 %s" -#: server_status.php:519 +#: server_status.php:35 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" -#: server_status.php:657 -msgid "Handler" -msgstr "處理器" - -#: server_status.php:658 -msgid "Query cache" -msgstr "查詢快取" - -#: server_status.php:659 -msgid "Threads" -msgstr "程序" - -#: server_status.php:661 -msgid "Temporary data" -msgstr "臨時資料" - -#: server_status.php:662 -msgid "Delayed inserts" -msgstr "延遲插入" - -#: server_status.php:663 -msgid "Key cache" -msgstr "鍵快取" - -#: server_status.php:664 -msgid "Joins" -msgstr "多表查詢" - -#: server_status.php:666 -msgid "Sorting" -msgstr "排序" - -#: server_status.php:668 -msgid "Transaction coordinator" -msgstr "交易協調" - -#: server_status.php:680 -msgid "Flush (close) all tables" -msgstr "強制更新 (關閉) 所有表" - -#: server_status.php:682 -msgid "Show open tables" -msgstr "顯示開啟的表" - -#: server_status.php:687 -msgid "Show slave hosts" -msgstr "顯示從伺服器" - -#: server_status.php:693 -msgid "Show slave status" -msgstr "顯示從伺服器狀態" - -#: server_status.php:698 -msgid "Flush query cache" -msgstr "強制更新查詢快取" - -#: server_status.php:822 -msgid "Runtime Information" -msgstr "運行資訊" - -#: server_status.php:830 -#, fuzzy -#| msgid "See slave status table" -msgid "All status variables" -msgstr "查看從伺服器狀態" - -#: server_status.php:832 -msgid "Monitor" -msgstr "" - -#: server_status.php:834 -msgid "Advisor" -msgstr "" - -#: server_status.php:848 server_status.php:877 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of data points: " -msgstr "記錄數:" - -#: server_status.php:852 server_status.php:881 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate: " -msgstr "重新整理" - -#: server_status.php:894 server_variables.php:156 -#, fuzzy -msgid "Filters" -msgstr "過濾" - -#: server_status.php:904 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" -msgid "Containing the word:" -msgstr "保持原密碼" - -#: server_status.php:910 -#, fuzzy -#| msgid "Show open tables" -msgid "Show only alert values" -msgstr "顯示開啟的表" - -#: server_status.php:914 -msgid "Filter by category..." -msgstr "" - -#: server_status.php:926 -#, fuzzy -#| msgid "Show open tables" -msgid "Show unformatted values" -msgstr "顯示開啟的表" - -#: server_status.php:930 -#, fuzzy -#| msgid "Related Links" -msgid "Related links:" -msgstr "相關連結" - -#: server_status.php:964 -#, fuzzy -#| msgid "Query type" -msgid "Run analyzer" -msgstr "查詢方式" - -#: server_status.php:966 -#, fuzzy -msgid "Instructions" -msgstr "資料" - -#: server_status.php:973 -msgid "" -"The Advisor system can provide recommendations on server variables by " -"analyzing the server status variables." -msgstr "" - -#: server_status.php:975 -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.php:977 -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.php:979 -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.php:1003 -#, fuzzy, php-format -#| msgid "Customize startup page" -msgid "Questions since startup: %s" -msgstr "自訂起始頁" - -#: server_status.php:1044 -msgid "Statements" -msgstr "說明" - -#. l10n: # = Amount of queries -#: server_status.php:1047 -msgid "#" -msgstr "" - -#: server_status.php:1128 +#: server_status.php:70 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1143 +#: server_status.php:83 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" -#: server_status.php:1153 +#: server_status.php:93 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1155 +#: server_status.php:98 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1157 +#: server_status.php:103 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1160 +#: server_status.php:109 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10800,11 +10683,11 @@ msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" "" -#: server_status.php:1171 +#: server_status.php:122 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:1185 +#: server_status.php:139 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10812,47 +10695,337 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:1191 +#: server_status.php:149 msgid "Received" msgstr "已接收" -#: server_status.php:1208 +#: server_status.php:168 msgid "Sent" msgstr "已發送" -#: server_status.php:1255 +#: server_status.php:219 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:1262 +#: server_status.php:229 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:1278 +#: server_status.php:253 msgid "Aborted" msgstr "已取消" -#: server_status.php:1322 +#: server_status.php:313 msgid "ID" msgstr "ID" -#: server_status.php:1338 +#: server_status.php:329 msgid "Command" msgstr "命令" -#: server_status.php:1527 +#: server_status_advisor.php:29 +#, fuzzy +msgid "Instructions" +msgstr "資料" + +#: server_status_advisor.php:35 +msgid "" +"The Advisor system can provide recommendations on server variables by " +"analyzing the server status variables." +msgstr "" + +#: server_status_advisor.php:41 +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:48 +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:56 +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_monitor.php:472 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start Monitor" +msgstr "文字框行" + +#: server_status_monitor.php:479 +msgid "Instructions/Setup" +msgstr "" + +#: server_status_monitor.php:483 +msgid "Done rearranging/editing charts" +msgstr "" + +#: server_status_monitor.php:489 server_status_monitor.php:606 +#, fuzzy +#| msgid "Add index" +msgid "Add chart" +msgstr "新增索引" + +#: server_status_monitor.php:492 +msgid "Rearrange/edit charts" +msgstr "" + +#: server_status_monitor.php:496 +#, fuzzy +msgid "Refresh rate" +msgstr "重新整理" + +#: server_status_monitor.php:505 +#, fuzzy +#| msgid "Textarea columns" +msgid "Chart columns" +msgstr "文本框列" + +#: server_status_monitor.php:521 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "錯誤管理:" + +#: server_status_monitor.php:524 +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 "" + +#: server_status_monitor.php:538 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "還原預設值" + +#: server_status_monitor.php:544 +#, fuzzy +msgid "Monitor Instructions" +msgstr "資料" + +#: server_status_monitor.php:546 +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 "" + +#: server_status_monitor.php:558 +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 "" + +#: server_status_monitor.php:573 +msgid "Using the monitor:" +msgstr "" + +#: server_status_monitor.php:576 +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 "" + +#: server_status_monitor.php:582 +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 occuring SELECT statements to further analyze them." +msgstr "" + +#: server_status_monitor.php:592 +msgid "Please note:" +msgstr "" + +#: server_status_monitor.php:595 +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 "" + +#: server_status_monitor.php:610 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "刪除資料庫" + +#: server_status_monitor.php:614 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "查看從伺服器狀態" + +#: server_status_monitor.php:617 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "選擇表" + +#: server_status_monitor.php:619 +msgid "Commonly monitored" +msgstr "" + +#: server_status_monitor.php:635 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "無效的資料資料表名稱" + +#: server_status_monitor.php:642 +msgid "Display as differential value" +msgstr "" + +#: server_status_monitor.php:645 +msgid "Apply a divisor" +msgstr "" + +#: server_status_monitor.php:653 +msgid "Append unit to data values" +msgstr "" + +#: server_status_monitor.php:659 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "新增伺服器" + +#: server_status_monitor.php:661 +msgid "Clear series" +msgstr "" + +#: server_status_monitor.php:664 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL 查詢" + +#: server_status_monitor.php:677 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "顯示統計" + +#: server_status_monitor.php:678 +#, fuzzy +#| msgid "Select page" +msgid "Selected time range:" +msgstr "選擇頁" + +#: server_status_monitor.php:684 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: server_status_monitor.php:689 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: server_status_monitor.php:692 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: server_status_monitor.php:695 +msgid "Results are grouped by query text." +msgstr "" + +#: server_status_monitor.php:699 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "查詢方式" + +#: server_status_monitor.php:747 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "秒" + +#: server_status_monitor.php:750 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "分" + +#: server_status_queries.php:67 +#, fuzzy, php-format +#| msgid "Customize startup page" +msgid "Questions since startup: %s" +msgstr "自訂起始頁" + +#: server_status_queries.php:103 +msgid "Statements" +msgstr "說明" + +#. l10n: # = Amount of queries +#: server_status_queries.php:106 +msgid "#" +msgstr "" + +#: server_status_variables.php:78 server_variables.php:156 +#, fuzzy +msgid "Filters" +msgstr "過濾" + +#: server_status_variables.php:82 server_variables.php:158 +#, fuzzy +#| msgid "Do not change the password" +msgid "Containing the word:" +msgstr "保持原密碼" + +#: server_status_variables.php:89 +#, fuzzy +#| msgid "Show open tables" +msgid "Show only alert values" +msgstr "顯示開啟的表" + +#: server_status_variables.php:94 +msgid "Filter by category..." +msgstr "" + +#: server_status_variables.php:114 +#, fuzzy +#| msgid "Show open tables" +msgid "Show unformatted values" +msgstr "顯示開啟的表" + +#: server_status_variables.php:133 +#, fuzzy +#| msgid "Related Links" +msgid "Related links:" +msgstr "相關連結" + +#: server_status_variables.php:327 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1528 +#: server_status_variables.php:331 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器" -#: server_status.php:1529 +#: server_status_variables.php:334 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 " @@ -10861,16 +11034,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:1530 +#: server_status_variables.php:339 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:1531 +#: server_status_variables.php:342 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1532 +#: server_status_variables.php:346 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 " @@ -10880,46 +11053,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:1533 +#: server_status_variables.php:353 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:1534 +#: server_status_variables.php:356 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:1535 +#: server_status_variables.php:360 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)" -#: server_status.php:1536 +#: server_status_variables.php:364 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" -#: server_status.php:1537 +#: server_status_variables.php:369 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:1538 +#: server_status_variables.php:372 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:1539 +#: server_status_variables.php:375 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:1540 +#: server_status_variables.php:378 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:1541 +#: server_status_variables.php:381 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 " @@ -10928,7 +11101,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:1542 +#: server_status_variables.php:387 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, " @@ -10937,14 +11110,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo" -#: server_status.php:1543 +#: server_status_variables.php:393 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 "" "根據索引讀取行的請求數。如果該值很大,說明您的查詢和表都建立了很好的索引" -#: server_status.php:1544 +#: server_status_variables.php:398 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 " @@ -10953,7 +11126,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:1545 +#: server_status_variables.php:403 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10961,7 +11134,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:1546 +#: server_status_variables.php:407 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 " @@ -10971,7 +11144,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:1547 +#: server_status_variables.php:414 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 " @@ -10981,35 +11154,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:1548 +#: server_status_variables.php:421 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:1549 +#: server_status_variables.php:424 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:1550 +#: server_status_variables.php:427 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:1551 +#: server_status_variables.php:430 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁)" -#: server_status.php:1552 +#: server_status_variables.php:433 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:1553 +#: server_status_variables.php:436 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:1554 +#: server_status_variables.php:440 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:1555 +#: server_status_variables.php:443 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 " @@ -11018,7 +11191,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:1556 +#: server_status_variables.php:448 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 " @@ -11029,11 +11202,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data" -#: server_status.php:1557 +#: server_status_variables.php:455 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:1558 +#: server_status_variables.php:458 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." @@ -11041,23 +11214,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:1559 +#: server_status_variables.php:463 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" -#: server_status.php:1560 +#: server_status_variables.php:467 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:1561 +#: server_status_variables.php:470 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:1562 +#: server_status_variables.php:474 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 " @@ -11069,85 +11242,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:1563 +#: server_status_variables.php:482 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:1564 +#: server_status_variables.php:485 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:1565 +#: server_status_variables.php:488 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:1566 +#: server_status_variables.php:491 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:1567 +#: server_status_variables.php:494 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:1568 +#: server_status_variables.php:497 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:1569 +#: server_status_variables.php:500 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:1570 +#: server_status_variables.php:503 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:1571 +#: server_status_variables.php:506 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:1572 +#: server_status_variables.php:509 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:1573 +#: server_status_variables.php:513 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:1574 +#: server_status_variables.php:516 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 "因日誌快取太小而必須等待其被寫入所造成的等待數" -#: server_status.php:1575 +#: server_status_variables.php:520 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:1576 +#: server_status_variables.php:523 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:1577 +#: server_status_variables.php:526 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:1578 +#: server_status_variables.php:529 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:1579 +#: server_status_variables.php:532 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:1580 +#: server_status_variables.php:535 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:1581 +#: server_status_variables.php:538 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:1582 +#: server_status_variables.php:541 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." @@ -11155,81 +11328,81 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:1583 +#: server_status_variables.php:546 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:1584 +#: server_status_variables.php:549 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:1585 +#: server_status_variables.php:552 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:1586 +#: server_status_variables.php:555 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:1587 +#: server_status_variables.php:558 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:1588 +#: server_status_variables.php:561 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:1589 +#: server_status_variables.php:564 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:1590 +#: server_status_variables.php:567 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:1591 +#: server_status_variables.php:570 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:1592 +#: server_status_variables.php:573 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:1593 +#: server_status_variables.php:576 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:1594 +#: server_status_variables.php:579 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 "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks" -#: server_status.php:1595 +#: server_status_variables.php:584 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 "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:1596 +#: server_status_variables.php:588 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 "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" -#: server_status.php:1597 +#: server_status_variables.php:593 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "匯入檔案的格式" -#: server_status.php:1598 +#: server_status_variables.php:596 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:1599 +#: server_status_variables.php:599 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 " @@ -11238,26 +11411,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:1600 +#: server_status_variables.php:605 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1601 +#: server_status_variables.php:609 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:1602 +#: server_status_variables.php:612 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:1603 +#: server_status_variables.php:615 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1604 +#: server_status_variables.php:619 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 " @@ -11266,54 +11439,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:1605 +#: server_status_variables.php:625 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1606 +#: server_status_variables.php:629 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:1607 +#: server_status_variables.php:632 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" -#: server_status.php:1608 +#: server_status_variables.php:636 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:1609 +#: server_status_variables.php:639 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:1610 +#: server_status_variables.php:642 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:1611 +#: server_status_variables.php:645 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 "" -#: server_status.php:1612 +#: server_status_variables.php:650 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:1613 +#: server_status_variables.php:653 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:1614 +#: server_status_variables.php:656 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:1615 +#: server_status_variables.php:659 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 " @@ -11323,7 +11496,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:1616 +#: server_status_variables.php:666 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11331,19 +11504,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:1617 +#: server_status_variables.php:670 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:1618 +#: server_status_variables.php:673 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:1619 +#: server_status_variables.php:676 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:1620 +#: server_status_variables.php:679 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." @@ -11351,11 +11524,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:1621 +#: server_status_variables.php:683 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:1622 +#: server_status_variables.php:686 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.)" @@ -11363,7 +11536,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:1623 +#: server_status_variables.php:691 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11371,36 +11544,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:1624 +#: server_status_variables.php:695 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:1625 +#: server_status_variables.php:698 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:1626 +#: server_status_variables.php:702 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:1627 +#: server_status_variables.php:706 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:1628 +#: server_status_variables.php:709 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:1629 +#: server_status_variables.php:713 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:1630 +#: server_status_variables.php:717 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 " @@ -11409,23 +11582,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:1631 +#: server_status_variables.php:722 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:1632 +#: server_status_variables.php:725 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:1633 +#: server_status_variables.php:728 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:1634 +#: server_status_variables.php:731 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:1635 +#: server_status_variables.php:734 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 " @@ -11435,7 +11608,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:1636 +#: server_status_variables.php:740 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 " @@ -11444,11 +11617,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:1637 +#: server_status_variables.php:745 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:1638 +#: server_status_variables.php:748 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 " @@ -11458,226 +11631,16 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:1639 +#: server_status_variables.php:755 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "追蹤已停用" -#: server_status.php:1640 +#: server_status_variables.php:758 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:1799 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start Monitor" -msgstr "文字框行" - -#: server_status.php:1810 -msgid "Instructions/Setup" -msgstr "" - -#: server_status.php:1817 -msgid "Done rearranging/editing charts" -msgstr "" - -#: server_status.php:1824 server_status.php:1897 -#, fuzzy -#| msgid "Add index" -msgid "Add chart" -msgstr "新增索引" - -#: server_status.php:1826 -msgid "Rearrange/edit charts" -msgstr "" - -#: server_status.php:1830 -#, fuzzy -msgid "Refresh rate" -msgstr "重新整理" - -#: server_status.php:1835 -#, fuzzy -#| msgid "Textarea columns" -msgid "Chart columns" -msgstr "文本框列" - -#: server_status.php:1851 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "錯誤管理:" - -#: server_status.php:1851 -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 "" - -#: server_status.php:1852 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "還原預設值" - -#: server_status.php:1856 -#, fuzzy -msgid "Monitor Instructions" -msgstr "資料" - -#: server_status.php:1857 -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 "" - -#: server_status.php:1862 -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 "" - -#: server_status.php:1875 -msgid "Using the monitor:" -msgstr "" - -#: server_status.php:1877 -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 "" - -#: server_status.php:1879 -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 occuring SELECT statements to further analyze them." -msgstr "" - -#: server_status.php:1886 -msgid "Please note:" -msgstr "" - -#: server_status.php:1888 -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 "" - -#: server_status.php:1902 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "刪除資料庫" - -#: server_status.php:1906 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "查看從伺服器狀態" - -#: server_status.php:1908 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "選擇表" - -#: server_status.php:1910 -msgid "Commonly monitored" -msgstr "" - -#: server_status.php:1925 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "無效的資料資料表名稱" - -#: server_status.php:1929 -msgid "Display as differential value" -msgstr "" - -#: server_status.php:1931 -msgid "Apply a divisor" -msgstr "" - -#: server_status.php:1938 -msgid "Append unit to data values" -msgstr "" - -#: server_status.php:1944 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "新增伺服器" - -#: server_status.php:1946 -msgid "Clear series" -msgstr "" - -#: server_status.php:1949 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL 查詢" - -#: server_status.php:1964 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "顯示統計" - -#: server_status.php:1965 -#, fuzzy -#| msgid "Select page" -msgid "Selected time range:" -msgstr "選擇頁" - -#: server_status.php:1970 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status.php:1975 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status.php:1980 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status.php:1982 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status.php:1987 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "查詢方式" - -#: server_status.php:2038 server_status.php:2066 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "秒" - -#: server_status.php:2041 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "分" - #: server_variables.php:107 msgid "Setting variable failed" msgstr "" @@ -12284,159 +12247,159 @@ msgstr "外部鍵約束" msgid "Tracking report for table `%s`" msgstr "`%s` 的追蹤報告" -#: tbl_tracking.php:201 +#: tbl_tracking.php:205 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已建立版本 %s,%s.%s 的追蹤已啓用" -#: tbl_tracking.php:218 +#: tbl_tracking.php:222 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%s.%s 的追蹤已啓用" -#: tbl_tracking.php:235 +#: tbl_tracking.php:239 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "%s.%s 的追蹤已啓用" -#: tbl_tracking.php:249 +#: tbl_tracking.php:253 msgid "SQL statements executed." msgstr "SQL 指令已執行" -#: tbl_tracking.php:256 +#: tbl_tracking.php:260 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:258 +#: tbl_tracking.php:262 msgid "Comment out these two lines if you do not need them." msgstr "如果您不需要,請註釋以下兩行" -#: tbl_tracking.php:268 +#: tbl_tracking.php:272 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 指令已匯出。請複製儲存或運行它" -#: tbl_tracking.php:304 +#: tbl_tracking.php:309 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 程式碼)" -#: tbl_tracking.php:448 +#: tbl_tracking.php:453 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "追蹤這些資料定義的語句:" -#: tbl_tracking.php:451 tbl_tracking.php:475 +#: tbl_tracking.php:456 tbl_tracking.php:480 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "查詢方式" -#: tbl_tracking.php:472 +#: tbl_tracking.php:477 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "追蹤這些資料模擬的語句:" -#: tbl_tracking.php:487 +#: tbl_tracking.php:492 msgid "Tracking statements" msgstr "追蹤指令" -#: tbl_tracking.php:518 tbl_tracking.php:666 +#: tbl_tracking.php:523 tbl_tracking.php:671 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "顯示自 %2$s 起至 %3$s 使用者 %4$s 執行的 %1$s %5$s" -#: tbl_tracking.php:526 +#: tbl_tracking.php:531 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "刪除此資料表的追蹤資料" -#: tbl_tracking.php:540 +#: tbl_tracking.php:545 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "沒有資料庫" -#: tbl_tracking.php:549 tbl_tracking.php:611 +#: tbl_tracking.php:554 tbl_tracking.php:616 msgid "Date" msgstr "日期" -#: tbl_tracking.php:551 +#: tbl_tracking.php:556 msgid "Data definition statement" msgstr "資料定義指令" -#: tbl_tracking.php:613 +#: tbl_tracking.php:618 msgid "Data manipulation statement" msgstr "資料操作指令" -#: tbl_tracking.php:671 +#: tbl_tracking.php:676 msgid "SQL dump (file download)" msgstr "SQL 匯出 (檔案下載)" -#: tbl_tracking.php:672 +#: tbl_tracking.php:677 msgid "SQL dump" msgstr "SQL 匯出" -#: tbl_tracking.php:674 +#: tbl_tracking.php:679 msgid "This option will replace your table and contained data." msgstr "該選項將導致目前表的結構和資料被替換" -#: tbl_tracking.php:675 +#: tbl_tracking.php:680 msgid "SQL execution" msgstr "執行 SQL 指令" -#: tbl_tracking.php:693 +#: tbl_tracking.php:698 #, php-format msgid "Export as %s" msgstr "匯出爲 %s" -#: tbl_tracking.php:730 +#: tbl_tracking.php:735 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:818 +#: tbl_tracking.php:823 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "停用 %s.%s 的追蹤" -#: tbl_tracking.php:824 +#: tbl_tracking.php:829 msgid "Deactivate now" msgstr "立即停用" -#: tbl_tracking.php:834 +#: tbl_tracking.php:839 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "啓用 %s.%s 的追蹤" -#: tbl_tracking.php:840 +#: tbl_tracking.php:845 msgid "Activate now" msgstr "立即啓用" -#: tbl_tracking.php:853 +#: tbl_tracking.php:858 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "爲 %2$s.%3$s 建立版本 %1$s" -#: tbl_tracking.php:861 +#: tbl_tracking.php:866 msgid "Track these data definition statements:" msgstr "追蹤下列資料定義指令:" -#: tbl_tracking.php:869 +#: tbl_tracking.php:874 msgid "Track these data manipulation statements:" msgstr "追蹤下列資料操作指令:" -#: tbl_tracking.php:879 +#: tbl_tracking.php:884 msgid "Create version" msgstr "建立版本" @@ -12580,13 +12543,13 @@ msgstr "" msgid "long_query_time is currently set to %ds." msgstr "long_query_time已設為%d秒" -#: libraries/advisory_rules.txt:84 +#: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 #, fuzzy #| msgid "Show query box" msgid "Slow query logging" msgstr "顯示查詢框" -#: libraries/advisory_rules.txt:87 +#: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 #, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." @@ -12604,133 +12567,145 @@ msgstr "" msgid "log_slow_queries is set to 'OFF'" msgstr "long_query_time已設為%d秒" -#: libraries/advisory_rules.txt:93 +#: 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 +#, fuzzy +#| msgid "long_query_time is set to %d second(s)." +msgid "slow_query_log is set to 'OFF'" +msgstr "long_query_time已設為%d秒" + +#: libraries/advisory_rules.txt:100 #, fuzzy #| msgid "Select Tables" msgid "Release Series" msgstr "選擇表" -#: libraries/advisory_rules.txt:96 +#: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." msgstr "" -#: libraries/advisory_rules.txt:97 +#: 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:98 libraries/advisory_rules.txt:105 -#: libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 +#: libraries/advisory_rules.txt:119 #, fuzzy, php-format #| msgid "Create version" msgid "Current version: %s" msgstr "建立版本" -#: libraries/advisory_rules.txt:100 libraries/advisory_rules.txt:107 +#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 #, fuzzy #| msgid "Version" msgid "Minor Version" msgstr "版本" -#: libraries/advisory_rules.txt:103 +#: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -#: libraries/advisory_rules.txt:104 +#: 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:110 +#: libraries/advisory_rules.txt:117 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" -#: libraries/advisory_rules.txt:111 +#: libraries/advisory_rules.txt:118 #, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "您應升級到 %s %s 或更高版本。" -#: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 -#: libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 +#: libraries/advisory_rules.txt:135 #, fuzzy #| msgid "Description" msgid "Distribution" msgstr "說明" -#: libraries/advisory_rules.txt:117 +#: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" -#: libraries/advisory_rules.txt:118 +#: 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:119 +#: libraries/advisory_rules.txt:126 msgid "'source' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:124 libraries/advisory_rules.txt:131 +#: 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:125 +#: libraries/advisory_rules.txt:132 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -#: libraries/advisory_rules.txt:126 +#: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" msgstr "" -#: libraries/advisory_rules.txt:132 +#: libraries/advisory_rules.txt:139 msgid "Drizzle documentation is at http://docs.drizzle.org/" msgstr "" -#: libraries/advisory_rules.txt:133 +#: libraries/advisory_rules.txt:140 #, php-format msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" -#: libraries/advisory_rules.txt:135 +#: libraries/advisory_rules.txt:142 #, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "MySQL 字集" -#: libraries/advisory_rules.txt:138 +#: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." msgstr "" -#: libraries/advisory_rules.txt:139 +#: 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:140 +#: libraries/advisory_rules.txt:147 #, php-format msgid "Available memory on this host: %s" msgstr "" -#: libraries/advisory_rules.txt:146 +#: libraries/advisory_rules.txt:153 #, fuzzy #| msgid "Query cache" msgid "Query cache disabled" msgstr "查詢快取" -#: libraries/advisory_rules.txt:149 +#: libraries/advisory_rules.txt:156 #, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "伺服器沒有響應" -#: libraries/advisory_rules.txt:150 +#: 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 " @@ -12738,23 +12713,23 @@ msgid "" "memcached, ignore this recommendation." msgstr "" -#: libraries/advisory_rules.txt:151 +#: 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:153 +#: libraries/advisory_rules.txt:160 #, fuzzy #| msgid "Query cache" msgid "Query caching method" msgstr "查詢快取" -#: libraries/advisory_rules.txt:156 +#: libraries/advisory_rules.txt:163 #, fuzzy #| msgid "Query cache" msgid "Suboptimal caching method." msgstr "查詢快取" -#: libraries/advisory_rules.txt:157 +#: 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 Article by the Pythian Group" msgstr "" -#: libraries/advisory_rules.txt:267 +#: 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:269 +#: libraries/advisory_rules.txt:276 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "%s 張資料表" -#: libraries/advisory_rules.txt:273 +#: 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 " @@ -13156,270 +13131,270 @@ msgid "" "temporary-tables.html\">MySQL Documentation" msgstr "" -#: libraries/advisory_rules.txt:274 +#: 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:289 +#: libraries/advisory_rules.txt:296 #, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:292 +#: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." msgstr "" -#: libraries/advisory_rules.txt:293 +#: 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:294 +#: libraries/advisory_rules.txt:301 #, fuzzy #| msgid "Sort buffer size" msgid "key_buffer_size is 0" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:296 +#: libraries/advisory_rules.txt:303 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:299 libraries/advisory_rules.txt:307 +#: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "排序快取大小" -#: libraries/advisory_rules.txt:300 libraries/advisory_rules.txt:308 +#: 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:301 +#: libraries/advisory_rules.txt:308 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:304 +#: libraries/advisory_rules.txt:311 #, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:309 +#: libraries/advisory_rules.txt:316 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:311 +#: libraries/advisory_rules.txt:318 #, fuzzy #| msgid "Show SQL queries" msgid "Percentage of index reads from memory" msgstr "顯示 SQL 查詢" -#: libraries/advisory_rules.txt:314 +#: libraries/advisory_rules.txt:321 #, php-format msgid "The %% of indexes that use the MyISAM key buffer is low." msgstr "" -#: libraries/advisory_rules.txt:315 +#: libraries/advisory_rules.txt:322 msgid "You may need to increase {key_buffer_size}." msgstr "" -#: libraries/advisory_rules.txt:316 +#: libraries/advisory_rules.txt:323 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:320 +#: libraries/advisory_rules.txt:327 #, fuzzy #| msgid "Create table" msgid "Rate of table open" msgstr "建立資料表" -#: libraries/advisory_rules.txt:323 +#: libraries/advisory_rules.txt:330 #, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "目前掛起的寫操作數" -#: libraries/advisory_rules.txt:324 +#: 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:325 +#: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened table rate: %s, this value should be less than 10 per hour" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:327 +#: libraries/advisory_rules.txt:334 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used open files limit" msgstr "匯入檔案的格式" -#: libraries/advisory_rules.txt:330 +#: 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:331 libraries/advisory_rules.txt:338 +#: 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:332 +#: 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:334 +#: libraries/advisory_rules.txt:341 #, fuzzy #| msgid "Format of imported file" msgid "Rate of open files" msgstr "匯入檔案的格式" -#: libraries/advisory_rules.txt:337 +#: libraries/advisory_rules.txt:344 #, fuzzy #| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "目前掛起的 fsync 日志檔案數" -#: libraries/advisory_rules.txt:339 +#: libraries/advisory_rules.txt:346 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:341 +#: libraries/advisory_rules.txt:348 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "在資料庫 %s 中建立一張資料表" -#: libraries/advisory_rules.txt:344 libraries/advisory_rules.txt:351 +#: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 #, fuzzy #| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "立即需要鎖定表的次數" -#: libraries/advisory_rules.txt:345 libraries/advisory_rules.txt:352 +#: 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:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" -msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "排序快取大小" - -#: libraries/advisory_rules.txt:348 -msgid "Table lock wait rate" -msgstr "" - #: libraries/advisory_rules.txt:353 #, fuzzy, php-format #| msgid "Sort buffer size" -msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +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 +#, fuzzy, php-format +#| msgid "Sort buffer size" +msgid "Table lock wait rate: %s, this value should be less than 1 per hour" +msgstr "排序快取大小" + +#: libraries/advisory_rules.txt:362 #, fuzzy #| msgid "Key cache" msgid "Thread cache" msgstr "鍵快取" -#: libraries/advisory_rules.txt:358 +#: libraries/advisory_rules.txt:365 msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" -#: libraries/advisory_rules.txt:359 +#: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -#: libraries/advisory_rules.txt:360 +#: libraries/advisory_rules.txt:367 #, fuzzy #| msgid "Tracking is not active." msgid "The thread cache is set to 0" msgstr "追蹤已停用" -#: libraries/advisory_rules.txt:362 +#: libraries/advisory_rules.txt:369 #, fuzzy, php-format #| msgid "Tracking is not active." msgid "Thread cache hit rate %%" msgstr "追蹤已停用" -#: libraries/advisory_rules.txt:365 +#: libraries/advisory_rules.txt:372 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "追蹤已停用" -#: libraries/advisory_rules.txt:366 +#: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" -#: libraries/advisory_rules.txt:367 +#: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Sort buffer size" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" msgstr "排序快取大小" -#: libraries/advisory_rules.txt:369 +#: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" msgstr "非睡眠狀態的程序數量" -#: libraries/advisory_rules.txt:372 +#: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "非睡眠狀態的程序數量" -#: libraries/advisory_rules.txt:373 +#: 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:374 +#: 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:376 +#: libraries/advisory_rules.txt:383 msgid "Slow launch time" msgstr "" -#: libraries/advisory_rules.txt:379 +#: libraries/advisory_rules.txt:386 #, fuzzy #| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" msgstr "long_query_time已設為%d秒" -#: libraries/advisory_rules.txt:380 +#: libraries/advisory_rules.txt:387 #, fuzzy #| msgid "The number of threads that are not sleeping." msgid "" @@ -13427,50 +13402,50 @@ msgid "" "launch" msgstr "非睡眠狀態的程序數量" -#: libraries/advisory_rules.txt:381 +#: libraries/advisory_rules.txt:388 #, fuzzy, php-format #| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "long_query_time已設為%d秒" -#: libraries/advisory_rules.txt:385 +#: libraries/advisory_rules.txt:392 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "持續連線" -#: libraries/advisory_rules.txt:388 +#: 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:389 +#: 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:390 +#: 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:392 +#: libraries/advisory_rules.txt:399 #, fuzzy #| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "持續連線" -#: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 +#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 #, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "允許建立臨時表" -#: libraries/advisory_rules.txt:396 libraries/advisory_rules.txt:403 +#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" "Connections are usually aborted when they cannot be authorized. this blog entry" msgstr "" -#: libraries/advisory_rules.txt:434 +#: libraries/advisory_rules.txt:441 #, fuzzy, php-format #| msgid "The number writes done to the InnoDB buffer pool." msgid "" @@ -13585,17 +13560,17 @@ msgid "" "it should not be below 20%%" msgstr "寫入 InnoDB 快取池的次數" -#: libraries/advisory_rules.txt:436 +#: libraries/advisory_rules.txt:443 #, fuzzy #| msgid "Buffer pool size" msgid "Max InnoDB log size" msgstr "快取池大小" -#: libraries/advisory_rules.txt:439 +#: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." msgstr "" -#: libraries/advisory_rules.txt:440 +#: libraries/advisory_rules.txt:447 #, php-format msgid "" "It is usually sufficient to set innodb_log_file_size to 25%% of the size of " @@ -13609,24 +13584,24 @@ msgid "" "proper-way.html\">this blog entry" msgstr "" -#: libraries/advisory_rules.txt:441 +#: libraries/advisory_rules.txt:448 #, php-format msgid "Your absolute InnoDB log size is %s MiB" msgstr "" -#: libraries/advisory_rules.txt:443 +#: libraries/advisory_rules.txt:450 #, fuzzy #| msgid "Buffer pool size" msgid "InnoDB buffer pool size" msgstr "快取池大小" -#: libraries/advisory_rules.txt:446 +#: libraries/advisory_rules.txt:453 #, fuzzy #| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." msgstr "快取池大小" -#: libraries/advisory_rules.txt:447 +#: libraries/advisory_rules.txt:454 #, php-format msgid "" "The InnoDB buffer pool has a profound impact on performance for InnoDB " @@ -13641,7 +13616,7 @@ msgid "" "innodb_buffer_pool_size/\">this article" msgstr "" -#: libraries/advisory_rules.txt:448 +#: libraries/advisory_rules.txt:455 #, php-format msgid "" "You are currently using %s%% of your memory for the InnoDB buffer pool. This " @@ -13650,29 +13625,64 @@ msgid "" "other services running on the same machine." msgstr "" -#: libraries/advisory_rules.txt:452 +#: libraries/advisory_rules.txt:459 #, fuzzy #| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" msgstr "最大同時連線數" -#: libraries/advisory_rules.txt:455 +#: libraries/advisory_rules.txt:462 #, fuzzy #| msgid "max. concurrent connections" msgid "Enable concurrent_insert by setting it to 1" msgstr "最大同時連線數" -#: libraries/advisory_rules.txt:456 +#: 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:457 +#: libraries/advisory_rules.txt:464 msgid "concurrent_insert is set to 0" msgstr "concurrent_insert設置為0" +#~ msgid "KiB sent since last refresh" +#~ msgstr "最後一次傳送的資料量(單位為KiB,即2^10)" + +#~ msgid "KiB received since last refresh" +#~ msgstr "最後一次接收的資料量(單位為KiB,即2^10)" + +#~ msgid "Server traffic (in KiB)" +#~ msgstr "伺服器流量(單位為KiB,即2^10)" + +#~ msgid "Connections since last refresh" +#~ msgstr "最後一次連線" + +#, fuzzy +#~| msgid "Connections since last refresh" +#~ msgid "Questions since last refresh" +#~ msgstr "最後一次連線" + +#~ msgid "Runtime Information" +#~ msgstr "運行資訊" + +#, fuzzy +#~| msgid "Number of rows:" +#~ msgid "Number of data points: " +#~ msgstr "記錄數:" + +#, fuzzy +#~| msgid "Refresh" +#~ msgid "Refresh rate: " +#~ msgstr "重新整理" + +#, fuzzy +#~| msgid "Query type" +#~ msgid "Run analyzer" +#~ msgstr "查詢方式" + #~ msgid "Show more actions" #~ msgstr "顯示更多操作" diff --git a/server_status.php b/server_status.php index b8d00b05fd..9cbd4b622e 100644 --- a/server_status.php +++ b/server_status.php @@ -1,456 +1,14 @@ microtime(true) * 1000, - 'y_proc' => $num_procs, - 'y_conn' => $c['Connections'] - ); - - exit(json_encode($ret)); - - case 'queries': // Query realtime chart - if (PMA_DRIZZLE) { - $sql = "SELECT concat('Com_', variable_name), variable_value - FROM data_dictionary.GLOBAL_STATEMENTS - WHERE variable_value > 0 - UNION - SELECT variable_name, variable_value - FROM data_dictionary.GLOBAL_STATUS - WHERE variable_name = 'Questions'"; - $queries = PMA_DBI_fetch_result($sql, 0, 1); - } else { - $queries = PMA_DBI_fetch_result( - "SHOW GLOBAL STATUS - WHERE - (Variable_name LIKE 'Com_%' OR Variable_name = 'Questions') - AND Value > 0", 0, 1 - ); - } - cleanDeprecated($queries); - // admin commands are not queries - unset($queries['Com_admin_commands']); - $questions = $queries['Questions']; - unset($queries['Questions']); - - //$sum=array_sum($queries); - $ret = array( - 'x' => microtime(true) * 1000, - 'y' => $questions, - 'pointInfo' => $queries - ); - - exit(json_encode($ret)); - - case 'traffic': // Traffic realtime chart - $traffic = PMA_DBI_fetch_result( - "SHOW GLOBAL STATUS - WHERE Variable_name = 'Bytes_received' - OR Variable_name = 'Bytes_sent'", 0, 1 - ); - - $ret = array( - 'x' => microtime(true) * 1000, - 'y_sent' => $traffic['Bytes_sent'], - 'y_received' => $traffic['Bytes_received'] - ); - - exit(json_encode($ret)); - - case 'chartgrid': // Data for the monitor - $ret = json_decode($_REQUEST['requiredData'], true); - $statusVars = array(); - $serverVars = array(); - $sysinfo = $cpuload = $memory = 0; - $pName = ''; - - /* Accumulate all required variables and data */ - // For each chart - foreach ($ret as $chart_id => $chartNodes) { - // For each data series - foreach ($chartNodes as $node_id => $nodeDataPoints) { - // For each data point in the series (usually just 1) - foreach ($nodeDataPoints as $point_id => $dataPoint) { - $pName = $dataPoint['name']; - - switch ($dataPoint['type']) { - /* We only collect the status and server variables here to - * read them all in one query, - * and only afterwards assign them. - * Also do some white list filtering on the names - */ - case 'servervar': - if (! preg_match('/[^a-zA-Z_]+/', $pName)) { - $serverVars[] = $pName; - } - break; - - case 'statusvar': - if (! preg_match('/[^a-zA-Z_]+/', $pName)) { - $statusVars[] = $pName; - } - break; - - case 'proc': - $result = PMA_DBI_query('SHOW PROCESSLIST'); - $ret[$chart_id][$node_id][$point_id]['value'] - = PMA_DBI_num_rows($result); - break; - - case 'cpu': - if (!$sysinfo) { - include_once 'libraries/sysinfo.lib.php'; - $sysinfo = PMA_getSysInfo(); - } - if (!$cpuload) { - $cpuload = $sysinfo->loadavg(); - } - - if (PMA_getSysInfoOs() == 'Linux') { - $ret[$chart_id][$node_id][$point_id]['idle'] - = $cpuload['idle']; - $ret[$chart_id][$node_id][$point_id]['busy'] - = $cpuload['busy']; - } else { - $ret[$chart_id][$node_id][$point_id]['value'] - = $cpuload['loadavg']; - } - - break; - - case 'memory': - if (!$sysinfo) { - include_once 'libraries/sysinfo.lib.php'; - $sysinfo = PMA_getSysInfo(); - } - if (!$memory) { - $memory = $sysinfo->memory(); - } - - $ret[$chart_id][$node_id][$point_id]['value'] - = $memory[$pName]; - break; - } /* switch */ - } /* foreach */ - } /* foreach */ - } /* foreach */ - - // Retrieve all required status variables - if (count($statusVars)) { - $statusVarValues = PMA_DBI_fetch_result( - "SHOW GLOBAL STATUS WHERE Variable_name='" - . implode("' OR Variable_name='", $statusVars) . "'", - 0, - 1 - ); - } else { - $statusVarValues = array(); - } - - // Retrieve all required server variables - if (count($serverVars)) { - $serverVarValues = PMA_DBI_fetch_result( - "SHOW GLOBAL VARIABLES WHERE Variable_name='" - . implode("' OR Variable_name='", $serverVars) . "'", - 0, - 1 - ); - } else { - $serverVarValues = array(); - } - - // ...and now assign them - foreach ($ret as $chart_id => $chartNodes) { - foreach ($chartNodes as $node_id => $nodeDataPoints) { - foreach ($nodeDataPoints as $point_id => $dataPoint) { - switch($dataPoint['type']) { - case 'statusvar': - $ret[$chart_id][$node_id][$point_id]['value'] - = $statusVarValues[$dataPoint['name']]; - break; - case 'servervar': - $ret[$chart_id][$node_id][$point_id]['value'] - = $serverVarValues[$dataPoint['name']]; - break; - } - } - } - } - - $ret['x'] = microtime(true) * 1000; - - exit(json_encode($ret)); - } - } - - if (isset($_REQUEST['log_data'])) { - if (PMA_MYSQL_INT_VERSION < 50106) { - // Table logging is only available since 5.1.6 - exit('""'); - } - - $start = intval($_REQUEST['time_start']); - $end = intval($_REQUEST['time_end']); - - if ($_REQUEST['type'] == 'slow') { - $q = 'SELECT start_time, user_host, '; - $q .= 'Sec_to_Time(Sum(Time_to_Sec(query_time))) as query_time, '; - $q .= 'Sec_to_Time(Sum(Time_to_Sec(lock_time))) as lock_time, '; - $q .= 'SUM(rows_sent) AS rows_sent, '; - $q .= 'SUM(rows_examined) AS rows_examined, db, sql_text, '; - $q .= 'COUNT(sql_text) AS \'#\' '; - $q .= 'FROM `mysql`.`slow_log` '; - $q .= 'WHERE start_time > FROM_UNIXTIME(' . $start . ') '; - $q .= 'AND start_time < FROM_UNIXTIME(' . $end . ') GROUP BY sql_text'; - - $result = PMA_DBI_try_query($q); - - $return = array('rows' => array(), 'sum' => array()); - $type = ''; - - while ($row = PMA_DBI_fetch_assoc($result)) { - $type = strtolower( - substr($row['sql_text'], 0, strpos($row['sql_text'], ' ')) - ); - - switch($type) { - case 'insert': - case 'update': - //Cut off big inserts and updates, but append byte count instead - if (strlen($row['sql_text']) > 220) { - $implode_sql_text = implode( - ' ', - PMA_Util::formatByteDown( - strlen($row['sql_text']), 2, 2 - ) - ); - $row['sql_text'] = substr($row['sql_text'], 0, 200) - . '... [' . $implode_sql_text . ']'; - } - break; - default: - break; - } - - if (! isset($return['sum'][$type])) { - $return['sum'][$type] = 0; - } - $return['sum'][$type] += $row['#']; - $return['rows'][] = $row; - } - - $return['sum']['TOTAL'] = array_sum($return['sum']); - $return['numRows'] = count($return['rows']); - - PMA_DBI_free_result($result); - - exit(json_encode($return)); - } - - if ($_REQUEST['type'] == 'general') { - $limitTypes = ''; - if (isset($_REQUEST['limitTypes']) && $_REQUEST['limitTypes']) { - $limitTypes - = 'AND argument REGEXP \'^(INSERT|SELECT|UPDATE|DELETE)\' '; - } - - $q = 'SELECT TIME(event_time) as event_time, user_host, thread_id, '; - $q .= 'server_id, argument, count(argument) as \'#\' '; - $q .= 'FROM `mysql`.`general_log` '; - $q .= 'WHERE command_type=\'Query\' '; - $q .= 'AND event_time > FROM_UNIXTIME(' . $start . ') '; - $q .= 'AND event_time < FROM_UNIXTIME(' . $end . ') '; - $q .= $limitTypes . 'GROUP by argument'; // HAVING count > 1'; - - $result = PMA_DBI_try_query($q); - - $return = array('rows' => array(), 'sum' => array()); - $type = ''; - $insertTables = array(); - $insertTablesFirst = -1; - $i = 0; - $removeVars = isset($_REQUEST['removeVariables']) - && $_REQUEST['removeVariables']; - - while ($row = PMA_DBI_fetch_assoc($result)) { - preg_match('/^(\w+)\s/', $row['argument'], $match); - $type = strtolower($match[1]); - - if (! isset($return['sum'][$type])) { - $return['sum'][$type] = 0; - } - $return['sum'][$type] += $row['#']; - - switch($type) { - case 'insert': - // Group inserts if selected - if ($removeVars - && preg_match( - '/^INSERT INTO (`|\'|"|)([^\s\\1]+)\\1/i', - $row['argument'], $matches - ) - ) { - $insertTables[$matches[2]]++; - if ($insertTables[$matches[2]] > 1) { - $return['rows'][$insertTablesFirst]['#'] - = $insertTables[$matches[2]]; - - // Add a ... to the end of this query to indicate that - // there's been other queries - $temp = $return['rows'][$insertTablesFirst]['argument']; - if ($temp[strlen($temp) - 1] != '.') { - $return['rows'][$insertTablesFirst]['argument'] - .= '
...'; - } - - // Group this value, thus do not add to the result list - continue 2; - } else { - $insertTablesFirst = $i; - $insertTables[$matches[2]] += $row['#'] - 1; - } - } - // No break here - - case 'update': - // Cut off big inserts and updates, - // but append byte count therefor - if (strlen($row['argument']) > 220) { - $row['argument'] = substr($row['argument'], 0, 200) - . '... [' - . implode( - ' ', - PMA_Util::formatByteDown( - strlen($row['argument']) - ), - 2, - 2 - ) - . ']'; - } - break; - - default: - break; - } - - $return['rows'][] = $row; - $i++; - } - - $return['sum']['TOTAL'] = array_sum($return['sum']); - $return['numRows'] = count($return['rows']); - - PMA_DBI_free_result($result); - - exit(json_encode($return)); - } - } - - if (isset($_REQUEST['logging_vars'])) { - if (isset($_REQUEST['varName']) && isset($_REQUEST['varValue'])) { - $value = PMA_Util::sqlAddSlashes($_REQUEST['varValue']); - if (! is_numeric($value)) { - $value="'" . $value . "'"; - } - - if (! preg_match("/[^a-zA-Z0-9_]+/", $_REQUEST['varName'])) { - PMA_DBI_query( - 'SET GLOBAL ' . $_REQUEST['varName'] . ' = ' . $value - ); - } - - } - - $loggingVars = PMA_DBI_fetch_result( - 'SHOW GLOBAL VARIABLES WHERE Variable_name IN' - . ' ("general_log","slow_query_log","long_query_time","log_output")', - 0, - 1 - ); - exit(json_encode($loggingVars)); - } - - if (isset($_REQUEST['query_analyzer'])) { - $return = array(); - - if (strlen($_REQUEST['database'])) { - PMA_DBI_select_db($_REQUEST['database']); - } - - if ($profiling = PMA_Util::profilingSupported()) { - PMA_DBI_query('SET PROFILING=1;'); - } - - // Do not cache query - $query = preg_replace( - '/^(\s*SELECT)/i', - '\\1 SQL_NO_CACHE', - $_REQUEST['query'] - ); - - $result = PMA_DBI_try_query($query); - $return['affectedRows'] = $GLOBALS['cached_affected_rows']; - - $result = PMA_DBI_try_query('EXPLAIN ' . $query); - while ($row = PMA_DBI_fetch_assoc($result)) { - $return['explain'][] = $row; - } - - // In case an error happened - $return['error'] = PMA_DBI_getError(); - - PMA_DBI_free_result($result); - - if ($profiling) { - $return['profiling'] = array(); - $result = PMA_DBI_try_query( - 'SELECT seq,state,duration FROM INFORMATION_SCHEMA.PROFILING' - . ' WHERE QUERY_ID=1 ORDER BY seq' - ); - while ($row = PMA_DBI_fetch_assoc($result)) { - $return['profiling'][]= $row; - } - PMA_DBI_free_result($result); - } - - exit(json_encode($return)); - } - - if (isset($_REQUEST['advisor'])) { - include 'libraries/Advisor.class.php'; - $advisor = new Advisor(); - exit(json_encode($advisor->run())); - } -} - +require_once 'libraries/server_common.inc.php'; +require_once 'libraries/ServerStatusData.class.php'; /** * Replication library @@ -463,49 +21,7 @@ if (PMA_DRIZZLE) { include_once 'libraries/replication_gui.lib.php'; } -/** - * JS Includes - */ -$response = PMA_Response::getInstance(); -$header = $response->getHeader(); -$scripts = $header->getScripts(); -$scripts->addFile('server_status.js'); - -$scripts->addFile('jquery/jquery.tablesorter.js'); -$scripts->addFile('server_status.js'); -$scripts->addFile('jquery/jquery-ui-1.8.16.custom.js'); - -/* < IE 9 doesn't support canvas natively */ -if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) { - $scripts->addFile('jqplot/excanvas.js'); -} - -$scripts->addFile('canvg/canvg.js'); -// for charting -$scripts->addFile('jqplot/jquery.jqplot.js'); -$scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js'); -$scripts->addFile('jqplot/plugins/jqplot.canvasTextRenderer.js'); -$scripts->addFile('jqplot/plugins/jqplot.canvasAxisLabelRenderer.js'); -$scripts->addFile('jqplot/plugins/jqplot.dateAxisRenderer.js'); -$scripts->addFile('jqplot/plugins/jqplot.highlighter.js'); -$scripts->addFile('jqplot/plugins/jqplot.cursor.js'); -$scripts->addFile('date.js'); - -/** - * flush status variables if requested - */ -if (isset($_REQUEST['flush'])) { - $_flush_commands = array( - 'STATUS', - 'TABLES', - 'QUERY CACHE', - ); - - if (in_array($_REQUEST['flush'], $_flush_commands)) { - PMA_DBI_query('FLUSH ' . $_REQUEST['flush'] . ';'); - } - unset($_flush_commands); -} +$ServerStatusData = new PMA_ServerStatusData(); /** * Kills a selected process @@ -522,797 +38,272 @@ if (! empty($_REQUEST['kill'])) { ); } $message->addParam($_REQUEST['kill']); - //$message->display(); } - - -/** - * get status from server - */ -$server_status = PMA_DBI_fetch_result('SHOW GLOBAL STATUS', 0, 1); -if (PMA_DRIZZLE) { - // Drizzle doesn't put query statistics into variables, add it - $sql = "SELECT concat('Com_', variable_name), variable_value - FROM data_dictionary.GLOBAL_STATEMENTS"; - $statements = PMA_DBI_fetch_result($sql, 0, 1); - $server_status = array_merge($server_status, $statements); -} - -/** - * for some calculations we require also some server settings - */ -$server_variables = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES', 0, 1); - -/** - * cleanup of some deprecated values - */ -cleanDeprecated($server_status); - -/** - * calculate some values - */ -// Key_buffer_fraction -if (isset($server_status['Key_blocks_unused']) - && isset($server_variables['key_cache_block_size']) - && isset($server_variables['key_buffer_size']) -) { - $server_status['Key_buffer_fraction_%'] - = 100 - - $server_status['Key_blocks_unused'] - * $server_variables['key_cache_block_size'] - / $server_variables['key_buffer_size'] - * 100; -} elseif (isset($server_status['Key_blocks_used']) - && isset($server_variables['key_buffer_size'])) { - $server_status['Key_buffer_fraction_%'] - = $server_status['Key_blocks_used'] - * 1024 - / $server_variables['key_buffer_size']; -} - -// Ratio for key read/write -if (isset($server_status['Key_writes']) - && isset($server_status['Key_write_requests']) - && $server_status['Key_write_requests'] > 0 -) { - $server_status['Key_write_ratio_%'] - = 100 * $server_status['Key_writes'] / $server_status['Key_write_requests']; -} - -if (isset($server_status['Key_reads']) - && isset($server_status['Key_read_requests']) - && $server_status['Key_read_requests'] > 0 -) { - $server_status['Key_read_ratio_%'] - = 100 * $server_status['Key_reads'] / $server_status['Key_read_requests']; -} - -// Threads_cache_hitrate -if (isset($server_status['Threads_created']) - && isset($server_status['Connections']) - && $server_status['Connections'] > 0 -) { - - $server_status['Threads_cache_hitrate_%'] - = 100 - $server_status['Threads_created'] - / $server_status['Connections'] * 100; -} - -/** - * split variables in sections - */ -$allocations = array( - // variable name => section - // variable names match when they begin with the given string - - 'Com_' => 'com', - 'Innodb_' => 'innodb', - 'Ndb_' => 'ndb', - 'Handler_' => 'handler', - 'Qcache_' => 'qcache', - 'Threads_' => 'threads', - 'Slow_launch_threads' => 'threads', - - 'Binlog_cache_' => 'binlog_cache', - 'Created_tmp_' => 'created_tmp', - 'Key_' => 'key', - - 'Delayed_' => 'delayed', - 'Not_flushed_delayed_rows' => 'delayed', - - 'Flush_commands' => 'query', - 'Last_query_cost' => 'query', - 'Slow_queries' => 'query', - 'Queries' => 'query', - 'Prepared_stmt_count' => 'query', - - 'Select_' => 'select', - 'Sort_' => 'sort', - - 'Open_tables' => 'table', - 'Opened_tables' => 'table', - 'Open_table_definitions' => 'table', - 'Opened_table_definitions' => 'table', - 'Table_locks_' => 'table', - - 'Rpl_status' => 'repl', - 'Slave_' => 'repl', - - 'Tc_' => 'tc', - - 'Ssl_' => 'ssl', - - 'Open_files' => 'files', - 'Open_streams' => 'files', - 'Opened_files' => 'files', -); - -$sections = array( - // section => section name (description) - 'com' => 'Com', - 'query' => __('SQL query'), - 'innodb' => 'InnoDB', - 'ndb' => 'NDB', - 'handler' => __('Handler'), - 'qcache' => __('Query cache'), - 'threads' => __('Threads'), - 'binlog_cache' => __('Binary log'), - 'created_tmp' => __('Temporary data'), - 'delayed' => __('Delayed inserts'), - 'key' => __('Key cache'), - 'select' => __('Joins'), - 'repl' => __('Replication'), - 'sort' => __('Sorting'), - 'table' => __('Tables'), - 'tc' => __('Transaction coordinator'), - 'files' => __('Files'), - 'ssl' => 'SSL', - 'other' => __('Other') -); - -/** - * define some needfull links/commands - */ -// variable or section name => (name => url) -$links = array(); - -$links['table'][__('Flush (close) all tables')] - = $PMA_PHP_SELF . '?flush=TABLES&' . PMA_generate_common_url(); -$links['table'][__('Show open tables')] - = 'sql.php?sql_query=' . urlencode('SHOW OPEN TABLES') . - '&goto=server_status.php&' . PMA_generate_common_url(); - -if ($server_master_status) { - $links['repl'][__('Show slave hosts')] - = 'sql.php?sql_query=' . urlencode('SHOW SLAVE HOSTS') . - '&goto=server_status.php&' . PMA_generate_common_url(); - $links['repl'][__('Show master status')] = '#replication_master'; -} -if ($server_slave_status) { - $links['repl'][__('Show slave status')] = '#replication_slave'; -} - -$links['repl']['doc'] = 'replication'; - -$links['qcache'][__('Flush query cache')] - = $PMA_PHP_SELF . '?flush=' . urlencode('QUERY CACHE') . '&' . - PMA_generate_common_url(); -$links['qcache']['doc'] = 'query_cache'; - -//$links['threads'][__('Show processes')] -// = 'server_processlist.php?' . PMA_generate_common_url(); -$links['threads']['doc'] = 'mysql_threads'; - -$links['key']['doc'] = 'myisam_key_cache'; - -$links['binlog_cache']['doc'] = 'binary_log'; - -$links['Slow_queries']['doc'] = 'slow_query_log'; - -$links['innodb'][__('Variables')] - = 'server_engines.php?engine=InnoDB&' . PMA_generate_common_url(); -$links['innodb'][__('InnoDB Status')] - = 'server_engines.php?engine=InnoDB&page=Status&' . - PMA_generate_common_url(); -$links['innodb']['doc'] = 'innodb'; - - -// Variable to contain all com_ variables (query statistics) -$used_queries = array(); - -// Variable to map variable names to their respective section name -// (used for js category filtering) -$allocationMap = array(); - -// Variable to mark used sections -$categoryUsed = array(); - -// sort vars into arrays -foreach ($server_status as $name => $value) { - $section_found = false; - foreach ($allocations as $filter => $section) { - if (strpos($name, $filter) !== false) { - $allocationMap[$name] = $section; - $categoryUsed[$section] = true; - $section_found = true; - if ($section == 'com' && $value > 0) { - $used_queries[$name] = $value; - } - break; // Only exits inner loop - } - } - if (!$section_found) { - $allocationMap[$name] = 'other'; - $categoryUsed['other'] = true; - } -} - -if (PMA_DRIZZLE) { - $used_queries = PMA_DBI_fetch_result( - 'SELECT * FROM data_dictionary.global_statements', - 0, - 1 - ); - unset($used_queries['admin_commands']); -} else { - // admin commands are not queries (e.g. they include COM_PING, - // which is excluded from $server_status['Questions']) - unset($used_queries['Com_admin_commands']); -} - -/* Ajax request refresh */ -if (isset($_REQUEST['show']) && isset($_REQUEST['ajax_request'])) { - switch($_REQUEST['show']) { - case 'query_statistics': - printQueryStatistics(); - exit(); - case 'server_traffic': - printServerTraffic(); - exit(); - case 'variables_table': - // Prints the variables table - printVariablesTable(); - exit(); - - default: - break; - } -} - -$server_db_isLocal = strtolower($cfg['Server']['host']) == 'localhost' - || $cfg['Server']['host'] == '127.0.0.1' - || $cfg['Server']['host'] == '::1'; - -$input = ''; - -echo '
'; -printf($input, 'pma_token', $_SESSION[' PMA_token ']); -printf($input, 'url_query', str_replace('&', '&', PMA_generate_common_url($db))); -printf($input, 'server_time_diff', 'new Date().getTime() - ' . (microtime(true) * 1000)); -printf($input, 'server_os', PHP_OS); -printf($input, 'is_superuser', PMA_isSuperuser()); -printf($input, 'server_db_isLocal', $server_db_isLocal); -echo '
'; - -echo '
'; -echo PMA_Util::showMySQLDocu('general-thread-states', 'general-thread-states'); -echo '
'; -echo '
'; -echo PMA_Util::showMySQLDocu('explain-output', 'explain-output'); -echo '
'; - /** * start output */ +$response = PMA_Response::getInstance(); +$response->addHTML('
'); +$response->addHTML($ServerStatusData->getMenuHtml()); +$response->addHTML(getServerTrafficHtml($ServerStatusData)); +$response->addHTML('
'); - /** - * Does the common work - */ -require 'libraries/server_common.inc.php'; - -echo '
'; -echo '

'; - -/** - * Displays the sub-page heading - */ -echo PMA_Util::getImage('s_status.png'); - -echo __('Runtime Information'); - -echo '

'; -echo '
'; -echo ''; - -echo '
'; -echo ''; -echo '
'; -printServerTraffic(); -echo '
'; -echo '
'; -echo '
'; -echo ''; -echo '
'; -printQueryStatistics(); -echo '
'; -echo '
'; -echo '
'; -echo '
'; -echo '' . __('Filters') . ''; -echo ''; -echo '
'; -echo ''; -echo ''; -echo '
'; -echo '
'; -echo ''; -echo ''; -echo '
'; -echo '
'; -echo ''; -echo '
'; -echo '
'; -echo ''; -echo ''; -echo '
'; -echo '
'; -echo ''; -echo '
'; -printVariablesTable(); -echo '
'; -echo '
'; - -echo '
'; -printMonitor(); -echo '
'; - -echo '
'; -echo ''; -echo '
'; -echo '
'; -echo ''; -echo '
'; -echo '
'; -echo '
'; - -/** - * Prints query statistincs - * - * @return void - */ -function printQueryStatistics() -{ - global $server_status, $used_queries, $url_query, $PMA_PHP_SELF; - - $hour_factor = 3600 / $server_status['Uptime']; - - $total_queries = array_sum($used_queries); - - echo '

'; - /* l10n: Questions is the name of a MySQL Status variable */ - printf( - __('Questions since startup: %s'), - PMA_Util::formatNumber($total_queries, 0) - ); - echo ' '; - echo PMA_Util::showMySQLDocu( - 'server-status-variables', - 'server-status-variables', - false, - 'statvar_Questions' - ); - - echo '
'; - echo ''; - - echo 'ø ' . __('per hour') . ': '; - echo PMA_Util::formatNumber($total_queries * $hour_factor, 0); - echo '
'; - - echo 'ø ' . __('per minute') . ': '; - echo PMA_Util::formatNumber($total_queries * 60 / $server_status['Uptime'], 0); - echo '
'; - - if ($total_queries / $server_status['Uptime'] >= 1) { - echo 'ø ' . __('per second') . ': '; - echo PMA_Util::formatNumber($total_queries / $server_status['Uptime'], 0); - } - - echo '
'; - echo '

'; - - // reverse sort by value to show most used statements first - arsort($used_queries); - - $odd_row = true; - $count_displayed_rows = 0; - $perc_factor = 100 / $total_queries; //(- $server_status['Connections']); - - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - - $chart_json = array(); - $query_sum = array_sum($used_queries); - $other_sum = 0; - foreach ($used_queries as $name => $value) { - $odd_row = !$odd_row; - - // For the percentage column, use Questions - Connections, because - // the number of connections is not an item of the Query types - // but is included in Questions. Then the total of the percentages is 100. - $name = str_replace(array('Com_', '_'), array('', ' '), $name); - - // Group together values that make out less than 2% into "Other", but only - // if we have more than 6 fractions already - if ($value < $query_sum * 0.02 && count($chart_json)>6) { - $other_sum += $value; - } else { - $chart_json[$name] = $value; - } - - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - echo ''; - } - echo ''; - echo '
' . __('Statements') . ''; - /* l10n: # = Amount of queries */ - echo __('#'); - echo 'ø ' . __('per hour') . '%
' . htmlspecialchars($name) . ''; - echo htmlspecialchars(PMA_Util::formatNumber($value, 5, 0, true)); - echo ''; - echo htmlspecialchars( - PMA_Util::formatNumber($value * $hour_factor, 4, 1, true) - ); - echo ''; - echo htmlspecialchars(PMA_Util::formatNumber($value * $perc_factor, 0, 2)); - echo '
'; - - echo '
'; - echo ''; - - if ($other_sum > 0) { - $chart_json[__('Other')] = $other_sum; - } - - echo json_encode($chart_json); - echo ''; - echo '
'; -} +exit; /** * Prints server traffic information * - * @return void + * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string */ -function printServerTraffic() +function getServerTrafficHtml($ServerStatusData) { - global $server_status, $PMA_PHP_SELF; - global $server_master_status, $server_slave_status, $replication_types; - - $hour_factor = 3600 / $server_status['Uptime']; - - /** - * starttime calculation - */ + $hour_factor = 3600 / $ServerStatusData->status['Uptime']; $start_time = PMA_DBI_fetch_value( - 'SELECT UNIX_TIMESTAMP() - ' . $server_status['Uptime'] + 'SELECT UNIX_TIMESTAMP() - ' . $ServerStatusData->status['Uptime'] ); - echo '

'; - - echo sprintf( + $retval = '

'; + $retval .= sprintf( __('Network traffic since startup: %s'), implode( ' ', PMA_Util::formatByteDown( - $server_status['Bytes_received'] + $server_status['Bytes_sent'], + $ServerStatusData->status['Bytes_received'] + $ServerStatusData->status['Bytes_sent'], 3, 1 ) ) ); - echo '

'; - - echo '

'; - - printf( + $retval .= ''; + $retval .= '

'; + $retval .= sprintf( __('This MySQL server has been running for %1$s. It started up on %2$s.'), - PMA_Util::timespanFormat($server_status['Uptime']), + PMA_Util::timespanFormat($ServerStatusData->status['Uptime']), PMA_Util::localisedDate($start_time) ) . "\n"; + $retval .= '

'; - echo '

'; - - if ($server_master_status || $server_slave_status) { - echo '

'; - if ($server_master_status && $server_slave_status) { - echo __('This MySQL server works as master and slave in replication process.'); - } elseif ($server_master_status) { - echo __('This MySQL server works as master in replication process.'); - } elseif ($server_slave_status) { - echo __('This MySQL server works as slave in replication process.'); + if ($GLOBALS['server_master_status'] || $GLOBALS['server_slave_status']) { + $retval .= '

'; + if ($GLOBALS['server_master_status'] && $GLOBALS['server_slave_status']) { + $retval .= __( + 'This MySQL server works as master and ' + . 'slave in replication process.' + ); + } elseif ($GLOBALS['server_master_status']) { + $retval .= __( + 'This MySQL server works as master ' + . 'in replication process.' + ); + } elseif ($GLOBALS['server_slave_status']) { + $retval .= __( + 'This MySQL server works as slave ' + . 'in replication process.' + ); } - echo ' '; - echo __('For further information about replication status on the server, please visit the replication section.'); - echo '

'; + $retval .= ' '; + $retval .= __( + 'For further information about replication status on the server, ' + . 'please visit the replication section.' + ); + $retval .= '

'; } /* * if the server works as master or slave in replication process, * display useful information */ - if ($server_master_status || $server_slave_status) { - echo '
'; - - echo '

' . __('Replication status') . '

'; - - foreach ($replication_types as $type) { + if ($GLOBALS['server_master_status'] || $GLOBALS['server_slave_status']) { + $retval .= '
'; + $retval .= '

'; + $retval .= __('Replication status'); + $retval .= '

'; + foreach ($GLOBALS['replication_types'] as $type) { if (${"server_{$type}_status"}) { PMA_replication_print_status_table($type); } } unset($types); } - ?> - - - - - - - - - - - - - - - - - - - - - - - - -
ø
+ $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= '
'; + $retval .= __('Traffic') . ' '; + $retval .= PMA_Util::showHint( + __( + 'On a busy server, the byte counters may overrun, so those statistics ' + . 'as reported by the MySQL server may be incorrect.' + ) + ); + $retval .= 'ø ' . __('per hour') . '
' . __('Received') . ''; + $retval .= implode( + ' ', + PMA_Util::formatByteDown( + $ServerStatusData->status['Bytes_received'], 3, 1 + ) + ); + $retval .= ''; + $retval .= implode( + ' ', + PMA_Util::formatByteDown( + $ServerStatusData->status['Bytes_received'] * $hour_factor, 3, 1 + ) + ); + $retval .= '
' . __('Sent') . ''; + $retval .= implode( + ' ', + PMA_Util::formatByteDown( + $ServerStatusData->status['Bytes_sent'], 3, 1 + ) + ); + $retval .= 'status['Bytes_sent'] * $hour_factor, 3, 1 + ) + ); + $retval .= '
' . __('Total') . ''; + $retval .= implode( + ' ', + PMA_Util::formatByteDown( + $ServerStatusData->status['Bytes_received'] + $ServerStatusData->status['Bytes_sent'], 3, 1 + ) + ); + $retval .= ''; + $retval .= implode( + ' ', + PMA_Util::formatByteDown( + ($ServerStatusData->status['Bytes_received'] + $ServerStatusData->status['Bytes_sent']) + * $hour_factor, 3, 1 + ) + ); + $retval .= '
'; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ø %
--- ---
0 - ? PMA_Util::formatNumber( - $server_status['Aborted_connects'] * 100 / $server_status['Connections'], - 0, 2, true - ) . '%' - : '--- '; ?>
0 - ? PMA_Util::formatNumber( - $server_status['Aborted_clients'] * 100 / $server_status['Connections'], - 0, 2, true - ) . '%' - : '--- '; ?>
%
- '; + $retval .= ''; + $retval .= ''; + $retval .= '' . __('Connections') . ''; + $retval .= 'ø ' . __('per hour') . ''; + $retval .= '%'; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= '' . __('max. concurrent connections') . ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Max_used_connections'], 0 + ); + $retval .= ''; + $retval .= '--- '; + $retval .= '--- '; + $retval .= ''; + $retval .= ''; + $retval .= '' . __('Failed attempts') . ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_connects'], 4, 1, true + ); + $retval .= ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_connects'] * $hour_factor, 4, 2, true + ); + $retval .= ''; + $retval .= ''; + if ($ServerStatusData->status['Connections'] > 0) { + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_connects'] * 100 / $ServerStatusData->status['Connections'], + 0, 2, true + ); + $retval .= '%'; + } else { + $retval .= '--- '; + } + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= '' . __('Aborted') . ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_clients'], 4, 1, true + ); + $retval .= ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_clients'] * $hour_factor, 4, 2, true + ); + $retval .= ''; + $retval .= ''; + if ($ServerStatusData->status['Connections'] > 0) { + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Aborted_clients'] * 100 / $ServerStatusData->status['Connections'], + 0, 2, true + ); + $retval .= '%'; + } else { + $retval .= '--- '; + } + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= '' . __('Total') . ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Connections'], 4, 0 + ); + $retval .= ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber( + $ServerStatusData->status['Connections'] * $hour_factor, 4, 2 + ); + $retval .= ''; + $retval .= ''; + $retval .= PMA_Util::formatNumber(100, 0, 2); + $retval .= '%'; + $retval .= ''; + $retval .= ''; + $retval .= ''; $url_params = array(); $show_full_sql = ! empty($_REQUEST['full']); if ($show_full_sql) { $url_params['full'] = 1; - $full_text_link = 'server_status.php' . PMA_generate_common_url(array(), 'html', '?'); + $full_text_link = 'server_status.php' . PMA_generate_common_url( + array(), 'html', '?' + ); } else { - $full_text_link = 'server_status.php' . PMA_generate_common_url(array('full' => 1)); + $full_text_link = 'server_status.php' . PMA_generate_common_url( + array('full' => 1) + ); } // This array contains display name and real column name of each @@ -1365,8 +356,8 @@ function printServerTraffic() " . ($show_full_sql ? 's.query' : 'left(p.info, ' . (int)$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] . ')') . " AS Info FROM data_dictionary.PROCESSLIST p " . ($show_full_sql ? 'LEFT JOIN data_dictionary.SESSIONS s ON s.session_id = p.id' : ''); - if (!empty($_REQUEST['order_by_field']) - && !empty($_REQUEST['sort_order']) + if (! empty($_REQUEST['order_by_field']) + && ! empty($_REQUEST['sort_order']) ) { $sql_query .= ' ORDER BY p.' . $_REQUEST['order_by_field'] . ' ' . $_REQUEST['sort_order']; } @@ -1374,8 +365,8 @@ function printServerTraffic() $sql_query = $show_full_sql ? 'SHOW FULL PROCESSLIST' : 'SHOW PROCESSLIST'; - if (!empty($_REQUEST['order_by_field']) - && !empty($_REQUEST['sort_order']) + if (! empty($_REQUEST['order_by_field']) + && ! empty($_REQUEST['sort_order']) ) { $sql_query = 'SELECT * FROM `INFORMATION_SCHEMA`.`PROCESSLIST` ORDER BY `' . $_REQUEST['order_by_field'] . '` ' . $_REQUEST['sort_order']; @@ -1387,87 +378,86 @@ function printServerTraffic() /** * Displays the page */ - echo ''; - echo ''; - echo ''; - echo ''; - + $retval .= '
' . __('Processes') . '
'; + $retval .= ''; + $retval .= ''; + $retval .= ''; foreach ($sortable_columns as $column) { - $is_sorted = !empty($_REQUEST['order_by_field']) - && !empty($_REQUEST['sort_order']) + $is_sorted = ! empty($_REQUEST['order_by_field']) + && ! empty($_REQUEST['sort_order']) && ($_REQUEST['order_by_field'] == $column['order_by_field']); - $column['sort_order'] = ($is_sorted - && ($_REQUEST['sort_order'] == 'ASC')) - ? 'DESC' - : 'ASC'; + $column['sort_order'] = 'ASC'; + if ($is_sorted && $_REQUEST['sort_order'] === 'ASC') { + $column['sort_order'] = 'DESC'; + } if ($is_sorted) { if ($_REQUEST['sort_order'] == 'ASC') { - $asc_display_style = 'inline'; - $desc_display_style = 'none'; + $asc_display_style = 'inline'; + $desc_display_style = 'none'; } elseif ($_REQUEST['sort_order'] == 'DESC') { $desc_display_style = 'inline'; $asc_display_style = 'none'; } } - echo ''; + $retval .= ''; } - echo ''; - echo ''; - echo ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; $odd_row = true; while ($process = PMA_DBI_fetch_assoc($result)) { // Array keys need to modify due to the way it has used // to display column values - if (!empty($_REQUEST['order_by_field']) - && !empty($_REQUEST['sort_order']) + if (! empty($_REQUEST['order_by_field']) + && ! empty($_REQUEST['sort_order']) ) { foreach (array_keys($process) as $key) { $new_key = ucfirst(strtolower($key)); @@ -1478,619 +468,35 @@ function printServerTraffic() $url_params['kill'] = $process['Id']; $kill_process = 'server_status.php' . PMA_generate_common_url($url_params); - ?> - - - - - - - - - - '; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ' - - '; + $retval .= ''; $odd_row = ! $odd_row; } - ?> - -
' . __('Processes') . ''; - echo ''; + $retval .= '>'; - echo $column['column_name']; + $retval .= $column['column_name']; if ($is_sorted) { - echo ''
+            $retval .= '<img class='; - echo ''
+            $retval .= '<img class='; } - echo ''; + $retval .= ''; if (! PMA_DRIZZLE && (0 === --$sortable_columns_count)) { - echo ''; - echo ''; + $retval .= ''; - echo ''; + $retval .= '">'; + $retval .= ''; } - echo '
' . __('None') . '' : $process['db']); ?> - '; + $retval .= '' . __('Kill') . '' . $process['Id'] . '' . $process['User'] . '' . $process['Host'] . '' . ((! isset($process['db']) || ! strlen($process['db'])) ? '' . __('None') . '' : $process['db']) . '' . $process['Command'] . '' . $process['Time'] . '' . (empty($process['State']) ? '---' : $process['State']) . ''; + if (empty($process['Info'])) { - echo '---'; + $retval .= '---'; } else { - if (!$show_full_sql && strlen($process['Info']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) { - echo htmlspecialchars(substr($process['Info'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'])) . '[...]'; + if (! $show_full_sql && strlen($process['Info']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) { + $retval .= htmlspecialchars(substr($process['Info'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'])) . '[...]'; } else { - echo PMA_SQP_formatHtml(PMA_SQP_parse($process['Info'])); + $retval .= PMA_SQP_formatHtml(PMA_SQP_parse($process['Info'])); } } - ?> -
- '; + $retval .= ''; -/** - * Prints table with variables information - * - * @return void - */ -function printVariablesTable() -{ - global $server_status, $server_variables, $allocationMap, $links; - - /** - * Messages are built using the message name - */ - $strShowStatus = array( - 'Aborted_clients' => __('The number of connections that were aborted because the client died without closing the connection properly.'), - 'Aborted_connects' => __('The number of failed attempts to connect to the MySQL server.'), - 'Binlog_cache_disk_use' => __('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.'), - 'Binlog_cache_use' => __('The number of transactions that used the temporary binary log cache.'), - 'Connections' => __('The number of connection attempts (successful or not) to the MySQL server.'), - 'Created_tmp_disk_tables' => __('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.'), - 'Created_tmp_files' => __('How many temporary files mysqld has created.'), - 'Created_tmp_tables' => __('The number of in-memory temporary tables created automatically by the server while executing statements.'), - 'Delayed_errors' => __('The number of rows written with INSERT DELAYED for which some error occurred (probably duplicate key).'), - 'Delayed_insert_threads' => __('The number of INSERT DELAYED handler threads in use. Every different table on which one uses INSERT DELAYED gets its own thread.'), - 'Delayed_writes' => __('The number of INSERT DELAYED rows written.'), - 'Flush_commands' => __('The number of executed FLUSH statements.'), - 'Handler_commit' => __('The number of internal COMMIT statements.'), - 'Handler_delete' => __('The number of times a row was deleted from a table.'), - 'Handler_discover' => __('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.'), - 'Handler_read_first' => __('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.'), - 'Handler_read_key' => __('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.'), - 'Handler_read_next' => __('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.'), - 'Handler_read_prev' => __('The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC.'), - 'Handler_read_rnd' => __('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.'), - 'Handler_read_rnd_next' => __('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.'), - 'Handler_rollback' => __('The number of internal ROLLBACK statements.'), - 'Handler_update' => __('The number of requests to update a row in a table.'), - 'Handler_write' => __('The number of requests to insert a row in a table.'), - 'Innodb_buffer_pool_pages_data' => __('The number of pages containing data (dirty or clean).'), - 'Innodb_buffer_pool_pages_dirty' => __('The number of pages currently dirty.'), - 'Innodb_buffer_pool_pages_flushed' => __('The number of buffer pool pages that have been requested to be flushed.'), - 'Innodb_buffer_pool_pages_free' => __('The number of free pages.'), - 'Innodb_buffer_pool_pages_latched' => __('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.'), - 'Innodb_buffer_pool_pages_misc' => __('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.'), - 'Innodb_buffer_pool_pages_total' => __('Total size of buffer pool, in pages.'), - 'Innodb_buffer_pool_read_ahead_rnd' => __('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.'), - 'Innodb_buffer_pool_read_ahead_seq' => __('The number of sequential read-aheads InnoDB initiated. This happens when InnoDB does a sequential full table scan.'), - 'Innodb_buffer_pool_read_requests' => __('The number of logical read requests InnoDB has done.'), - 'Innodb_buffer_pool_reads' => __('The number of logical reads that InnoDB could not satisfy from buffer pool and had to do a single-page read.'), - 'Innodb_buffer_pool_wait_free' => __('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.'), - 'Innodb_buffer_pool_write_requests' => __('The number writes done to the InnoDB buffer pool.'), - 'Innodb_data_fsyncs' => __('The number of fsync() operations so far.'), - 'Innodb_data_pending_fsyncs' => __('The current number of pending fsync() operations.'), - 'Innodb_data_pending_reads' => __('The current number of pending reads.'), - 'Innodb_data_pending_writes' => __('The current number of pending writes.'), - 'Innodb_data_read' => __('The amount of data read so far, in bytes.'), - 'Innodb_data_reads' => __('The total number of data reads.'), - 'Innodb_data_writes' => __('The total number of data writes.'), - 'Innodb_data_written' => __('The amount of data written so far, in bytes.'), - 'Innodb_dblwr_pages_written' => __('The number of pages that have been written for doublewrite operations.'), - 'Innodb_dblwr_writes' => __('The number of doublewrite operations that have been performed.'), - 'Innodb_log_waits' => __('The number of waits we had because log buffer was too small and we had to wait for it to be flushed before continuing.'), - 'Innodb_log_write_requests' => __('The number of log write requests.'), - 'Innodb_log_writes' => __('The number of physical writes to the log file.'), - 'Innodb_os_log_fsyncs' => __('The number of fsync() writes done to the log file.'), - 'Innodb_os_log_pending_fsyncs' => __('The number of pending log file fsyncs.'), - 'Innodb_os_log_pending_writes' => __('Pending log file writes.'), - 'Innodb_os_log_written' => __('The number of bytes written to the log file.'), - 'Innodb_pages_created' => __('The number of pages created.'), - 'Innodb_page_size' => __('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.'), - 'Innodb_pages_read' => __('The number of pages read.'), - 'Innodb_pages_written' => __('The number of pages written.'), - 'Innodb_row_lock_current_waits' => __('The number of row locks currently being waited for.'), - 'Innodb_row_lock_time_avg' => __('The average time to acquire a row lock, in milliseconds.'), - 'Innodb_row_lock_time' => __('The total time spent in acquiring row locks, in milliseconds.'), - 'Innodb_row_lock_time_max' => __('The maximum time to acquire a row lock, in milliseconds.'), - 'Innodb_row_lock_waits' => __('The number of times a row lock had to be waited for.'), - 'Innodb_rows_deleted' => __('The number of rows deleted from InnoDB tables.'), - 'Innodb_rows_inserted' => __('The number of rows inserted in InnoDB tables.'), - 'Innodb_rows_read' => __('The number of rows read from InnoDB tables.'), - 'Innodb_rows_updated' => __('The number of rows updated in InnoDB tables.'), - 'Key_blocks_not_flushed' => __('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.'), - 'Key_blocks_unused' => __('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.'), - 'Key_blocks_used' => __('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.'), - 'Key_buffer_fraction_%' => __('Percentage of used key cache (calculated value)'), - 'Key_read_requests' => __('The number of requests to read a key block from the cache.'), - 'Key_reads' => __('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.'), - 'Key_read_ratio_%' => __('Key cache miss calculated as rate of physical reads compared to read requests (calculated value)'), - 'Key_write_requests' => __('The number of requests to write a key block to the cache.'), - 'Key_writes' => __('The number of physical writes of a key block to disk.'), - 'Key_write_ratio_%' => __('Percentage of physical writes compared to write requests (calculated value)'), - 'Last_query_cost' => __('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.'), - 'Max_used_connections' => __('The maximum number of connections that have been in use simultaneously since the server started.'), - 'Not_flushed_delayed_rows' => __('The number of rows waiting to be written in INSERT DELAYED queues.'), - 'Opened_tables' => __('The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'), - 'Open_files' => __('The number of files that are open.'), - 'Open_streams' => __('The number of streams that are open (used mainly for logging).'), - 'Open_tables' => __('The number of tables that are open.'), - 'Qcache_free_blocks' => __('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.'), - 'Qcache_free_memory' => __('The amount of free memory for query cache.'), - 'Qcache_hits' => __('The number of cache hits.'), - 'Qcache_inserts' => __('The number of queries added to the cache.'), - 'Qcache_lowmem_prunes' => __('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.'), - 'Qcache_not_cached' => __('The number of non-cached queries (not cachable, or not cached due to the query_cache_type setting).'), - 'Qcache_queries_in_cache' => __('The number of queries registered in the cache.'), - 'Qcache_total_blocks' => __('The total number of blocks in the query cache.'), - 'Rpl_status' => __('The status of failsafe replication (not yet implemented).'), - 'Select_full_join' => __('The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.'), - 'Select_full_range_join' => __('The number of joins that used a range search on a reference table.'), - 'Select_range_check' => __('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.)'), - 'Select_range' => __('The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)'), - 'Select_scan' => __('The number of joins that did a full scan of the first table.'), - 'Slave_open_temp_tables' => __('The number of temporary tables currently open by the slave SQL thread.'), - 'Slave_retried_transactions' => __('Total (since startup) number of times the replication slave SQL thread has retried transactions.'), - 'Slave_running' => __('This is ON if this server is a slave that is connected to a master.'), - 'Slow_launch_threads' => __('The number of threads that have taken more than slow_launch_time seconds to create.'), - 'Slow_queries' => __('The number of queries that have taken more than long_query_time seconds.'), - 'Sort_merge_passes' => __('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.'), - 'Sort_range' => __('The number of sorts that were done with ranges.'), - 'Sort_rows' => __('The number of sorted rows.'), - 'Sort_scan' => __('The number of sorts that were done by scanning the table.'), - 'Table_locks_immediate' => __('The number of times that a table lock was acquired immediately.'), - 'Table_locks_waited' => __('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.'), - 'Threads_cached' => __('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.'), - 'Threads_connected' => __('The number of currently open connections.'), - 'Threads_created' => __('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.)'), - 'Threads_cache_hitrate_%' => __('Thread cache hit rate (calculated value)'), - 'Threads_running' => __('The number of threads that are not sleeping.') - ); - - /** - * define some alerts - */ - // name => max value before alert - $alerts = array( - // lower is better - // variable => max value - 'Aborted_clients' => 0, - 'Aborted_connects' => 0, - - 'Binlog_cache_disk_use' => 0, - - 'Created_tmp_disk_tables' => 0, - - 'Handler_read_rnd' => 0, - 'Handler_read_rnd_next' => 0, - - 'Innodb_buffer_pool_pages_dirty' => 0, - 'Innodb_buffer_pool_reads' => 0, - 'Innodb_buffer_pool_wait_free' => 0, - 'Innodb_log_waits' => 0, - 'Innodb_row_lock_time_avg' => 10, // ms - 'Innodb_row_lock_time_max' => 50, // ms - 'Innodb_row_lock_waits' => 0, - - 'Slow_queries' => 0, - 'Delayed_errors' => 0, - 'Select_full_join' => 0, - 'Select_range_check' => 0, - 'Sort_merge_passes' => 0, - 'Opened_tables' => 0, - 'Table_locks_waited' => 0, - 'Qcache_lowmem_prunes' => 0, - - 'Qcache_free_blocks' => isset($server_status['Qcache_total_blocks']) - ? $server_status['Qcache_total_blocks'] / 5 : 0, - 'Slow_launch_threads' => 0, - - // depends on Key_read_requests - // normaly lower then 1:0.01 - 'Key_reads' => isset($server_status['Key_read_requests']) - ? (0.01 * $server_status['Key_read_requests']) : 0, - // depends on Key_write_requests - // normaly nearly 1:1 - 'Key_writes' => isset($server_status['Key_write_requests']) - ? (0.9 * $server_status['Key_write_requests']) : 0, - - 'Key_buffer_fraction' => 0.5, - - // alert if more than 95% of thread cache is in use - 'Threads_cached' => isset($server_variables['thread_cache_size']) - ? 0.95 * $server_variables['thread_cache_size'] : 0 - - // higher is better - // variable => min value - //'Handler read key' => '> ', - ); - -?> - - - - - - - - - - - - - $value) { - $odd_row = !$odd_row; - echo ''; - - echo ''; - - echo ''; - echo ''; - echo ''; - } - echo ''; - echo '
'; - echo htmlspecialchars(str_replace('_', ' ', $name)); - /* Fields containing % are calculated, they can not be described in MySQL documentation */ - if (strpos($name, '%') === false) { - echo PMA_Util::showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_' . $name); - } - echo ''; - if (isset($alerts[$name])) { - if ($value > $alerts[$name]) { - echo ''; - } else { - echo ''; - } - } - if ('%' === substr($name, -1, 1)) { - echo htmlspecialchars(PMA_Util::formatNumber($value, 0, 2)) . ' %'; - } elseif (strpos($name, 'Uptime') !== false) { - echo htmlspecialchars( - PMA_Util::timespanFormat($value) - ); - } elseif (is_numeric($value) && $value == (int) $value && $value > 1000) { - echo htmlspecialchars(PMA_Util::formatNumber($value, 3, 1)); - } elseif (is_numeric($value) && $value == (int) $value) { - echo htmlspecialchars(PMA_Util::formatNumber($value, 3, 0)); - } elseif (is_numeric($value)) { - echo htmlspecialchars(PMA_Util::formatNumber($value, 3, 1)); - } else { - echo htmlspecialchars($value); - } - if (isset($alerts[$name])) { - echo ''; - } - echo ''; - echo ''; - echo ''; - - if (isset($strShowStatus[$name ])) { - echo $strShowStatus[$name]; - } - - if (isset($links[$name])) { - foreach ($links[$name] as $link_name => $link_url) { - if ('doc' == $link_name) { - echo PMA_Util::showMySQLDocu($link_url, $link_url); - } else { - echo ' ' . $link_name . '' . - "\n"; - } - } - unset($link_url, $link_name); - } - echo '
'; -} - -/** - * Prints html with monitor - * - * @return void - */ -function printMonitor() -{ - global $server_status, $server_db_isLocal; - -?> - - -
- - - - - -
-
- '; - echo PMA_getRefreshList('gridChartRefresh', 5, Array(2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200)); - ?>
-
-
-
- -
- -
-
-      -
-
- - - - - - - - - - - - - - - - -
-
-
-
- - - list for refresh rates - * - * @param string $name Name of select - * @param int $defaultRate Currently chosen rate - * @param array $refreshRates List of refresh rates - * - * @return HTML code with select - */ -function PMA_getRefreshList($name, - $defaultRate = 5, - $refreshRates = Array(1, 2, 5, 10, 20, 40, 60, 120, 300, 600) -) { - $return = ''; - return $return; -} - -/** - * Builds a '; - foreach ($values as $number) { - $selected = ($number == $defaultValue)?' selected="selected"':''; - $html_output .= ''; - } - - $html_output .= ''; - return $html_output; -} - -/** - * cleanup of some deprecated values - * - * @param array &$server_status status array to process - * - * @return void - */ -function cleanDeprecated(&$server_status) -{ - $deprecated = array( - 'Com_prepare_sql' => 'Com_stmt_prepare', - 'Com_execute_sql' => 'Com_stmt_execute', - 'Com_dealloc_sql' => 'Com_stmt_close', - ); - - foreach ($deprecated as $old => $new) { - if (isset($server_status[$old]) && isset($server_status[$new])) { - unset($server_status[$old]); - } - } + return $retval; } ?> diff --git a/server_status_advisor.php b/server_status_advisor.php new file mode 100644 index 0000000000..1b79819e2b --- /dev/null +++ b/server_status_advisor.php @@ -0,0 +1,75 @@ +getHeader()->getScripts(); +$scripts->addFile('server_status_advisor.js'); + +$output = '
'; +$output .= $ServerStatusData->getMenuHtml(); +$output .= ''; +$output .= PMA_Util::getIcon('b_help.png', __('Instructions')); +$output .= ''; +$output .= '
'; +$output .= ''; +$output .= ''; +$output .= ''; +$output .= '
'; + +$response->addHTML($output); + +?> diff --git a/server_status_monitor.php b/server_status_monitor.php new file mode 100644 index 0000000000..4cdd525bfa --- /dev/null +++ b/server_status_monitor.php @@ -0,0 +1,758 @@ + $chartNodes) { + // For each data series + foreach ($chartNodes as $node_id => $nodeDataPoints) { + // For each data point in the series (usually just 1) + foreach ($nodeDataPoints as $point_id => $dataPoint) { + $pName = $dataPoint['name']; + + switch ($dataPoint['type']) { + /* We only collect the status and server variables here to + * read them all in one query, + * and only afterwards assign them. + * Also do some white list filtering on the names + */ + case 'servervar': + if (! preg_match('/[^a-zA-Z_]+/', $pName)) { + $serverVars[] = $pName; + } + break; + + case 'statusvar': + if (! preg_match('/[^a-zA-Z_]+/', $pName)) { + $statusVars[] = $pName; + } + break; + + case 'proc': + $result = PMA_DBI_query('SHOW PROCESSLIST'); + $ret[$chart_id][$node_id][$point_id]['value'] + = PMA_DBI_num_rows($result); + break; + + case 'cpu': + if (!$sysinfo) { + include_once 'libraries/sysinfo.lib.php'; + $sysinfo = PMA_getSysInfo(); + } + if (!$cpuload) { + $cpuload = $sysinfo->loadavg(); + } + + if (PMA_getSysInfoOs() == 'Linux') { + $ret[$chart_id][$node_id][$point_id]['idle'] + = $cpuload['idle']; + $ret[$chart_id][$node_id][$point_id]['busy'] + = $cpuload['busy']; + } else { + $ret[$chart_id][$node_id][$point_id]['value'] + = $cpuload['loadavg']; + } + + break; + + case 'memory': + if (!$sysinfo) { + include_once 'libraries/sysinfo.lib.php'; + $sysinfo = PMA_getSysInfo(); + } + if (!$memory) { + $memory = $sysinfo->memory(); + } + + $ret[$chart_id][$node_id][$point_id]['value'] + = $memory[$pName]; + break; + } /* switch */ + } /* foreach */ + } /* foreach */ + } /* foreach */ + + // Retrieve all required status variables + if (count($statusVars)) { + $statusVarValues = PMA_DBI_fetch_result( + "SHOW GLOBAL STATUS WHERE Variable_name='" + . implode("' OR Variable_name='", $statusVars) . "'", + 0, + 1 + ); + } else { + $statusVarValues = array(); + } + + // Retrieve all required server variables + if (count($serverVars)) { + $serverVarValues = PMA_DBI_fetch_result( + "SHOW GLOBAL VARIABLES WHERE Variable_name='" + . implode("' OR Variable_name='", $serverVars) . "'", + 0, + 1 + ); + } else { + $serverVarValues = array(); + } + + // ...and now assign them + foreach ($ret as $chart_id => $chartNodes) { + foreach ($chartNodes as $node_id => $nodeDataPoints) { + foreach ($nodeDataPoints as $point_id => $dataPoint) { + switch($dataPoint['type']) { + case 'statusvar': + $ret[$chart_id][$node_id][$point_id]['value'] + = $statusVarValues[$dataPoint['name']]; + break; + case 'servervar': + $ret[$chart_id][$node_id][$point_id]['value'] + = $serverVarValues[$dataPoint['name']]; + break; + } + } + } + } + + $ret['x'] = microtime(true) * 1000; + + PMA_Response::getInstance()->addJSON('message', $ret); + exit; + } + } + + if (isset($_REQUEST['log_data'])) { + if (PMA_MYSQL_INT_VERSION < 50106) { + // Table logging is only available since 5.1.6 + exit('""'); + } + + $start = intval($_REQUEST['time_start']); + $end = intval($_REQUEST['time_end']); + + if ($_REQUEST['type'] == 'slow') { + $q = 'SELECT start_time, user_host, '; + $q .= 'Sec_to_Time(Sum(Time_to_Sec(query_time))) as query_time, '; + $q .= 'Sec_to_Time(Sum(Time_to_Sec(lock_time))) as lock_time, '; + $q .= 'SUM(rows_sent) AS rows_sent, '; + $q .= 'SUM(rows_examined) AS rows_examined, db, sql_text, '; + $q .= 'COUNT(sql_text) AS \'#\' '; + $q .= 'FROM `mysql`.`slow_log` '; + $q .= 'WHERE start_time > FROM_UNIXTIME(' . $start . ') '; + $q .= 'AND start_time < FROM_UNIXTIME(' . $end . ') GROUP BY sql_text'; + + $result = PMA_DBI_try_query($q); + + $return = array('rows' => array(), 'sum' => array()); + $type = ''; + + while ($row = PMA_DBI_fetch_assoc($result)) { + $type = strtolower( + substr($row['sql_text'], 0, strpos($row['sql_text'], ' ')) + ); + + switch($type) { + case 'insert': + case 'update': + //Cut off big inserts and updates, but append byte count instead + if (strlen($row['sql_text']) > 220) { + $implode_sql_text = implode( + ' ', + PMA_Util::formatByteDown( + strlen($row['sql_text']), 2, 2 + ) + ); + $row['sql_text'] = substr($row['sql_text'], 0, 200) + . '... [' . $implode_sql_text . ']'; + } + break; + default: + break; + } + + if (! isset($return['sum'][$type])) { + $return['sum'][$type] = 0; + } + $return['sum'][$type] += $row['#']; + $return['rows'][] = $row; + } + + $return['sum']['TOTAL'] = array_sum($return['sum']); + $return['numRows'] = count($return['rows']); + + PMA_DBI_free_result($result); + + PMA_Response::getInstance()->addJSON('message', $return); + exit; + } + + if ($_REQUEST['type'] == 'general') { + $limitTypes = ''; + if (isset($_REQUEST['limitTypes']) && $_REQUEST['limitTypes']) { + $limitTypes + = 'AND argument REGEXP \'^(INSERT|SELECT|UPDATE|DELETE)\' '; + } + + $q = 'SELECT TIME(event_time) as event_time, user_host, thread_id, '; + $q .= 'server_id, argument, count(argument) as \'#\' '; + $q .= 'FROM `mysql`.`general_log` '; + $q .= 'WHERE command_type=\'Query\' '; + $q .= 'AND event_time > FROM_UNIXTIME(' . $start . ') '; + $q .= 'AND event_time < FROM_UNIXTIME(' . $end . ') '; + $q .= $limitTypes . 'GROUP by argument'; // HAVING count > 1'; + + $result = PMA_DBI_try_query($q); + + $return = array('rows' => array(), 'sum' => array()); + $type = ''; + $insertTables = array(); + $insertTablesFirst = -1; + $i = 0; + $removeVars = isset($_REQUEST['removeVariables']) + && $_REQUEST['removeVariables']; + + while ($row = PMA_DBI_fetch_assoc($result)) { + preg_match('/^(\w+)\s/', $row['argument'], $match); + $type = strtolower($match[1]); + + if (! isset($return['sum'][$type])) { + $return['sum'][$type] = 0; + } + $return['sum'][$type] += $row['#']; + + switch($type) { + case 'insert': + // Group inserts if selected + if ($removeVars + && preg_match( + '/^INSERT INTO (`|\'|"|)([^\s\\1]+)\\1/i', + $row['argument'], $matches + ) + ) { + $insertTables[$matches[2]]++; + if ($insertTables[$matches[2]] > 1) { + $return['rows'][$insertTablesFirst]['#'] + = $insertTables[$matches[2]]; + + // Add a ... to the end of this query to indicate that + // there's been other queries + $temp = $return['rows'][$insertTablesFirst]['argument']; + if ($temp[strlen($temp) - 1] != '.') { + $return['rows'][$insertTablesFirst]['argument'] + .= '
...'; + } + + // Group this value, thus do not add to the result list + continue 2; + } else { + $insertTablesFirst = $i; + $insertTables[$matches[2]] += $row['#'] - 1; + } + } + // No break here + + case 'update': + // Cut off big inserts and updates, + // but append byte count therefor + if (strlen($row['argument']) > 220) { + $row['argument'] = substr($row['argument'], 0, 200) + . '... [' + . implode( + ' ', + PMA_Util::formatByteDown( + strlen($row['argument']) + ), + 2, + 2 + ) + . ']'; + } + break; + + default: + break; + } + + $return['rows'][] = $row; + $i++; + } + + $return['sum']['TOTAL'] = array_sum($return['sum']); + $return['numRows'] = count($return['rows']); + + PMA_DBI_free_result($result); + + PMA_Response::getInstance()->addJSON('message', $return); + exit; + } + } + + if (isset($_REQUEST['logging_vars'])) { + if (isset($_REQUEST['varName']) && isset($_REQUEST['varValue'])) { + $value = PMA_Util::sqlAddSlashes($_REQUEST['varValue']); + if (! is_numeric($value)) { + $value="'" . $value . "'"; + } + + if (! preg_match("/[^a-zA-Z0-9_]+/", $_REQUEST['varName'])) { + PMA_DBI_query( + 'SET GLOBAL ' . $_REQUEST['varName'] . ' = ' . $value + ); + } + + } + + $loggingVars = PMA_DBI_fetch_result( + 'SHOW GLOBAL VARIABLES WHERE Variable_name IN' + . ' ("general_log","slow_query_log","long_query_time","log_output")', + 0, + 1 + ); + PMA_Response::getInstance()->addJSON('message', $loggingVars); + exit; + } + + if (isset($_REQUEST['query_analyzer'])) { + $return = array(); + + if (strlen($_REQUEST['database'])) { + PMA_DBI_select_db($_REQUEST['database']); + } + + if ($profiling = PMA_Util::profilingSupported()) { + PMA_DBI_query('SET PROFILING=1;'); + } + + // Do not cache query + $query = preg_replace( + '/^(\s*SELECT)/i', + '\\1 SQL_NO_CACHE', + $_REQUEST['query'] + ); + + $result = PMA_DBI_try_query($query); + $return['affectedRows'] = $GLOBALS['cached_affected_rows']; + + $result = PMA_DBI_try_query('EXPLAIN ' . $query); + while ($row = PMA_DBI_fetch_assoc($result)) { + $return['explain'][] = $row; + } + + // In case an error happened + $return['error'] = PMA_DBI_getError(); + + PMA_DBI_free_result($result); + + if ($profiling) { + $return['profiling'] = array(); + $result = PMA_DBI_try_query( + 'SELECT seq,state,duration FROM INFORMATION_SCHEMA.PROFILING' + . ' WHERE QUERY_ID=1 ORDER BY seq' + ); + while ($row = PMA_DBI_fetch_assoc($result)) { + $return['profiling'][]= $row; + } + PMA_DBI_free_result($result); + } + + PMA_Response::getInstance()->addJSON('message', $return); + exit; + } +} + +/** + * JS Includes + */ +$header = $response->getHeader(); +$scripts = $header->getScripts(); +$scripts->addFile('jquery/jquery.tablesorter.js'); +$scripts->addFile('jquery/jquery.json-2.2.js'); +$scripts->addFile('jquery/jquery.sortableTable.js'); +$scripts->addFile('jquery/timepicker.js'); +/* < IE 9 doesn't support canvas natively */ +if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) { + $scripts->addFile('jqplot/excanvas.js'); +} +$scripts->addFile('canvg/canvg.js'); +// for charting +$scripts->addFile('jqplot/jquery.jqplot.js'); +$scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.canvasTextRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.canvasAxisLabelRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.dateAxisRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.highlighter.js'); +$scripts->addFile('jqplot/plugins/jqplot.cursor.js'); +$scripts->addFile('jqplot/plugins/jqplot.byteFormatter.js'); +$scripts->addFile('date.js'); + +$scripts->addFile('server_status_monitor.js'); +$scripts->addFile('server_status_sorter.js'); + + +/** + * start output + */ +$ServerStatusData = new PMA_ServerStatusData(); + +/** + * Define some data needed on the client side + */ +$input = ''; +$form = '
'; +$form .= sprintf($input, 'server_time', microtime(true) * 1000); +$form .= sprintf($input, 'server_os', PHP_OS); +$form .= sprintf($input, 'is_superuser', PMA_isSuperuser()); +$form .= sprintf($input, 'server_db_isLocal', $ServerStatusData->db_isLocal); +$form .= '
'; +/** + * Define some links used on client side + */ +$links = '
'; +$links .= PMA_Util::showMySQLDocu('general-thread-states', 'general-thread-states'); +$links .= '
'; +$links .= '
'; +$links .= PMA_Util::showMySQLDocu('explain-output', 'explain-output'); +$links .= '
'; + +/** + * Output + */ +$response->addHTML('
'); +$response->addHTML($ServerStatusData->getMenuHtml()); +$response->addHTML(getPrintMonitorHtml($ServerStatusData)); +$response->addHTML($form); +$response->addHTML($links); +$response->addHTML('
'); +exit; + +/** + * Prints html with monitor + * + * @param object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string + */ +function getPrintMonitorHtml($ServerStatusData) +{ + $retval = ''; + + $retval .= '
'; + $retval .= ''; + $retval .= PMA_Util::getImage('b_chart.png') . __('Add chart'); + $retval .= ''; + $retval .= ''; + $retval .= PMA_Util::getImage('b_tblops.png') . __('Rearrange/edit charts'); + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= __('Refresh rate') . '
'; + $retval .= PMA_getRefreshList( + 'gridChartRefresh', + 5, + Array(2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200) + ); + $retval .= '
'; + $retval .= '
'; + $retval .= '
'; + $retval .= __('Chart columns'); + $retval .= '
'; + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= '' . __('Chart arrangement') . ' '; + $retval .= PMA_Util::showHint( + __( + '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.' + ) + ); + $retval .= '
'; + $retval .= ''; + $retval .= __('Import'); + $retval .= ''; + $retval .= '  '; + $retval .= ''; + $retval .= __('Export'); + $retval .= ''; + $retval .= '  '; + $retval .= ''; + $retval .= __('Reset to default'); + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + + $retval .= ''; + + $retval .= ''; + + $retval .= ''; + + if (! PMA_DRIZZLE) { + $retval .= ''; + $retval .= ''; + } + + $retval .= '
'; + $retval .= '
'; + $retval .= '
'; + $retval .= '
'; + + $retval .= ''; + + return $retval; +} + +/** + * Builds a '; + foreach ($refreshRates as $rate) { + $selected = ($rate == $defaultRate)?' selected="selected"':''; + $return .= ''; + } + $return .= ''; + return $return; +} + +?> diff --git a/server_status_queries.php b/server_status_queries.php new file mode 100644 index 0000000000..218878b2c8 --- /dev/null +++ b/server_status_queries.php @@ -0,0 +1,163 @@ +getHeader(); +$scripts = $header->getScripts(); +$scripts->addFile('server_status_queries.js'); +/* < IE 9 doesn't support canvas natively */ +if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) { + $scripts->addFile('jqplot/excanvas.js'); +} + +// for charting +$scripts->addFile('jqplot/jquery.jqplot.js'); +$scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.canvasTextRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.canvasAxisLabelRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.dateAxisRenderer.js'); +$scripts->addFile('jqplot/plugins/jqplot.highlighter.js'); +$scripts->addFile('jqplot/plugins/jqplot.cursor.js'); +$scripts->addFile('jquery/jquery.tablesorter.js'); +$scripts->addFile('server_status_sorter.js'); + +// Add the html content to the response +$response->addHTML('
'); +$response->addHTML($ServerStatusData->getMenuHtml()); +$response->addHTML(getQueryStatisticsHtml($ServerStatusData)); +$response->addHTML('
'); +exit; + +/** + * Returns the html content for the query statistics + * + * @param object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string + */ +function getQueryStatisticsHtml($ServerStatusData) +{ + $retval = ''; + + $hour_factor = 3600 / $ServerStatusData->status['Uptime']; + $used_queries = $ServerStatusData->used_queries; + $total_queries = array_sum($used_queries); + + $retval .= '

'; + /* l10n: Questions is the name of a MySQL Status variable */ + $retval .= sprintf( + __('Questions since startup: %s'), + PMA_Util::formatNumber($total_queries, 0) + ); + $retval .= ' '; + $retval .= PMA_Util::showMySQLDocu( + 'server-status-variables', + 'server-status-variables', + false, + 'statvar_Questions' + ); + $retval .= '
'; + $retval .= ''; + $retval .= 'ø ' . __('per hour') . ': '; + $retval .= PMA_Util::formatNumber($total_queries * $hour_factor, 0); + $retval .= '
'; + $retval .= 'ø ' . __('per minute') . ': '; + $retval .= PMA_Util::formatNumber($total_queries * 60 / $ServerStatusData->status['Uptime'], 0); + $retval .= '
'; + if ($total_queries / $ServerStatusData->status['Uptime'] >= 1) { + $retval .= 'ø ' . __('per second') . ': '; + $retval .= PMA_Util::formatNumber($total_queries / $ServerStatusData->status['Uptime'], 0); + } + $retval .= '
'; + $retval .= '

'; + + // reverse sort by value to show most used statements first + arsort($used_queries); + + $odd_row = true; + $count_displayed_rows = 0; + $perc_factor = 100 / $total_queries; //(- $ServerStatusData->status['Connections']); + + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + + $chart_json = array(); + $query_sum = array_sum($used_queries); + $other_sum = 0; + foreach ($used_queries as $name => $value) { + $odd_row = !$odd_row; + // For the percentage column, use Questions - Connections, because + // the number of connections is not an item of the Query types + // but is included in Questions. Then the total of the percentages is 100. + $name = str_replace(array('Com_', '_'), array('', ' '), $name); + // Group together values that make out less than 2% into "Other", but only + // if we have more than 6 fractions already + if ($value < $query_sum * 0.02 && count($chart_json)>6) { + $other_sum += $value; + } else { + $chart_json[$name] = $value; + } + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + } + $retval .= ''; + $retval .= '
' . __('Statements') . ''; + /* l10n: # = Amount of queries */ + $retval .= __('#'); + $retval .= 'ø ' . __('per hour') . '%
' . htmlspecialchars($name) . ''; + $retval .= htmlspecialchars(PMA_Util::formatNumber($value, 5, 0, true)); + $retval .= ''; + $retval .= htmlspecialchars( + PMA_Util::formatNumber($value * $hour_factor, 4, 1, true) + ); + $retval .= ''; + $retval .= htmlspecialchars( + PMA_Util::formatNumber($value * $perc_factor, 0, 2) + ); + $retval .= '
'; + + $retval .= '
'; + $retval .= ''; + + return $retval; +} + +?> diff --git a/server_status_variables.php b/server_status_variables.php new file mode 100644 index 0000000000..ba1caaa884 --- /dev/null +++ b/server_status_variables.php @@ -0,0 +1,763 @@ +getHeader(); +$scripts = $header->getScripts(); +$scripts->addFile('server_status_variables.js'); +$scripts->addFile('jquery/jquery.tablesorter.js'); +$scripts->addFile('server_status_sorter.js'); + +$response->addHTML('
'); +$response->addHTML($ServerStatusData->getMenuHtml()); +$response->addHTML(getFilterHtml($ServerStatusData)); +$response->addHTML(getLinkSuggestionsHtml($ServerStatusData)); +$response->addHTML(getVariablesTableHtml($ServerStatusData)); +$response->addHTML('
'); + +exit; + +/** + * Returns the html for the list filter + * + * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string + */ +function getFilterHtml($ServerStatusData) +{ + $filterAlert = ''; + if (! empty($_REQUEST['filterAlert'])) { + $filterAlert = ' checked="checked"'; + } + $filterText = ''; + if (! empty($_REQUEST['filterText'])) { + $filterText = htmlspecialchars($_REQUEST['filterText']); + } + $dontFormat = ''; + if (! empty($_REQUEST['dontFormat'])) { + $dontFormat = ' checked="checked"'; + } + + $retval = ''; + $retval .= '
'; + $retval .= '' . __('Filters') . ''; + $retval .= '
'; + $retval .= ''; + $retval .= '
'; + $retval .= ''; + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= ''; + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= ''; + $retval .= ''; + $retval .= '
'; + $retval .= '
'; + $retval .= '
'; + + return $retval; +} + +/** + * Prints the suggestion links + * + * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string + */ +function getLinkSuggestionsHtml($ServerStatusData) +{ + $retval = ''; + + return $retval; +} + +/** + * Returns a table with variables information + * + * @param Object $ServerStatusData An instance of the PMA_ServerStatusData class + * + * @return string + */ +function getVariablesTableHtml($ServerStatusData) +{ + $retval = ''; + $strShowStatus = getStatusVariablesDescriptions(); + /** + * define some alerts + */ + // name => max value before alert + $alerts = array( + // lower is better + // variable => max value + 'Aborted_clients' => 0, + 'Aborted_connects' => 0, + + 'Binlog_cache_disk_use' => 0, + + 'Created_tmp_disk_tables' => 0, + + 'Handler_read_rnd' => 0, + 'Handler_read_rnd_next' => 0, + + 'Innodb_buffer_pool_pages_dirty' => 0, + 'Innodb_buffer_pool_reads' => 0, + 'Innodb_buffer_pool_wait_free' => 0, + 'Innodb_log_waits' => 0, + 'Innodb_row_lock_time_avg' => 10, // ms + 'Innodb_row_lock_time_max' => 50, // ms + 'Innodb_row_lock_waits' => 0, + + 'Slow_queries' => 0, + 'Delayed_errors' => 0, + 'Select_full_join' => 0, + 'Select_range_check' => 0, + 'Sort_merge_passes' => 0, + 'Opened_tables' => 0, + 'Table_locks_waited' => 0, + 'Qcache_lowmem_prunes' => 0, + + 'Qcache_free_blocks' => isset($ServerStatusData->server_status['Qcache_total_blocks']) + ? $ServerStatusData->server_status['Qcache_total_blocks'] / 5 : 0, + 'Slow_launch_threads' => 0, + + // depends on Key_read_requests + // normaly lower then 1:0.01 + 'Key_reads' => isset($ServerStatusData->status['Key_read_requests']) + ? (0.01 * $ServerStatusData->status['Key_read_requests']) : 0, + // depends on Key_write_requests + // normaly nearly 1:1 + 'Key_writes' => isset($ServerStatusData->status['Key_write_requests']) + ? (0.9 * $ServerStatusData->status['Key_write_requests']) : 0, + + 'Key_buffer_fraction' => 0.5, + + // alert if more than 95% of thread cache is in use + 'Threads_cached' => isset($ServerStatusData->variables['thread_cache_size']) + ? 0.95 * $ServerStatusData->variables['thread_cache_size'] : 0 + + // higher is better + // variable => min value + //'Handler read key' => '> ', + ); + + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + $retval .= ''; + + $odd_row = false; + foreach ($ServerStatusData->status as $name => $value) { + $odd_row = !$odd_row; + $retval .= ''; + + $retval .= ''; + + $retval .= ''; + $retval .= ''; + $retval .= ''; + } + $retval .= ''; + $retval .= '
' . __('Variable') . '' . __('Value') . '' . __('Description') . '
'; + $retval .= htmlspecialchars(str_replace('_', ' ', $name)); + /* Fields containing % are calculated, they can not be described in MySQL documentation */ + if (strpos($name, '%') === false) { + $retval .= PMA_Util::showMySQLDocu( + 'server-status-variables', + 'server-status-variables', + false, + 'statvar_' . $name + ); + } + $retval .= ''; + if (isset($alerts[$name])) { + if ($value > $alerts[$name]) { + $retval .= ''; + } else { + $retval .= ''; + } + } + if ('%' === substr($name, -1, 1)) { + $retval .= htmlspecialchars(PMA_Util::formatNumber($value, 0, 2)) . ' %'; + } elseif (strpos($name, 'Uptime') !== false) { + $retval .= htmlspecialchars( + PMA_Util::timespanFormat($value) + ); + } elseif (is_numeric($value) && $value == (int) $value && $value > 1000) { + $retval .= htmlspecialchars(PMA_Util::formatNumber($value, 3, 1)); + } elseif (is_numeric($value) && $value == (int) $value) { + $retval .= htmlspecialchars(PMA_Util::formatNumber($value, 3, 0)); + } elseif (is_numeric($value)) { + $retval .= htmlspecialchars(PMA_Util::formatNumber($value, 3, 1)); + } else { + $retval .= htmlspecialchars($value); + } + if (isset($alerts[$name])) { + $retval .= ''; + } + $retval .= ''; + $retval .= ''; + $retval .= ''; + + if (isset($strShowStatus[$name])) { + $retval .= $strShowStatus[$name]; + } + + if (isset($ServerStatusData->links[$name])) { + foreach ($ServerStatusData->links[$name] as $link_name => $link_url) { + if ('doc' == $link_name) { + $retval .= PMA_Util::showMySQLDocu($link_url, $link_url); + } else { + $retval .= ' ' . $link_name . ''; + } + } + unset($link_url, $link_name); + } + $retval .= '
'; + + return $retval; +} + +/** + * Returns a list of variable descriptions + * + * @return array + */ +function getStatusVariablesDescriptions() +{ + /** + * Messages are built using the message name + */ + return array( + 'Aborted_clients' => __( + 'The number of connections that were aborted because the client died' + . ' without closing the connection properly.' + ), + 'Aborted_connects' => __( + 'The number of failed attempts to connect to the MySQL server.' + ), + 'Binlog_cache_disk_use' => __( + '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.' + ), + 'Binlog_cache_use' => __( + 'The number of transactions that used the temporary binary log cache.' + ), + 'Connections' => __( + 'The number of connection attempts (successful or not)' + . ' to the MySQL server.' + ), + 'Created_tmp_disk_tables' => __( + '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.' + ), + 'Created_tmp_files' => __( + 'How many temporary files mysqld has created.' + ), + 'Created_tmp_tables' => __( + 'The number of in-memory temporary tables created automatically' + . ' by the server while executing statements.' + ), + 'Delayed_errors' => __( + 'The number of rows written with INSERT DELAYED for which some' + . ' error occurred (probably duplicate key).' + ), + 'Delayed_insert_threads' => __( + 'The number of INSERT DELAYED handler threads in use. Every' + . ' different table on which one uses INSERT DELAYED gets' + . ' its own thread.' + ), + 'Delayed_writes' => __( + 'The number of INSERT DELAYED rows written.' + ), + 'Flush_commands' => __( + 'The number of executed FLUSH statements.' + ), + 'Handler_commit' => __( + 'The number of internal COMMIT statements.' + ), + 'Handler_delete' => __( + 'The number of times a row was deleted from a table.' + ), + 'Handler_discover' => __( + '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.' + ), + 'Handler_read_first' => __( + '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.' + ), + 'Handler_read_key' => __( + '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.' + ), + 'Handler_read_next' => __( + '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.' + ), + 'Handler_read_prev' => __( + 'The number of requests to read the previous row in key order.' + . ' This read method is mainly used to optimize ORDER BY ... DESC.' + ), + 'Handler_read_rnd' => __( + '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.' + ), + 'Handler_read_rnd_next' => __( + '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.' + ), + 'Handler_rollback' => __( + 'The number of internal ROLLBACK statements.' + ), + 'Handler_update' => __( + 'The number of requests to update a row in a table.' + ), + 'Handler_write' => __( + 'The number of requests to insert a row in a table.' + ), + 'Innodb_buffer_pool_pages_data' => __( + 'The number of pages containing data (dirty or clean).' + ), + 'Innodb_buffer_pool_pages_dirty' => __( + 'The number of pages currently dirty.' + ), + 'Innodb_buffer_pool_pages_flushed' => __( + 'The number of buffer pool pages that have been requested' + . ' to be flushed.' + ), + 'Innodb_buffer_pool_pages_free' => __( + 'The number of free pages.' + ), + 'Innodb_buffer_pool_pages_latched' => __( + '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.' + ), + 'Innodb_buffer_pool_pages_misc' => __( + '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.' + ), + 'Innodb_buffer_pool_pages_total' => __( + 'Total size of buffer pool, in pages.' + ), + 'Innodb_buffer_pool_read_ahead_rnd' => __( + '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.' + ), + 'Innodb_buffer_pool_read_ahead_seq' => __( + 'The number of sequential read-aheads InnoDB initiated. This' + . ' happens when InnoDB does a sequential full table scan.' + ), + 'Innodb_buffer_pool_read_requests' => __( + 'The number of logical read requests InnoDB has done.' + ), + 'Innodb_buffer_pool_reads' => __( + 'The number of logical reads that InnoDB could not satisfy' + . ' from buffer pool and had to do a single-page read.' + ), + 'Innodb_buffer_pool_wait_free' => __( + '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.' + ), + 'Innodb_buffer_pool_write_requests' => __( + 'The number writes done to the InnoDB buffer pool.' + ), + 'Innodb_data_fsyncs' => __( + 'The number of fsync() operations so far.' + ), + 'Innodb_data_pending_fsyncs' => __( + 'The current number of pending fsync() operations.' + ), + 'Innodb_data_pending_reads' => __( + 'The current number of pending reads.' + ), + 'Innodb_data_pending_writes' => __( + 'The current number of pending writes.' + ), + 'Innodb_data_read' => __( + 'The amount of data read so far, in bytes.' + ), + 'Innodb_data_reads' => __( + 'The total number of data reads.' + ), + 'Innodb_data_writes' => __( + 'The total number of data writes.' + ), + 'Innodb_data_written' => __( + 'The amount of data written so far, in bytes.' + ), + 'Innodb_dblwr_pages_written' => __( + 'The number of pages that have been written for' + . ' doublewrite operations.' + ), + 'Innodb_dblwr_writes' => __( + 'The number of doublewrite operations that have been performed.' + ), + 'Innodb_log_waits' => __( + 'The number of waits we had because log buffer was too small and' + . ' we had to wait for it to be flushed before continuing.' + ), + 'Innodb_log_write_requests' => __( + 'The number of log write requests.' + ), + 'Innodb_log_writes' => __( + 'The number of physical writes to the log file.' + ), + 'Innodb_os_log_fsyncs' => __( + 'The number of fsync() writes done to the log file.' + ), + 'Innodb_os_log_pending_fsyncs' => __( + 'The number of pending log file fsyncs.' + ), + 'Innodb_os_log_pending_writes' => __( + 'Pending log file writes.' + ), + 'Innodb_os_log_written' => __( + 'The number of bytes written to the log file.' + ), + 'Innodb_pages_created' => __( + 'The number of pages created.' + ), + 'Innodb_page_size' => __( + '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.' + ), + 'Innodb_pages_read' => __( + 'The number of pages read.' + ), + 'Innodb_pages_written' => __( + 'The number of pages written.' + ), + 'Innodb_row_lock_current_waits' => __( + 'The number of row locks currently being waited for.' + ), + 'Innodb_row_lock_time_avg' => __( + 'The average time to acquire a row lock, in milliseconds.' + ), + 'Innodb_row_lock_time' => __( + 'The total time spent in acquiring row locks, in milliseconds.' + ), + 'Innodb_row_lock_time_max' => __( + 'The maximum time to acquire a row lock, in milliseconds.' + ), + 'Innodb_row_lock_waits' => __( + 'The number of times a row lock had to be waited for.' + ), + 'Innodb_rows_deleted' => __( + 'The number of rows deleted from InnoDB tables.' + ), + 'Innodb_rows_inserted' => __( + 'The number of rows inserted in InnoDB tables.' + ), + 'Innodb_rows_read' => __( + 'The number of rows read from InnoDB tables.' + ), + 'Innodb_rows_updated' => __( + 'The number of rows updated in InnoDB tables.' + ), + 'Key_blocks_not_flushed' => __( + '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.' + ), + 'Key_blocks_unused' => __( + '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.' + ), + 'Key_blocks_used' => __( + '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.' + ), + 'Key_buffer_fraction_%' => __( + 'Percentage of used key cache (calculated value)' + ), + 'Key_read_requests' => __( + 'The number of requests to read a key block from the cache.' + ), + 'Key_reads' => __( + '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.' + ), + 'Key_read_ratio_%' => __( + 'Key cache miss calculated as rate of physical reads compared' + . ' to read requests (calculated value)' + ), + 'Key_write_requests' => __( + 'The number of requests to write a key block to the cache.' + ), + 'Key_writes' => __( + 'The number of physical writes of a key block to disk.' + ), + 'Key_write_ratio_%' => __( + 'Percentage of physical writes compared' + . ' to write requests (calculated value)' + ), + 'Last_query_cost' => __( + '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.' + ), + 'Max_used_connections' => __( + 'The maximum number of connections that have been in use' + . ' simultaneously since the server started.' + ), + 'Not_flushed_delayed_rows' => __( + 'The number of rows waiting to be written in INSERT DELAYED queues.' + ), + 'Opened_tables' => __( + 'The number of tables that have been opened. If opened tables is' + . ' big, your table cache value is probably too small.' + ), + 'Open_files' => __( + 'The number of files that are open.' + ), + 'Open_streams' => __( + 'The number of streams that are open (used mainly for logging).' + ), + 'Open_tables' => __( + 'The number of tables that are open.' + ), + 'Qcache_free_blocks' => __( + '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.' + ), + 'Qcache_free_memory' => __( + 'The amount of free memory for query cache.' + ), + 'Qcache_hits' => __( + 'The number of cache hits.' + ), + 'Qcache_inserts' => __( + 'The number of queries added to the cache.' + ), + 'Qcache_lowmem_prunes' => __( + '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.' + ), + 'Qcache_not_cached' => __( + 'The number of non-cached queries (not cachable, or not cached' + . ' due to the query_cache_type setting).' + ), + 'Qcache_queries_in_cache' => __( + 'The number of queries registered in the cache.' + ), + 'Qcache_total_blocks' => __( + 'The total number of blocks in the query cache.' + ), + 'Rpl_status' => __( + 'The status of failsafe replication (not yet implemented).' + ), + 'Select_full_join' => __( + 'The number of joins that do not use indexes. If this value is' + . ' not 0, you should carefully check the indexes of your tables.' + ), + 'Select_full_range_join' => __( + 'The number of joins that used a range search on a reference table.' + ), + 'Select_range_check' => __( + '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.)' + ), + 'Select_range' => __( + 'The number of joins that used ranges on the first table. (It\'s' + . ' normally not critical even if this is big.)' + ), + 'Select_scan' => __( + 'The number of joins that did a full scan of the first table.' + ), + 'Slave_open_temp_tables' => __( + 'The number of temporary tables currently' + . ' open by the slave SQL thread.' + ), + 'Slave_retried_transactions' => __( + 'Total (since startup) number of times the replication slave SQL' + . ' thread has retried transactions.' + ), + 'Slave_running' => __( + 'This is ON if this server is a slave that is connected to a master.' + ), + 'Slow_launch_threads' => __( + 'The number of threads that have taken more than slow_launch_time' + . ' seconds to create.' + ), + 'Slow_queries' => __( + 'The number of queries that have taken more than long_query_time' + . ' seconds.' + ), + 'Sort_merge_passes' => __( + '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.' + ), + 'Sort_range' => __( + 'The number of sorts that were done with ranges.' + ), + 'Sort_rows' => __( + 'The number of sorted rows.' + ), + 'Sort_scan' => __( + 'The number of sorts that were done by scanning the table.' + ), + 'Table_locks_immediate' => __( + 'The number of times that a table lock was acquired immediately.' + ), + 'Table_locks_waited' => __( + '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.' + ), + 'Threads_cached' => __( + '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.' + ), + 'Threads_connected' => __( + 'The number of currently open connections.' + ), + 'Threads_created' => __( + '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.)' + ), + 'Threads_cache_hitrate_%' => __( + 'Thread cache hit rate (calculated value)' + ), + 'Threads_running' => __( + 'The number of threads that are not sleeping.' + ) + ); +} + +?> diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php index 5dcd19e261..4221682db3 100644 --- a/themes/original/css/common.css.php +++ b/themes/original/css/common.css.php @@ -1017,10 +1017,6 @@ img.sortableIcon { white-space: nowrap; } -.jsfeature { - display: none; /* Made visible with js */ -} - /* Also used for the variables page */ fieldset#tableFilter { margin-bottom:1em; diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php index 126c21e8f3..32a9a42b4e 100644 --- a/themes/pmahomme/css/common.css.php +++ b/themes/pmahomme/css/common.css.php @@ -1262,10 +1262,6 @@ img.sortableIcon { white-space: nowrap; } -.jsfeature { - display: none; /* Made visible with js */ -} - /* Also used for the variables page */ fieldset#tableFilter { margin-bottom: 1em; diff --git a/themes/pmahomme/css/pmd.css.php b/themes/pmahomme/css/pmd.css.php index 1997c86813..130049fd73 100644 --- a/themes/pmahomme/css/pmd.css.php +++ b/themes/pmahomme/css/pmd.css.php @@ -284,7 +284,6 @@ canvas.pmd * { border-right: #999 solid 1px; border-left: #999 solid 1px; height: 28px; - position: fixed; z-index: 101; width: 100% } @@ -368,16 +367,16 @@ a.M_butt:hover { .panel { position: fixed; - top: 50px; + top: 60px; right: 0; display: none; background: #FFF; - border: 1px solid #F5F5F5; + border: 1px solid gray; width: 350 px; height: auto; padding: 30px 170px 30px 30px; color: #FFF; - z-index: 99; + z-index: 102; } a.trigger { @@ -389,17 +388,13 @@ a.trigger { background: #333 url(getImgPath('pmd/plus.png'); ?>) 85% 55% no-repeat; border: 1px solid #444; display: block; + z-index: 102; } a.trigger:hover { - position: fixed; - text-decoration: none; - top: 60px; right: 0; color: #080808; - padding: 10px 40px 10px 15px; background: #fff696 url(getImgPath('pmd/plus.png'); ?>) 85% 55% no-repeat; border: 1px solid #999; - display: block; } a.active.trigger { @@ -409,7 +404,6 @@ a.active.trigger { a.active.trigger:hover { background: #fff696 url(getImgPath('pmd/minus.png'); ?>) 85% 55% no-repeat; - z-index: 999; } h2.tiger {